picture{display:contents}picture>source{display:none}

/* --- Modern UX additions (2026-08-24) --- */
@view-transition { navigation: auto; }
h1, h2, h3 { text-wrap: balance; }
@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*), ::view-transition-old(*), ::view-transition-new(*) { animation: none !important; }
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --ocean: #0a4d68;
  --ocean-light: #1a7a9b;
  --sand: #f5f0e8;
  --sand-dark: #e8dfd2;
  --charcoal: #1a1a1a;
  --warm-gray: #6b6560;
  --white: #ffffff;
  --teal: #2d8a94;
  --coral: #d4856a;
  --gold: #c4a265;
  --ink-blue: #1f4788;
  --paper: #f4e9d0;
  /* Dark-section ground: a deep shade of --ocean, so full-bleed dark bands
     stay in the site's blue family instead of drifting to black. */
  --ocean-deep: #092e3e;
  --radius-media: 14px;
  /* Motion vocabulary (emilkowal.ski standards): strong ease-out for entrances
     and hovers, strong ease-in-out for on-screen movement. --transition is the
     legacy alias used throughout — keep it pointing at the same curve. */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --transition: cubic-bezier(0.23, 1, 0.32, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Montserrat', 'Inter', -apple-system, sans-serif; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
.overline {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
  display: block;
}
p { max-width: 680px; }
.lead { font-size: 1.125rem; color: var(--warm-gray); line-height: 1.8; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 4rem); }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 4rem); }
section { padding: clamp(2.75rem, 4.5vw, 4.25rem) 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase; text-decoration: none;
  border: none; cursor: pointer; border-radius: 980px;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out), transform 0.16s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--ocean); color: var(--white); }
.btn-primary:hover { background: var(--ocean-light); }
.btn:disabled, .btn:disabled:hover {
  background: rgba(0,0,0,0.18);
  color: rgba(255,255,255,0.7);
  cursor: not-allowed;
}
.btn.btn-success:disabled, .btn.btn-success:disabled:hover {
  background: var(--teal);
  color: var(--white);
  cursor: default;
}

/* Inline validation error block above the Send button */
.form-error {
  background: rgba(176, 0, 32, 0.06);
  border: 1px solid rgba(176, 0, 32, 0.28);
  border-left: 3px solid #b00020;
  color: #b00020;
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  margin: 0 0 1rem;
  line-height: 1.55;
}
.form-error strong { color: #8a0019; font-weight: 700; }
.form-error ul { margin: 0.35rem 0 0; padding-left: 1.25rem; max-width: none; }
.form-error li { margin: 0.1rem 0; }

/* Red highlight on the specific fields that are missing */
.form-group.has-error > input,
.form-group.has-error > select,
.form-group.has-error textarea {
  border-color: #b00020;
  background: rgba(176, 0, 32, 0.02);
}
.form-group.has-error .date-display {
  border-color: #b00020;
  background: rgba(176, 0, 32, 0.02);
}
.package-options.has-error {
  outline: 2px solid rgba(176, 0, 32, 0.5);
  outline-offset: 4px;
  border-radius: 12px;
}
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--ocean); border: 1px solid var(--ocean); }
.btn-outline-dark:hover { background: var(--ocean); color: var(--white); }
/* Premium / buyout action: gold ground, deep-ocean ink (same pairing as the nav buyout hover) */
.btn-gold { background: var(--gold); color: var(--ocean-deep); font-weight: 600; }
.btn-gold:hover { background: #dcc08b; color: var(--ocean-deep); }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--ocean); }
.btn-arrow::after { content: '\2192'; transition: transform 0.3s; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* Navigation */
nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  /* Apple-style translucent chrome: content scrolls under the bar. */
  background: rgba(255,255,255,0.72);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  transition: padding 0.4s var(--transition), background 0.4s var(--transition), box-shadow 0.4s var(--transition);
}
nav .nav-logo { color: var(--charcoal); }
nav .nav-links a { color: var(--charcoal); }
nav .nav-links a.nav-cta { background: var(--ocean); color: var(--white); border-color: var(--ocean); }
nav.scrolled { padding: 0.7rem 0; }
@media (prefers-reduced-transparency: reduce) {
  nav { background: var(--white); -webkit-backdrop-filter: none; backdrop-filter: none; }
}
.nav-inner {
  max-width: 1600px; margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  display: flex; align-items: center; justify-content: space-between; gap: 2.5rem;
}
.nav-logo {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Inter', sans-serif; font-size: 1.02rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--charcoal); text-decoration: none; transition: color 0.4s;
}
.nav-logo-mark { width: 38px; height: 38px; flex-shrink: 0; display: block; }
.nav-logo-text { white-space: nowrap; }
@media (max-width: 480px) {
  .nav-logo-mark { width: 30px; height: 30px; }
  .nav-logo { font-size: 0.82rem; gap: 0.4rem; }
  .nav-mobile-cta { font-size: 0.65rem; padding: 0.45rem 0.75rem; }
}
@media (max-width: 360px) {
  .nav-logo-text { display: none; } /* logo mark only on very small screens */
}
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links > a, .nav-dropdown-toggle { white-space: nowrap; }
/* 1120–1600px: 6 top-level links + 2 dropdowns + 2 buttons need ~1420px at full spacing — tighten. */
@media (min-width: 1121px) and (max-width: 1600px) { .nav-links { gap: 1rem; } .nav-inner { padding-left: 1.25rem; padding-right: 1.25rem; } .nav-logo-text { display: none; } .nav-cta, .nav-buyout { padding-left: 1rem; padding-right: 1rem; } }
/* ≥1601px: full nav with the logo text; buttons stay a touch tighter so it fits inside 1600px. */
@media (min-width: 1601px) { .nav-cta, .nav-links a.nav-buyout { padding-left: 1.2rem; padding-right: 1.2rem; } }
.nav-links a {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--charcoal); text-decoration: none;
  transition: opacity 0.3s, color 0.3s; position: relative;
}
.nav-links a:hover { opacity: 0.7; }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 100%; height: 1px; background: currentColor;
}
.nav-cta {
  font-size: 0.75rem; padding: 0.6rem 1.4rem;
  background: var(--ocean); color: var(--white);
  border: 1px solid var(--ocean); border-radius: 980px;
  text-decoration: none; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), color 0.3s var(--ease-out), transform 0.16s var(--ease-out);
}
.nav-cta:hover { background: var(--ocean-light); border-color: var(--ocean-light); color: var(--white); }
.nav-cta:active { transform: scale(0.97); }
.nav-links a.nav-buyout {
  font-size: 0.75rem; padding: 0.6rem 1.4rem;
  color: #8a6a2f; border: 1px solid #c4a265; border-radius: 980px;
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(196,162,101,0.08);
}
.nav-links a.nav-buyout:hover { background: var(--gold); color: var(--ocean-deep); opacity: 1; }
/* Plan Your Trip dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--charcoal); background: none; border: none; cursor: pointer; font-family: inherit;
  padding: 0; display: inline-flex; align-items: center; gap: 0.35rem; transition: opacity 0.3s;
}
.nav-dropdown:hover .nav-dropdown-toggle, .nav-dropdown:focus-within .nav-dropdown-toggle { opacity: 0.7; }
.nav-dropdown-toggle .caret { font-size: 0.6rem; transition: transform 0.25s var(--ease-in-out); }
.nav-dropdown:hover .nav-dropdown-toggle .caret, .nav-dropdown:focus-within .nav-dropdown-toggle .caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; margin-top: 12px; transform: translateX(-50%);
  background: var(--white); border: 1px solid rgba(0,0,0,0.08); border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12); padding: 0.4rem 0; min-width: 210px;
  opacity: 0; visibility: hidden; scale: 0.97; translate: 0 -4px; transform-origin: top center;
  transition: opacity 0.22s var(--ease-out), visibility 0.22s, scale 0.22s var(--ease-out), translate 0.22s var(--ease-out); z-index: 1001;
}
.nav-dropdown-menu::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; scale: 1; translate: 0 0; }
.nav-dropdown-menu a {
  display: block; padding: 0.65rem 1.4rem; font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--charcoal); white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--sand); opacity: 1; }
.mobile-menu-label {
  display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--warm-gray); padding: 1.4rem 0 0.4rem; border: none;
}
.mobile-menu-group { border-bottom: 1px solid rgba(0,0,0,0.06); }
.mobile-menu-group summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-size: 1.35rem; font-family: 'Montserrat', sans-serif; font-weight: 600; letter-spacing: -0.02em; color: var(--charcoal); padding: 1rem 0; }
.mobile-menu-group summary::-webkit-details-marker { display: none; }
.mobile-menu-group summary::after { content: '\25BE'; font-size: 1rem; color: var(--warm-gray); transition: rotate 0.2s; }
.mobile-menu-group[open] summary::after { rotate: 180deg; }
.mobile-menu-group a { font-size: 1.05rem; font-weight: 500; padding: 0.6rem 0 0.6rem 1rem; border-bottom: none; }
.mobile-menu-group a:last-child { padding-bottom: 1rem; }
.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px 4px; }
.nav-mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--charcoal); margin: 5px 0; transition: transform 0.3s var(--ease-in-out), opacity 0.3s; }
.nav-mobile-cta {
  display: none;
  font-size: 0.7rem; padding: 0.5rem 0.95rem;
  background: var(--ocean); color: var(--white);
  border: 1px solid var(--ocean); border-radius: 980px;
  text-decoration: none; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; transition: all 0.3s;
  white-space: nowrap;
}
.nav-mobile-cta:hover { background: var(--ocean-light); border-color: var(--ocean-light); }

/* Hero — Surf + Golf split (desktop default, aspect 2400:1350 = 16:9) */
/* Panels are absolutely positioned (not flex) — guarantees they fully cover the hero
   with no gaps on iOS Safari where flex:1 + aspect-ratio sometimes leaves slack. */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 2400 / 1350;
  overflow: hidden;
  background: #0a4d68;
}
.hero-panel { position: absolute; overflow: hidden; }
/* Each panel carries a ~24px blurred JPEG as a background so the headline sits on a
   soft version of the real scene from first paint instead of flat blue while the AVIF loads. */
.hero-wave { top: 0; bottom: 0; left: 0; right: 50%; background: #0a4d68 url(data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABQODxIPDRQSEBIXFRQYHjIhHhwcHj0sLiQySUBMS0dARkVQWnNiUFVtVkVGZIhlbXd7gYKBTmCNl4x9lnN+gXz/2wBDARUXFx4aHjshITt8U0ZTfHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHz/wAARCAAOABgDASIAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAAEDBP/EAB8QAAICAgEFAAAAAAAAAAAAAAECAAMEERIhIkFRgf/EABYBAQEBAAAAAAAAAAAAAAAAAAACA//EABgRAAMBAQAAAAAAAAAAAAAAAAABAhNB/9oADAMBAAIRAxEAPwDK2XkIe7lGc9/bCXvuVrCGToJFxUdHidGIprpnUJ8GM5/LMIS1dKP8MJWlDGT/2Q==) left center / cover no-repeat; }
.hero-golf { top: 0; bottom: 0; left: 50%; right: 0; background: #0a4d68 url(data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABQODxIPDRQSEBIXFRQYHjIhHhwcHj0sLiQySUBMS0dARkVQWnNiUFVtVkVGZIhlbXd7gYKBTmCNl4x9lnN+gXz/2wBDARUXFx4aHjshITt8U0ZTfHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHz/wAARCAAYABEDASIAAhEBAxEB/8QAGAABAAMBAAAAAAAAAAAAAAAAAAEDBQT/xAAjEAACAgECBgMAAAAAAAAAAAAAAQIDBBMVBRQhMVFSQUJD/8QAFQEBAQAAAAAAAAAAAAAAAAAAAgP/xAAbEQADAAIDAAAAAAAAAAAAAAAAAQIREgMxQf/aAAwDAQACEQMRAD8A0lxKtfmyd2pX0Zh1Za03KtSkX4tWrU5WPq32DHKq7WCbivDV3in0YODlYeJArtIcWUwzqK0oxrio/PQQzaapSl38JIAhKQ3bJ3ePqwAUwDZn/9k=) center / cover no-repeat; }
.hero-panel img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* Surf pool image: crop from the LEFT edge (keep the wave + pool on the left side) */
.hero-wave img { object-position: left center; }
.hero-golf img { object-position: center center; }
/* Light gradients only — just enough for text contrast, don't drown the photo */
.hero-panel.hero-wave::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.22) 0%,
    rgba(0,0,0,0.04) 30%,
    rgba(0,0,0,0.04) 65%,
    rgba(0,0,0,0.30) 100%);
}
.hero-panel.hero-golf::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.16) 0%,
    rgba(0,0,0,0.04) 35%,
    rgba(0,0,0,0.04) 60%,
    rgba(0,0,0,0.30) 100%);
}
.hero-text {
  position: absolute; z-index: 2;
  left: 8%; right: 8%; bottom: 14%;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-shadow: 0 3px 30px rgba(0,0,0,0.55);
}

/* Hero entrance — staggered rise of the text layers only. The hero <img> panels
   stay static so LCP paint is untouched. `translate` (longhand) is used instead
   of `transform` so it composes with the centering transforms on the partner
   badge and CTA; browsers without it still get the opacity fade. */
@keyframes heroRise {
  from { opacity: 0; translate: 0 16px; }
  to { opacity: 1; translate: 0 0; }
}
.hero-text, .hero-partner, .hero-cta, .hero-tagline-bar {
  animation: heroRise 0.9s var(--ease-out) backwards;
}
.hero-wave .hero-text { animation-delay: 0.1s; }
.hero-golf .hero-text { animation-delay: 0.22s; }
.hero-partner { animation-delay: 0.34s; }
.hero-cta { animation-delay: 0.46s; }
.hero-tagline-bar { animation-delay: 0.58s; }
.hero-headline {
  /* h1 UA defaults (font-weight: bold, font-size: 2em, margin) would clash with
     the .hero-text inherited Montserrat 900 — restate explicitly so h1 + div match */
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 2.6vw, 2.6rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}
.hero-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  margin-top: 0.6em;
  font-size: clamp(0.65rem, 0.9vw, 0.85rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}

/* Partner badge — desktop: top-center over wave panel */
.hero-partner {
  position: absolute; z-index: 5;
  top: 5%; left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 0.45rem 0.9rem;
  white-space: nowrap;
}
.hero-partner img {
  height: 22px; width: auto;
  display: block; flex-shrink: 0;
}
.hero-partner span {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
}
.hero-partner .partner-sep {
  color: #ffbd59;
  margin: 0 0.15rem;
  font-size: 0.6em;
  opacity: 0.85;
}

/* Center Book Now CTA */
.hero-cta {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.1rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.45);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 980px;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), color 0.3s var(--ease-out), transform 0.2s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}
.hero-cta::after {
  content: '\2192';
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.hero-cta:hover {
  background: #ffbd59;
  border-color: #ffbd59;
  color: var(--charcoal);
  transform: translate(-50%, calc(-50% - 2px));
}
.hero-cta:hover::after { transform: translateX(4px); }
.hero-cta:active { transform: translate(-50%, -50%) scale(0.97); }
.hero-cta:focus-visible {
  outline: 2px solid #ffbd59;
  outline-offset: 3px;
}

/* Tagline bar */
.hero-tagline-bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 5;
  background: #f0e9dd;
  padding: 14px 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #4a5560;
}
.hero-tagline-bar strong { color: var(--ocean); font-weight: 600; }

/* Featured-in bar — social proof strip between hero and reassurance */
.featured-in {
  background: #ffffff;
  border-bottom: 1px solid var(--sand-dark);
  padding: 1.6rem 1.25rem;
}
.featured-in-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.25s var(--transition);
}
.featured-in-inner:hover { opacity: 0.72; }
.featured-in-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--warm-gray);
  white-space: nowrap;
}
.featured-in-logo {
  height: 28px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.featured-in-quote {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-style: italic;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.35;
  letter-spacing: -0.005em;
  max-width: 520px;
}
.featured-in-arrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ocean);
  white-space: nowrap;
}
@media (max-width: 720px) {
  .featured-in { padding: 1.4rem 1rem; }
  .featured-in-inner { gap: 0.85rem; flex-direction: column; text-align: center; }
  .featured-in-logo { height: 24px; }
  .featured-in-quote { font-size: 0.95rem; max-width: none; }
}

/* Shared background helper used by page-hero, final-cta, wp-final-cta */
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img,
.hero-bg picture { width: 100%; height: 100%; display: block; }
.hero-bg img { object-fit: cover; object-position: center center; }
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

/* Partner Badge */
.partner-badge {
  display: inline-flex; align-items: center; gap: 0.8rem;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 6px;
  padding: 0.5rem 1rem; margin-bottom: 1.5rem;
}
.partner-badge img { height: 22px; width: auto; }
.partner-badge span {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.8);
}
.partner-badge-dark {
  background: rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.08);
  backdrop-filter: none;
}
.partner-badge-dark span { color: var(--warm-gray); }

/* Private pool buyout rate table (surf pool page) */
.wp-private { background: var(--sand); }
.wp-private-header { text-align: center; max-width: 760px; margin: 0 auto 2.6rem; }
.buyout-table { width: 100%; max-width: 780px; margin: 0 auto; border-collapse: collapse; }
.buyout-table th, .buyout-table td { text-align: right; padding: 0.85rem 0.5rem; border-bottom: 1px solid var(--sand-dark); font-size: 0.94rem; }
.buyout-table th:first-child, .buyout-table td:first-child { text-align: left; padding-left: 0; }
.buyout-table th { font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--warm-gray); border-bottom-color: var(--charcoal); }
.buyout-table td:first-child { color: var(--charcoal); }
.buyout-table td:first-child small { display: block; font-size: 0.78rem; color: var(--warm-gray); margin-top: 0.1rem; }
.buyout-table .buyout-price { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--charcoal); white-space: nowrap; }
.buyout-pill { display: inline-block; font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--coral); border: 1px solid var(--coral); border-radius: 980px; padding: 0.35rem 0.75rem; margin-bottom: 1.4rem; }
.buyout-foot { max-width: 780px; margin: 1.6rem auto 0; font-size: 0.84rem; line-height: 1.7; color: var(--warm-gray); text-align: center; }
@media (max-width: 560px) { .buyout-table th, .buyout-table td { font-size: 0.86rem; padding: 0.7rem 0.3rem; } }

/* Rates board — one surfing table + a short list of extras */
.rates-section { background: var(--white); }
.rates-header { text-align: center; max-width: 780px; margin: 0 auto 3rem; }
.rates-cols { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: clamp(2rem, 4.5vw, 4rem); max-width: 1120px; margin: 0 auto; align-items: start; }
@media (max-width: 980px) { .rates-cols { grid-template-columns: 1.15fr 1fr; } .rates-cols .rate-group:last-child { grid-column: 1 / -1; } }
@media (max-width: 760px) { .rates-cols { grid-template-columns: 1fr; gap: 2.6rem; } .rates-cols .rate-group:last-child { grid-column: auto; } }
.rate-group h3 { font-size: 1.02rem; letter-spacing: -0.01em; margin: 0 0 0.2rem; }
.rate-group__meta { font-size: 0.76rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--warm-gray); margin: 0 0 1.1rem; }
.rate-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--sand-dark); }
.rate-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1.5rem; padding: 0.8rem 0; border-bottom: 1px solid var(--sand-dark); font-size: 0.94rem; }
.rate-row__name { color: var(--charcoal); }
.rate-row__name small { display: block; font-size: 0.78rem; line-height: 1.45; color: var(--warm-gray); margin-top: 0.15rem; }
.rate-row__price { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.98rem; color: var(--charcoal); white-space: nowrap; }
.rate-row__price em { font-style: normal; font-weight: 500; font-size: 0.76em; color: var(--warm-gray); }
.rate-group__note { font-size: 0.84rem; line-height: 1.65; color: var(--warm-gray); margin: 0.9rem 0 0; }
.rate-group__link { display: inline-block; margin-top: 1rem; font-size: 0.86rem; font-weight: 600; color: var(--ocean); text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 1px; transition: opacity 0.25s ease; }
.rate-group__link:hover { opacity: 0.7; }

.rate-row__price--note { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.76rem; letter-spacing: 0.02em; color: var(--teal); white-space: normal; text-align: right; max-width: 10.5rem; }

/* Featured private-session banner: full width under the three columns so the
   columns stay balanced, with the wave-setting cards in a row beside the offer. */
.rates-cols .rate-group { min-width: 0; }
.rates-featured { display: grid; grid-template-columns: minmax(240px, 0.9fr) 2fr; gap: clamp(1.4rem, 3.5vw, 3rem); align-items: center; max-width: 1120px; margin: 2.8rem auto 0; padding: 1.5rem clamp(1.2rem, 2.5vw, 2rem); background: var(--sand); border: 1px solid var(--coral); border-radius: 12px; }
.rates-featured__info h3 { font-size: 1.15rem; margin: 0 0 0.25rem; }
.rates-featured__desc { font-size: 0.84rem; line-height: 1.55; color: var(--warm-gray); margin: 0 0 0.55rem; }
.rates-featured__price { display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--charcoal); }
.rates-featured__price em { font-style: normal; font-weight: 500; font-size: 0.76em; color: var(--warm-gray); }
.rates-featured .ps-scroll { margin-top: 0; }
.rates-featured .ps-card { flex: 1 1 172px; }
@media (max-width: 860px) { .rates-featured { grid-template-columns: 1fr; align-items: start; } .rates-featured .ps-card { flex: 0 0 172px; } }
.ps-tag { display: inline-block; font-family: 'Montserrat', sans-serif; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--white); background: var(--coral); border-radius: 6px; padding: 0.22rem 0.5rem; margin-bottom: 0.55rem; }
.ps-scroll { display: flex; gap: 0.7rem; overflow-x: auto; max-width: 100%; margin-top: 0.95rem; padding-bottom: 0.4rem; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
.ps-card { flex: 0 0 172px; scroll-snap-align: start; background: var(--white); border: 1px solid var(--sand-dark); border-radius: 12px; padding: 0.8rem 0.85rem 0.9rem; display: flex; flex-direction: column; text-align: left; }
.ps-card__level { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.84rem; color: var(--charcoal); }
.ps-card__desc { font-size: 0.72rem; line-height: 1.45; color: var(--warm-gray); margin-top: 0.2rem; }
.ps-card__price { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.94rem; color: var(--charcoal); margin-top: auto; padding-top: 0.55rem; white-space: nowrap; }
.ps-card__price s { font-weight: 500; font-size: 0.76em; color: var(--warm-gray); margin-right: 0.3rem; }
.ps-card__price em { font-style: normal; font-weight: 500; font-size: 0.7em; color: var(--warm-gray); }
.ps-card__link { margin-top: 0.5rem; font-size: 0.74rem; font-weight: 600; color: var(--ocean); text-decoration: none; border-bottom: 1px solid currentColor; align-self: flex-start; padding-bottom: 1px; }
.ps-card__link:hover { opacity: 0.7; }
.ps-book { display: inline-block; margin-top: 0.9rem; font-size: 0.85rem; font-weight: 700; font-family: 'Montserrat', sans-serif; color: var(--white); background: var(--ocean); border-radius: 980px; padding: 0.55rem 1rem; text-decoration: none; transition: background 0.25s ease; }
.ps-book:hover { background: var(--ocean-light); }

.rates-foot { text-align: center; margin: 3rem auto 0; max-width: 720px; }
.rates-foot p { font-size: 0.86rem; color: var(--warm-gray); margin: 0 auto 1.6rem; line-height: 1.7; }
.rates-foot__btns { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* Surf calendar teaser band (surf pool page) */
.wp-calband { background: var(--sand); }
.calband { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.calband__body h2 { margin-bottom: 1.1rem; }
.calband__body p { font-size: 0.94rem; line-height: 1.75; color: var(--warm-gray); margin-bottom: 1rem; }
.calband__body .btn { margin-top: 0.6rem; }
.calband__peek { list-style: none; margin: 0; padding: 0; background: var(--white); border: 1px solid var(--sand-dark); border-radius: 12px; overflow: hidden; }
.calband__peek li { display: flex; align-items: center; gap: 0.9rem; padding: 0.78rem 1.1rem; border-bottom: 1px solid var(--sand); }
.calband__peek li:last-child { border-bottom: none; }
.calband__peek span { font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 700; color: var(--charcoal); min-width: 46px; }
.cb { font-family: 'Montserrat', sans-serif; font-size: 0.63rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; font-style: normal; padding: 0.22rem 0.5rem; border-radius: 6px; border: 1px solid; }
.cb--b2 { background: #faf1dc; border-color: #e3ca92; color: #856327; }
.cb--b4 { background: #e3f1f2; border-color: #a3d0d4; color: #1d666e; }
.cb--i  { background: #e2edf4; border-color: #9fc3d6; color: #0a4d68; }
.cb--a  { background: #fbe8e0; border-color: #eab9a5; color: #a04c2a; }
@media (max-width: 860px) {
  .calband { grid-template-columns: 1fr; gap: 2rem; }
}

/* Reassurance */
.reassurance {
  position: relative;
  padding: clamp(2.25rem, 4vw, 3.5rem) 0;
  background:
    linear-gradient(180deg, #fbf7f1 0%, #f5ece0 100%);
  overflow: hidden;
}
.reassurance::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(196,162,101,0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(45,138,148,0.10) 0%, transparent 45%);
  pointer-events: none;
}
.reassurance-inner {
  position: relative; z-index: 2; text-align: center;
}
.reassurance-overline { color: var(--coral); }
.reassurance h2 { margin-bottom: 0.5rem; }
.reassurance h2 em { font-style: normal; color: var(--ocean); font-weight: 500; }
.reassurance-lead {
  font-size: 1.1rem; color: var(--charcoal); margin: 0 auto 1.25rem; max-width: 720px; font-weight: 400; line-height: 1.6;
}
.reassurance-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 1rem;
  margin-top: 0.5rem; text-align: left;
}
/* Small coral tag on the same line as the title (wraps as a unit on narrow cards) */
.visa-callout {
  display: inline-block; white-space: nowrap;
  font-family: 'Inter', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--coral); background: rgba(212,133,106,0.12); border-radius: 999px;
  padding: 0.18rem 0.55rem; margin-top: 0.45rem;
}
.reassurance-flights {
  margin: 2rem auto 0; max-width: 640px; font-size: 0.98rem; line-height: 1.7; color: var(--warm-gray);
}
.reassurance-flights a { color: var(--ocean); font-weight: 500; text-decoration: none; border-bottom: 1px solid rgba(10,77,104,0.35); padding-bottom: 1px; }
.reassurance-flights a:hover { border-bottom-color: var(--ocean); }
.reassurance-pillar p a { color: var(--ocean); font-weight: 500; text-decoration: none; white-space: nowrap; }
.reassurance-pillar p a:hover { text-decoration: underline; }
.reassurance-pillar {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(196,162,101,0.25);
  backdrop-filter: blur(4px);
  padding: 1.1rem 1.25rem; border-radius: 12px;
  transition: background 0.4s var(--transition), border-color 0.4s var(--transition), transform 0.4s var(--transition);
}
.reassurance-pillar:hover {
  background: rgba(255,255,255,0.9);
  border-color: var(--gold);
  transform: translateY(-3px);
}
/* Number + title share one header row; a wrapped title aligns under itself, not under the number */
.reassurance-pillar-head { display: flex; align-items: baseline; gap: 0.55rem; }
.reassurance-pillar-num {
  flex: 0 0 auto;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem; font-weight: 600; color: var(--gold); letter-spacing: 0;
}
.reassurance-pillar h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.08rem; color: var(--charcoal);
  font-weight: 600; letter-spacing: -0.01em; line-height: 1.3; margin: 0;
}
.reassurance-pillar p {
  font-size: 0.9rem; color: var(--warm-gray); line-height: 1.55; margin-top: 0.4rem;
}
/* Nav: 6 top-level links stop fitting below ~1100px — switch to the mobile menu there. */
@media (max-width: 1120px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; flex-direction: column; justify-content: center; justify-self: start; order: 1; }
  .nav-mobile-cta { display: inline-flex; align-items: center; justify-self: end; order: 3; }
  .nav-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 0.5rem; }
  .nav-logo { order: 2; justify-self: center; }
}
@media (max-width: 768px) {
}

/* Intro */
.intro { background: var(--sand); }
.intro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 3.5rem; }
.intro-card h3 { margin: 0 0 0.8rem; font-size: 1.3rem; }
.intro-card p { color: var(--warm-gray); font-size: 0.95rem; }

/* Facilities */
.facilities { background: var(--ocean); color: var(--white); }
.facilities h2 { color: var(--white); }
.facilities .overline { color: var(--gold); }
.facilities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.facility-card {
  padding: 0; border-radius: 12px; overflow: hidden;
  background: rgba(255,255,255,0.05);
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.facility-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.facility-card img { width: 100%; height: 180px; object-fit: cover; transition: transform 0.5s ease; }
.facility-card:hover img { transform: scale(1.04); }
.facility-card-body { padding: 1.5rem; }
.facility-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.5rem; }
.facility-card p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: 1rem; }
.facility-card .card-cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
}
.facility-card .card-cta::after {
  content: '\2192';
  transition: transform 0.3s ease;
  font-size: 0.95rem;
  line-height: 1;
}
.facility-card:hover .card-cta::after { transform: translateX(5px); }

/* Packages */
/* Two full package cards + a narrower column with two compact "other ways in" cards */
.packages-grid { display: grid; grid-template-columns: 1.15fr 1.15fr 0.9fr; gap: 1.5rem; margin-top: 3rem; align-items: stretch; }
.packages-side { display: grid; grid-template-rows: auto 1fr 1fr; gap: 1rem; }
.packages-side__label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--warm-gray); }
.package-mini {
  display: flex; flex-direction: column; overflow: hidden; border-radius: 14px;
  background: var(--white); border: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow 0.4s var(--transition), transform 0.4s var(--transition);
}
.package-mini:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.1); transform: translateY(-2px); }
.package-mini__img { width: 100%; height: 150px; object-fit: cover; display: block; }
.package-mini__body { flex: 1; display: flex; flex-direction: column; padding: 1.2rem 1.3rem 1.2rem; }
.package-mini h3 { font-size: 1.15rem; line-height: 1.2; margin-bottom: 0.45rem; }
.package-mini p { color: var(--warm-gray); font-size: 0.86rem; line-height: 1.55; margin: 0 0 0.9rem; }
.package-mini .package-mini__cta { margin-top: auto; }
.package-mini .btn-outline-dark { border-width: 1.5px; }
.package-mini__note { display: block; margin-top: 0.7rem; font-size: 0.74rem; color: var(--warm-gray); text-align: center; }
.package-card {
  position: relative; overflow: hidden; border-radius: 14px;
  background: var(--white); border: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow 0.4s var(--transition), transform 0.4s var(--transition);
  display: flex; flex-direction: column;
}
.package-card .package-body { flex: 1; display: flex; flex-direction: column; }
.package-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.1); transform: translateY(-2px); }
.package-img { width: 100%; height: 190px; object-fit: cover; }
.package-body { padding: 1.6rem 1.6rem 1.5rem; }
.package-tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 0.45rem; display: block;
}
.package-body h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.package-body p { color: var(--warm-gray); font-size: 0.9rem; line-height: 1.55; margin-bottom: 0.9rem; }
.package-includes { list-style: none; padding: 0.9rem 0 0; margin: 0; border-top: 1px solid rgba(0,0,0,0.06); }
.package-includes li {
  font-size: 0.84rem; line-height: 1.45; color: var(--warm-gray); padding: 0.28rem 0 0.28rem 1.25rem; position: relative;
}
.package-includes li strong { color: var(--charcoal); font-weight: 600; }
.package-includes li::before { content: '\2713'; position: absolute; left: 0; top: 0.32rem; color: var(--teal); font-size: 0.78rem; }
.package-foot { margin-top: auto; padding-top: 1.1rem; }
.package-price { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--charcoal); font-size: 1.1rem; margin: 0 0 0.9rem !important; line-height: 1.3; }
.package-price span { font-family: 'Inter', sans-serif; font-weight: 400; color: var(--warm-gray); font-size: 0.82rem; }
.package-cta { display: flex; align-items: center; justify-content: center; width: 100%; }
/* Surf Escape: one text link to the full-details page */
.package-link { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 0.9rem; font-size: 0.84rem; font-weight: 600; color: var(--ocean); text-decoration: none; }
.package-link span { transition: transform 0.25s var(--transition); }
.package-link:hover span { transform: translateX(3px); }
/* Surf & Golf: the three tiers, each with its own PDF brochure */
.package-tiers { list-style: none; margin: 0; padding: 0.9rem 0 0; border-top: 1px solid rgba(0,0,0,0.06); display: grid; gap: 0.55rem; }
.package-tier { padding: 0.55rem 0 0.55rem 0.85rem; border-left: 3px solid var(--tier); }
.package-tier__head { display: flex; align-items: center; gap: 0.5rem; }
.package-tier__name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.88rem; color: var(--charcoal); }
.package-tier__nights { font-size: 0.78rem; color: var(--warm-gray); }
.package-tier__nights::before { content: '\00b7'; margin-right: 0.5rem; }
.package-tier__pdf {
  margin-left: auto; display: inline-flex; align-items: center; gap: 0.3rem; flex: 0 0 auto;
  font-family: 'Montserrat', sans-serif; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.08em;
  color: var(--white); background: var(--tier); border-radius: 6px; padding: 0.32rem 0.5rem 0.3rem; text-decoration: none;
  transition: filter 0.2s, transform 0.2s;
}
.package-tier__pdf svg { width: 12px; height: 12px; }
.package-tier__pdf:hover { filter: brightness(1.1); transform: translateY(-1px); }
.package-tier__desc { margin: 0.3rem 0 0 !important; font-size: 0.82rem !important; line-height: 1.45 !important; color: var(--warm-gray); }
.package-tier__desc strong { color: var(--charcoal); font-weight: 600; }
/* Build a Custom Trip: same skeleton as the other two, on the booking flow's deep-ocean palette */
.custom-card { background: var(--ocean-deep); border-color: var(--ocean-deep); color: var(--paper); }
.custom-card .package-img { object-position: center 38%; }
.custom-card .package-tag { color: var(--gold); }
.custom-card h3 { color: var(--paper); }
.custom-card .package-body > p { color: rgba(244,233,208,0.72); }
.custom-card .package-includes { border-top-color: rgba(244,233,208,0.14); }
.custom-card .package-includes li { color: rgba(244,233,208,0.82); }
.custom-card .package-includes li::before { color: var(--gold); }
.custom-card .package-price { color: var(--paper); }
.custom-card .package-price span { color: rgba(244,233,208,0.6); }
.custom-card .btn { background: var(--gold); color: var(--ocean-deep); }
.custom-card .btn:hover { background: #dcc08b; }
.custom-card:hover { box-shadow: 0 20px 60px rgba(9,46,62,0.35); }
.package-featured-badge {
  position: absolute; top: calc(32px + 1rem); right: 1rem;
  background: var(--teal); color: var(--white);
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.4rem 0.8rem; border-radius: 6px; z-index: 2;
}

/* Explore */
.explore { background: var(--sand); }
.explore-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
.explore-card { position: relative; overflow: hidden; border-radius: 12px; height: 360px; cursor: pointer; }
.explore-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--transition); }
.explore-card:hover img { transform: scale(1.05); }
.explore-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%); color: var(--white);
}
.explore-card-overlay h3 { font-size: 1.5rem; margin-bottom: 0.3rem; }
.explore-card-overlay p { font-size: 0.85rem; opacity: 0.8; }
.explore-card-cta {
  display: inline-flex; align-items: center; gap: 0.45rem;
  margin-top: 0.85rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.92;
  transition: opacity 0.3s var(--transition);
}
.explore-card-cta::after {
  content: '\2192';
  display: inline-block;
  transition: transform 0.3s var(--transition);
}
.explore-card:hover .explore-card-cta { opacity: 1; }
.explore-card:hover .explore-card-cta::after { transform: translateX(4px); }

/* 4-card explore */
.explore-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; }
.explore-grid-4 .explore-card { height: 320px; }

/* Natural Surf */
.natural-surf-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.natural-surf-img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius-media); }

/* Recovery */
.recovery-section { position: relative; overflow: hidden; }
.recovery-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; margin-top: 2rem; border-radius: 12px; overflow: hidden; }
.recovery-grid img { width: 100%; height: 300px; object-fit: cover; }

/* Audience */
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.audience-card { text-align: center; padding: 2.5rem 1.5rem; background: var(--sand); border-radius: 12px; }
.audience-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.audience-card p { font-size: 0.85rem; color: var(--warm-gray); }
.audience-card img { width: 100%; height: 180px; object-fit: cover; border-radius: 8px; margin-bottom: 1.2rem; }

/* Why Us */
.why-us { background: var(--ocean); color: var(--white); }
.why-us h2 { color: var(--white); }
.why-us .overline { color: var(--gold); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 3rem; }
.why-card { border-top: 1px solid rgba(255,255,255,0.2); padding-top: 1.5rem; }
.why-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 0.6rem; }
.why-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* Final CTA */
.final-cta {
  position: relative; height: 70vh; min-height: 500px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.final-cta .hero-bg::after { background: rgba(0,0,0,0.5); }
.final-cta-content { position: relative; z-index: 2; color: var(--white); max-width: 600px; }
.final-cta-content h2 { color: var(--white); margin-bottom: 1rem; }
.final-cta-content p { color: rgba(255,255,255,0.8); margin: 0 auto 2rem; }

/* Page Hero */
.page-hero {
  position: relative; min-height: 60vh;
  display: flex; align-items: flex-end; padding: 6rem 0 4rem; overflow: hidden;
}
.page-hero .hero-bg::after { background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%); }
.page-hero-content { position: relative; z-index: 2; color: var(--white); }
.page-hero-content h1, .page-hero-content h2.page-title { font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: 0.5rem; }
.page-hero-content p { opacity: 0.85; font-size: 1.1rem; }

/* Wave Types */
.wave-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.wave-type-card { padding: 2rem; border: 1px solid rgba(0,0,0,0.08); border-radius: 12px; transition: all 0.3s; }
.wave-type-card:hover { border-color: var(--teal); }
.wave-type-level {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  display: inline-block; padding: 0.3rem 0.6rem; border-radius: 6px; margin-bottom: 1rem;
}
.wave-type-level.beginner { background: #e8f5e9; color: #2e7d32; }
.wave-type-level.intermediate { background: #fff3e0; color: #e65100; }
.wave-type-level.advanced { background: #fce4ec; color: #c62828; }
.wave-type-card h3 { margin-bottom: 0.6rem; }
.wave-type-card p { font-size: 0.9rem; color: var(--warm-gray); }

/* FAQ */
.faq-list { max-width: 800px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); padding: 1.5rem 0; cursor: pointer; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 600; letter-spacing: -0.01em;
}
.faq-question::after {
  content: '+'; font-family: 'Inter', sans-serif; font-size: 1.5rem;
  font-weight: 300; color: var(--warm-gray); transition: transform 0.3s var(--ease-in-out);
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--transition); }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding-top: 1rem; font-size: 0.9rem; color: var(--warm-gray); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; }
#bywBar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 900; display: flex; align-items: center; justify-content: space-between;
          gap: 1rem; background: #092e3e; color: #f4e9d0; padding: 0.8rem 1.1rem; font-variant-numeric: tabular-nums;
          box-shadow: 0 -8px 24px rgba(0,0,0,0.18); }
#bywBar[hidden] { display: none; }
#bywBar .byw-pk { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,233,208,0.6); }
#bywBar .byw-pp { font-family: 'Montserrat', sans-serif; font-weight: 800; color: #c4a265; font-size: 1.2rem; }
#bywBar button { border: none; border-radius: 980px; background: #c4a265; color: #092e3e; font-family: 'Montserrat', sans-serif;
                 font-weight: 700; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.7rem 1.3rem; cursor: pointer; }
#bywBar button:active { transform: scale(0.97); }
.contact-aside { padding-left: 2rem; }
/* Booking panel (/#contact): the embedded flow sits on a full-bleed sand section, aligned to .container */
#page-contact .byw-section { background: var(--sand); padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(2.5rem, 4vw, 4rem); }
#page-contact .byw-more { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
/* The two cards under the flow. Palette mirrors the flow's price rail / #bywBar
   (deep ocean, paper, gold) so the whole panel reads as one system. */
.byw-aside { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: stretch; }
.byw-card { border-radius: 14px; padding: clamp(1.8rem, 3.5vw, 2.6rem); display: flex; flex-direction: column; }
.byw-card h3 { font-size: 1.35rem; letter-spacing: -0.01em; margin: 0 0 1.5rem; }
.byw-card--reach { background: var(--sand); border: 1px solid var(--sand-dark); color: var(--charcoal); }
.byw-reach { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem 1.5rem; margin: 0; }
.byw-reach dt { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ocean); margin-bottom: 0.3rem; }
.byw-reach dd { margin: 0; font-size: 0.95rem; line-height: 1.5; }
.byw-reach a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--gold); transition: color 0.2s, border-color 0.2s; }
.byw-reach a:hover { color: var(--ocean); border-color: var(--ocean); }
.byw-partner { margin-top: auto; padding-top: 1.5rem; border-top: 1px solid var(--sand-dark); display: flex; align-items: center; gap: 1.1rem; }
.byw-partner img { width: 128px; height: auto; flex: 0 0 auto; }
.byw-partner p { font-size: 0.82rem; line-height: 1.55; color: var(--warm-gray); margin: 0; }
.byw-card--next { background: var(--ocean-deep); color: var(--paper); }
.byw-card--next h3 { color: var(--paper); }
.byw-steps { list-style: none; margin: 0 0 1.4rem; padding: 0; display: grid; gap: 1.1rem; }
.byw-steps li { display: flex; gap: 1rem; align-items: flex-start; }
.byw-steps span { flex: 0 0 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
                  font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 700; color: var(--gold); border: 1.5px solid var(--gold); }
.byw-steps p { margin: 0; padding-top: 0.3rem; font-size: 0.93rem; line-height: 1.55; color: rgba(244,233,208,0.82); }
.byw-next-note { margin: auto 0 0; padding-top: 1.2rem; border-top: 1px solid rgba(244,233,208,0.14); font-size: 0.82rem; color: rgba(244,233,208,0.6); }
@media (max-width: 860px) {
  .byw-aside { grid-template-columns: 1fr; gap: 1.1rem; }
  .byw-reach { grid-template-columns: 1fr 1fr; gap: 1.1rem 1rem; }
}
@media (max-width: 480px) {
  .byw-reach { grid-template-columns: 1fr; }
  .byw-partner { flex-direction: column; align-items: flex-start; }
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 0.5rem; color: var(--warm-gray);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.9rem 1rem; border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 0.95rem;
  transition: border-color 0.3s; background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
/* Surf-only mode drops the golfers field — keep the surviving field full width. */
.form-row-solo { grid-template-columns: 1fr; }
.custom-detail { margin: 0.4rem 0 0.2rem; padding: 1rem 1.1rem; border: 1px solid var(--sand-dark); border-left: 3px solid var(--gold); border-radius: 12px; background: var(--sand); }
.custom-detail__q { margin-bottom: 0.9rem; }
.custom-detail__q:last-child { margin-bottom: 0; }
.custom-detail__label { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 0.5rem; }
.custom-choice { display: flex; flex-wrap: wrap; gap: 0.55rem 0.6rem; }
.custom-choice label { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.9rem; color: var(--charcoal); cursor: pointer; padding: 0.5rem 0.95rem; border: 1px solid var(--sand-dark); border-radius: 999px; background: var(--white); font-weight: 500; transition: border-color .15s, background .15s, color .15s, box-shadow .15s; }
.custom-choice label:hover { border-color: var(--ocean); }
.custom-choice input { accent-color: var(--ocean); width: auto; margin: 0; }
/* Where :has() is supported, hide the native control and make the whole pill the selected state. */
@supports selector(:has(*)) {
  .custom-choice input { position: absolute; opacity: 0; pointer-events: none; }
  .custom-choice label:has(input:checked) { background: var(--ocean); border-color: var(--ocean); color: #fff; box-shadow: 0 2px 8px rgba(10,77,104,.18); }
  .custom-choice label:has(input:focus-visible) { outline: 2px solid var(--gold); outline-offset: 2px; }
  .custom-choice label:has(input[name="custom_budget"][value="Essential"]:checked) { background: var(--teal); border-color: var(--teal); color: #fff; }
  .custom-choice label:has(input[name="custom_budget"][value="Premium"]:checked) { background: var(--ink-blue); border-color: var(--ink-blue); color: #fff; }
  .custom-choice label:has(input[name="custom_budget"][value="Luxury"]:checked) { background: var(--gold); border-color: var(--gold); color: #fff; }
}
.custom-detail input[type="number"] { width: 140px; padding: 0.5rem 0.6rem; border: 1px solid var(--sand-dark); border-radius: 10px; font-size: 0.95rem; }
.wpe-est { margin: 0.2rem 0; padding: 1rem 1.1rem; border: 1px solid var(--sand-dark); border-left: 3px solid var(--teal); border-radius: 12px; background: var(--sand); }
.wpe-est__title { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 0.7rem; }
.wpe-est__title span { font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--warm-gray); }
.wpe-est__summary { font-size: 0.98rem; color: var(--charcoal); margin-bottom: 0.9rem; }
.wpe-est__summary strong { font-family: 'Montserrat', sans-serif; font-weight: 700; }
.wpe-est__setabove { color: var(--warm-gray); font-size: 0.85rem; }
.wpe-est__inputs { display: flex; gap: 0.9rem; align-items: flex-end; flex-wrap: wrap; }
.wpe-est__inputs label { display: inline-flex; flex-direction: column; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--warm-gray); gap: 0.25rem; }
.wpe-est__inputs .hint { font-weight: 400; text-transform: none; letter-spacing: 0; }
.wpe-est__inputs input { width: 140px; padding: 0.5rem 0.6rem; border: 1px solid var(--sand-dark); border-radius: 10px; font-size: 0.95rem; }
.addons { display: grid; gap: 0.9rem; margin: 1.1rem 0 0.2rem; }
.ppool { padding: 1rem 1.1rem; border: 1px solid var(--sand-dark); border-left: 3px solid var(--sand-dark); border-radius: 12px; background: var(--white); transition: border-color .15s; }
.ppool--on { border-left-color: var(--gold); }
.ppool__add { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ocean); cursor: pointer; border: 1px solid var(--sand-dark); border-radius: 999px; padding: 0.35rem 0.8rem; background: var(--white); }
.ppool__add input { accent-color: var(--ocean); margin: 0; }
.ppool--on .ppool__add { border-color: var(--ocean); }
.ppool__hint { color: var(--warm-gray); font-size: 0.82em; }
.ppool__head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.ppool__label { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--charcoal); }
.ppool__tag { display: inline-block; margin-left: 0.3rem; font-family: 'Montserrat', sans-serif; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; color: var(--white); background: var(--gold); border-radius: 6px; padding: 0.15rem 0.4rem; vertical-align: 0.1em; }
.ppool__price { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; color: var(--charcoal); white-space: nowrap; }
.ppool__was { font-weight: 500; font-size: 0.8rem; color: var(--warm-gray); text-decoration: line-through; }
.ppool__unit { font-weight: 500; font-size: 0.78rem; color: var(--warm-gray); }
.ppool__copy { font-size: 0.83rem; line-height: 1.55; color: var(--warm-gray); margin: 0.55rem 0 0.9rem; }
.ppool__step { margin-top: 0.9rem; }
.ppool__steplabel { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 0.5rem; }
.ppool__step input[type="number"] { width: 140px; padding: 0.5rem 0.6rem; border: 1px solid var(--sand-dark); border-radius: 10px; font-size: 0.95rem; }
.wpe-est__out { margin-top: 0.9rem; padding-top: 0.8rem; border-top: 1px solid var(--sand-dark); display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 0.3rem; }
.wpe-est__from { font-size: 0.8rem; color: var(--warm-gray); }
.wpe-est__pp { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--ocean); }
.wpe-est__per { font-size: 0.85rem; color: var(--warm-gray); }
.wpe-est__tot { font-size: 0.82rem; color: var(--warm-gray); }
.wpe-est__list { text-decoration: line-through; }
.wpe-est__basis { grid-column: 2 / -1; align-self: end; font-size: 0.8rem; color: var(--warm-gray); }
.pkg-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; margin: 0.4rem 0 1.3rem; }
.pkg-tab {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.35rem;
  padding: 1rem 1.05rem 0.95rem;
  background: var(--white);
  border: 2px solid var(--sand-dark); border-radius: 980px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.04em; text-transform: uppercase; text-align: left;
  color: var(--charcoal); cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.pkg-tab:hover { border-color: var(--teal); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(10,77,104,0.10); }
.pkg-tab.active { background: var(--ocean); border-color: var(--ocean); color: #fff; box-shadow: 0 8px 20px rgba(10,77,104,0.22); }
.trip-details.step-locked { opacity: 0.45; pointer-events: none; }
.step-hint { font-size: 0.88rem; color: var(--warm-gray); margin: -0.4rem 0 1.4rem; }
@media (max-width: 768px) {
  /* Prevent iOS zoom-on-focus: form controls must be >=16px */
  .form-group input, .form-group select, .form-group textarea,
  .custom-detail input, .wpe-est__inputs input, .date-display { font-size: 16px; }
  /* Comfortable tap target */
  .pkg-tabs { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .pkg-tab { min-height: 44px; padding: 0.8rem 0.4rem; align-items: center; text-align: center; font-size: 0.8rem; letter-spacing: 0.03em; }
  /* Tighten the gap between the hero and the first form content on mobile */
  .contact-grid { margin-top: 0; }
}

/* Slightly larger form group for the prominent Interested-In question */
.form-group-lg label { font-size: 0.85rem; margin-bottom: 0.55rem; }
.form-group-lg select,
.form-group-lg input,
.form-group-lg textarea {
  padding: 1.05rem 1.15rem;
  font-size: 1.05rem;
}

/* Helper text under a form label */
.form-help {
  font-size: 0.85rem; color: var(--warm-gray);
  margin: -0.2rem 0 0.9rem; line-height: 1.5; max-width: none;
}
.form-help + .form-help { margin-top: -0.5rem; }
/* Surf pool maintenance note under the date field */
.maint-note {
  background: var(--sand); border-left: 3px solid var(--teal);
  padding: 0.5rem 0.75rem; border-radius: 0 6px 6px 0;
}
.date-cal-day.maint { text-decoration: line-through; }
/* National Day Golden Week (Oct 1-7): still selectable, but marked in a deep
   premium red — a 20% holiday surcharge applies, so we nudge visitors to book
   around it. */
.holiday-note {
  background: rgba(176,58,46,0.08); border-left: 3px solid #b03a2e;
  padding: 0.5rem 0.75rem; border-radius: 0 6px 6px 0;
}
.holiday-note.picked { background: rgba(176,58,46,0.14); }
.date-cal-day.holiday { background: rgba(176,58,46,0.1); color: #b03a2e; font-weight: 600; }
.date-cal-day.holiday:hover:not(.disabled) { background: rgba(176,58,46,0.24); }
.date-cal-day.holiday.start { background: var(--teal); color: var(--white); }
.date-holiday-legend {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; color: var(--warm-gray); margin-top: 0.5rem;
}
.date-holiday-legend .swatch {
  width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0;
  background: rgba(176,58,46,0.22); border: 1px solid rgba(176,58,46,0.5);
}
.form-help a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}
.form-help a:hover { color: var(--ocean); }

/* Package selector: stacked cards each with a name + price + tagline.
   Multi-select via checkboxes. The card highlights teal when ticked. */
.package-options { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 0; }
/* Scoped under .package-options so these rules beat the more specific
   .form-group label rule (display: block, text-transform: uppercase…)
   that would otherwise win for these <label> elements. */
.package-options .package-option {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.15s;
  background: var(--white);
  text-transform: none;
  letter-spacing: normal;
  font-weight: normal;
  font-size: inherit;
  color: var(--charcoal);
  margin-bottom: 0;
}
.package-options .package-option:hover { border-color: var(--teal); background: rgba(45,138,148,0.03); }
.package-options .package-option input[type="checkbox"] {
  width: 18px !important; height: 18px;
  margin: 0; flex-shrink: 0;
  accent-color: var(--teal); cursor: pointer;
}
.package-options .package-option:has(input:checked) {
  border-color: var(--teal);
  background: rgba(45,138,148,0.06);
  box-shadow: inset 0 0 0 1px var(--teal);
}
.package-options .package-option-body { flex: 1; min-width: 0; }
.package-options .package-option-head { margin-bottom: 0.35rem; }
.package-options .package-option-name {
  display: block;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 1.02rem; color: var(--charcoal); letter-spacing: -0.01em;
  line-height: 1.3;
}
.package-options .package-option-nights {
  color: var(--ocean);
  font-weight: 700;
}
.package-options .package-option-tier-essential { color: var(--teal); font-weight: 700; }
.package-options .package-option-tier-premium { color: var(--ink-blue); font-weight: 700; }
.package-options .package-option-tier-luxury { color: var(--gold); font-weight: 700; }
.package-options .package-option-price {
  display: block;
  margin-top: 0.2rem;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.95rem; color: var(--teal);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.package-options .surf-lead { padding: 0.1rem 0 1rem; }
.package-options .surf-lead .package-option-info { display: inline-block; margin-top: 0.55rem; }
.package-options .package-option-sub {
  font-size: 0.85rem; color: var(--warm-gray);
  line-height: 1.45;
}
.package-options .package-option-info {
  display: block;
  margin-top: 0.55rem;
  text-align: right;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  letter-spacing: 0.03em;
}
.package-options .package-option-info:hover {
  color: var(--ocean);
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 480px) {
  .package-option { padding: 0.85rem 1rem; gap: 0.75rem; }
  .package-option-name { font-size: 0.97rem; }
  .package-option-price { font-size: 0.9rem; }
}

/* Link-style package card: looks like the other options but navigates
   to a dedicated inquiry page instead of toggling a checkbox. */
.package-options .package-option-link {
  text-decoration: none;
  position: relative;
  padding-right: 2.4rem; /* room for the arrow */
  border-color: var(--gold);
  border-left: 4px solid var(--gold);
  background: linear-gradient(135deg, rgba(196,162,101,0.10), rgba(196,162,101,0.04));
}
.package-options .package-option-badge {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5rem;
  padding: 0.12rem 0.5rem;
  background: var(--gold);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
}
.package-options .package-option-link:hover {
  border-color: var(--gold);
  box-shadow: 0 2px 8px rgba(196,162,101,0.18);
}
.package-options .package-option-link::after {
  content: '\2192';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal);
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 0.25s var(--transition);
}
.package-options .package-option-link:hover::after {
  transform: translateY(-50%) translateX(4px);
  color: var(--ocean);
}
.package-options .package-option-link .package-option-name {
  color: var(--charcoal);
}
.package-options .package-option-link .package-option-cta {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--teal);
}

/* Trip-dates: single readonly input that pops a calendar range picker.
   The "I'm not sure yet" toggle lives inside the popover. */
.date-picker { position: relative; }
.date-display {
  width: 100%; padding: 0.9rem 1rem;
  border: 1px solid rgba(0,0,0,0.12); border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: 0.95rem;
  color: var(--charcoal); background: var(--white);
  cursor: pointer;
}
.date-display:focus, .date-display.open { outline: none; border-color: var(--teal); }
.date-display.tbd { color: var(--teal); font-style: italic; }
.date-display::placeholder { color: rgba(0,0,0,0.4); }

/* Range-picker popover */
.date-popover {
  position: absolute; top: calc(100% + 0.4rem); left: 0;
  min-width: 290px;
  background: var(--white); border: 1px solid rgba(0,0,0,0.12);
  border-radius: 12px; padding: 1rem;
  box-shadow: 0 10px 32px rgba(0,0,0,0.15);
  z-index: 100; display: none;
}
.date-popover.open { display: block; }
.date-popover { opacity: 0; scale: 0.96; translate: 0 -4px; transform-origin: top left;
  transition: opacity 0.18s var(--ease-out), scale 0.18s var(--ease-out), translate 0.18s var(--ease-out), display 0.18s allow-discrete; }
.date-popover.open { opacity: 1; scale: 1; translate: 0 0; }
@starting-style { .date-popover.open { opacity: 0; scale: 0.96; translate: 0 -4px; } }
.date-popover-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.6rem; gap: 0.5rem;
}
.date-popover-nav-group { display: flex; gap: 0.25rem; flex-shrink: 0; }
.date-popover-nav {
  background: none; border: 1px solid rgba(0,0,0,0.1); border-radius: 980px;
  width: 28px; height: 28px; cursor: pointer; font-size: 1rem;
  color: var(--charcoal); font-family: inherit;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.15s; padding: 0;
}
.date-popover-nav:hover:not(:disabled) { background: var(--sand); border-color: var(--teal); color: var(--teal); }
.date-popover-nav:disabled {
  color: rgba(0,0,0,0.2); cursor: not-allowed;
  border-color: rgba(0,0,0,0.06);
}
.date-popover-title {
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.95rem;
  color: var(--charcoal); flex: 1; text-align: center;
}
.date-cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; }
.date-cal-dow {
  font-size: 0.68rem; font-weight: 600; text-align: center; padding: 0.4rem 0;
  color: var(--warm-gray); letter-spacing: 0.06em;
}
.date-cal-day {
  padding: 0.55rem 0; text-align: center; font-size: 0.88rem;
  border-radius: 10px; cursor: pointer; user-select: none;
  color: var(--charcoal); transition: background 0.1s;
}
.date-cal-day:hover:not(.disabled) { background: var(--sand); }
.date-cal-day.disabled { color: rgba(0,0,0,0.18); cursor: not-allowed; }
.date-cal-day.disabled:hover { background: none; }
.date-cal-day.start, .date-cal-day.end {
  background: var(--teal); color: var(--white); font-weight: 600;
}
.date-cal-day.start:hover, .date-cal-day.end:hover { background: var(--teal); }
.date-cal-day.range { background: rgba(45,138,148,0.15); color: var(--charcoal); }
.date-popover-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 0.85rem; padding-top: 0.75rem; border-top: 1px solid var(--sand-dark);
}
.date-popover-footer .btn-clear {
  background: none; border: none; color: var(--warm-gray);
  font-family: inherit; font-size: 0.76rem; padding: 0.35rem 0;
  cursor: pointer; letter-spacing: 0.06em; text-transform: uppercase;
}
.date-popover-footer .btn-clear:hover { color: var(--charcoal); }
.date-popover-footer .btn-apply {
  background: var(--ocean); color: var(--white); border: none;
  font-family: inherit; font-size: 0.76rem; font-weight: 500;
  padding: 0.55rem 1.1rem; border-radius: 980px; cursor: pointer;
  letter-spacing: 0.06em; text-transform: uppercase; transition: background 0.2s;
}
.date-popover-footer .btn-apply:hover:not(:disabled) { background: var(--ocean-light); }
.date-popover-footer .btn-apply:disabled { background: rgba(0,0,0,0.15); cursor: not-allowed; }

/* "I'm not sure yet" row — sits at the top of the popover, under the header */
.date-popover-tbd {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.65rem 0.4rem;
  margin-bottom: 0.6rem;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.88rem; color: var(--charcoal);
  transition: background 0.15s;
  user-select: none;
  border-bottom: 1px solid var(--sand-dark);
  padding-bottom: 0.75rem;
}
.date-popover-tbd:hover { background: var(--sand); }
.date-popover-tbd .tbd-check {
  width: 16px; height: 16px;
  border: 1.5px solid rgba(0,0,0,0.3);
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
}
.date-popover-tbd.active { color: var(--teal); font-weight: 500; }
.date-popover-tbd.active .tbd-check {
  background: var(--teal); border-color: var(--teal);
}
.date-popover-tbd.active .tbd-check::after {
  content: '\2713'; color: white; font-size: 0.78rem; line-height: 1; font-weight: 700;
}

/* "Optional" prefix on form labels (same size as label, teal accent) */
.form-group label .lbl-meta {
  color: var(--teal);
}

@media (max-width: 480px) {
  .date-popover { left: -1rem; right: -1rem; min-width: unset; }
}

/* Gallery */
.gallery-strip-wrap { position: relative; }
.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; margin: 2rem 0; }
.gallery-strip img { width: 100%; aspect-ratio: 3 / 2; height: auto; object-fit: cover; transition: opacity 0.3s; display: block; }
.gallery-strip img:hover { opacity: 0.85; }
/* Arrow buttons — shown on mobile only */
.gallery-nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  color: #111;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  padding: 0;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.gallery-nav:active { transform: translateY(-50%) scale(0.95); }
.gallery-nav-prev { left: 0.75rem; }
.gallery-nav-next { right: 0.75rem; }

/* Plan */
.plan-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; }
.plan-card { padding: 2.5rem; background: var(--sand); border-radius: 12px; }
.plan-card h3 { margin-bottom: 0.8rem; }
.plan-card p { font-size: 0.9rem; color: var(--warm-gray); }

/* Image helpers */
.img-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.img-duo img { width: 100%; height: clamp(250px, 35vw, 450px); object-fit: cover; }
/* Chinese seigaiha wave divider — replaces the old plain line */
.section-divider,
.section-divider-center {
  width: 88px; height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 14' fill='none' stroke='%231f4788' stroke-width='1.1' stroke-linecap='round'><path d='M 0 12 A 11 11 0 0 1 22 12'/><path d='M 22 12 A 11 11 0 0 1 44 12'/><path d='M 44 12 A 11 11 0 0 1 66 12'/><path d='M 66 12 A 11 11 0 0 1 88 12'/><path d='M 5 12 A 6 6 0 0 1 17 12'/><path d='M 27 12 A 6 6 0 0 1 39 12'/><path d='M 49 12 A 6 6 0 0 1 61 12'/><path d='M 71 12 A 6 6 0 0 1 83 12'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  margin: 1.5rem 0;
}
.section-divider-center { margin: 1.5rem auto; background-position: center; }
/* Dark background variant — switches stroke to paper cream */
footer .section-divider,
footer .section-divider-center,
.hero .section-divider,
.hero .section-divider-center,
[data-divider="light"] .section-divider,
[data-divider="light"] .section-divider-center {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 14' fill='none' stroke='%23f4e9d0' stroke-width='1.1' stroke-linecap='round'><path d='M 0 12 A 11 11 0 0 1 22 12'/><path d='M 22 12 A 11 11 0 0 1 44 12'/><path d='M 44 12 A 11 11 0 0 1 66 12'/><path d='M 66 12 A 11 11 0 0 1 88 12'/><path d='M 5 12 A 6 6 0 0 1 17 12'/><path d='M 27 12 A 6 6 0 0 1 39 12'/><path d='M 49 12 A 6 6 0 0 1 61 12'/><path d='M 71 12 A 6 6 0 0 1 83 12'/></svg>");
}

/* ── Full-width seigaiha chapter strip ── */
.wave-strip {
  background: var(--paper);
  padding: clamp(3rem, 6vw, 4.5rem) 0 0;
  margin: 0;
  overflow: hidden;
}
.wave-strip-label {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-blue);
  margin: 0 0 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}
.wave-strip-label::before,
.wave-strip-label::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--ink-blue);
  opacity: 0.55;
}
.wave-strip-pattern {
  height: 44px;
  background-color: var(--paper);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 44' fill='none' stroke='%231f4788' stroke-width='1.3' stroke-linecap='round'><path d='M 1 42 A 24 24 0 0 1 49 42'/><path d='M 9 42 A 16 16 0 0 1 41 42'/><path d='M 17 42 A 8 8 0 0 1 33 42'/></svg>");
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: 50px 44px;
}

/* ── Package card top band (seigaiha) ── */
.package-card::before {
  content: '';
  display: block;
  height: 32px;
  background-color: var(--ink-blue);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 32' fill='none' stroke='%23f4e9d0' stroke-width='1.3' stroke-linecap='round'><path d='M 1 30 A 19 19 0 0 1 39 30'/><path d='M 7 30 A 13 13 0 0 1 33 30'/><path d='M 14 30 A 6 6 0 0 1 26 30'/></svg>");
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: 40px 32px;
}

/* Page switching */
.page { display: none; }
/* SPA page switches used to teleport (display none -> block). A short rise-and-fade
   entrance bridges the change. Note: while this runs, the page is a containing
   block for position:fixed descendants (any transform/translate does that) — at
   0.4s one-shot that window is too short to matter for the lightbox. */
@keyframes pageIn {
  from { opacity: 0; translate: 0 6px; }
  to { opacity: 1; translate: 0 0; }
}
.page.active { display: block; animation: pageIn 0.25s var(--ease-out); }

/* Animations */
/* Scroll reveal. Implemented as a one-shot animation (not a transition) so it
   never overrides an element's own hover transitions — the old transition-based
   version made card hovers run at 0.8s and killed their box-shadow easing.
   --stagger is set per-batch by the IntersectionObserver (30-80ms steps). */
.fade-in { opacity: 0; }
.count { font-variant-numeric: tabular-nums; }
.fade-in.visible {
  opacity: 1;
  animation: fadeUp 0.65s var(--ease-out) backwards;
  animation-delay: var(--stagger, 0ms);
}
@keyframes fadeUp {
  from { opacity: 0; translate: 0 18px; }
  to { opacity: 1; translate: 0 0; }
}
/* Section titles ride the scroll (Chrome/Edge): progress is tied to the
   heading's position in the viewport, so it tracks in both directions and
   settles once fully entered. Engines without scroll-driven animations keep
   the one-shot fadeUp above. */
@supports (animation-timeline: view()) {
  .page section h2.fade-in,
  .page section h2.fade-in.visible {
    opacity: 1;
    /* linear: progress is scroll position, so the curve would fight the finger */
    animation: titleRise linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 32%;
    animation-delay: 0ms;
  }
  @keyframes titleRise {
    from { opacity: 0; translate: 0 36px; }
    to { opacity: 1; translate: 0 0; }
  }
  @media (prefers-reduced-motion: reduce) {
    .page section h2.fade-in,
    .page section h2.fade-in.visible {
      animation: fadeOnly 0.25s ease both;
      animation-timeline: auto;
      translate: none;
    }
  }
}
/* Reveal is decoration for screens — never blank content on paper. */
@media print {
  .fade-in { opacity: 1; }
  .fade-in.visible, .page.active,
  .hero-text, .hero-partner, .hero-cta, .hero-tagline-bar { animation: none; }
}
/* Touch: taps fire false hovers — suppress the pointer-driven lifts/zooms. */
@media (hover: none) {
  .facility-card:hover, .package-card:hover, .reassurance-pillar:hover { transform: none; }
  .facility-card:hover img { transform: none; }
}
/* Reduced motion: keep the fades (they aid comprehension), drop the movement. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  @keyframes fadeOnly {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  .fade-in.visible, .page.active,
  .hero-text, .hero-partner, .hero-cta, .hero-tagline-bar {
    animation-name: fadeOnly;
    animation-duration: 0.25s;
    animation-delay: 0ms;
  }
  .mobile-menu, .date-popover { translate: 0 0; scale: 1; transition: opacity 0.2s; }
}

/* PerfectSwell inline logo */
.ps-logo-inline { height: 18px; width: auto; vertical-align: middle; margin: 0 0.2em; }
.ps-logo-nav { height: 16px; width: auto; opacity: 0.7; margin-left: 0.3rem; vertical-align: middle; }

/* Footer */
footer { background: var(--charcoal); color: rgba(255,255,255,0.6); padding: 0 0 2rem; position: relative; }
/* Chinese wave-curl ornamental strip at the very top of footer */
footer::before {
  content: '';
  display: block;
  width: 100%;
  height: 28px;
  background-color: var(--ink-blue);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 28' fill='none' stroke='%23f4e9d0' stroke-width='1.4' stroke-linecap='round'><path d='M 10 22 Q 10 6, 26 6 Q 40 6, 40 16 Q 40 22, 32 22 Q 26 22, 26 17'/><path d='M 52 22 Q 52 12, 64 12 Q 74 12, 74 20'/></svg>");
  background-repeat: repeat-x;
  background-position: center;
  background-size: 80px 28px;
  margin-bottom: 3.5rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .nav-logo { color: var(--white); display: inline-flex; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; max-width: 300px; }
.footer-col h4 {
  font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 1.2rem;
}
.footer-col a { display: block; color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; padding: 0.25rem 0; transition: color 0.3s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem;
  display: flex; justify-content: space-between; font-size: 0.8rem; align-items: center;
}
.footer-partner { display: flex; align-items: center; gap: 0.8rem; }
.footer-partner img { height: 20px; width: auto; filter: brightness(0) invert(1); opacity: 0.5; }
.footer-partner span { font-size: 0.75rem; opacity: 0.5; }
.footer-social { display: flex; gap: 1.5rem; }
.footer-social a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-social a:hover { color: var(--white); }

/* Mobile Nav */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
  z-index: 999; padding: 6rem 2rem 2rem; flex-direction: column; overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
.mobile-menu { opacity: 0; translate: 0 14px;
  transition: opacity 0.3s var(--ease-out), translate 0.3s var(--ease-out), display 0.3s allow-discrete; }
.mobile-menu.open { display: flex; opacity: 1; translate: 0 0; }
@starting-style { .mobile-menu.open { opacity: 0; translate: 0 14px; } }
.mobile-menu a {
  display: block; font-size: 1.35rem; font-family: 'Montserrat', sans-serif; font-weight: 600; letter-spacing: -0.02em;
  color: var(--charcoal); text-decoration: none; padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; font-size: 2rem; cursor: pointer; color: var(--charcoal); }

/* Responsive */
@media (max-width: 1024px) {
  .intro-grid, .wave-types-grid, .why-grid { grid-template-columns: 1fr 1fr; }
  .facilities-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .explore-grid-4 { grid-template-columns: 1fr 1fr; }
  .reassurance-pillars { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .packages-side { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .packages-side__label { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  /* Trip Inquiry hero: keep the surfer + lower-left detail in frame on narrow screens */
  .trip-inquiry-hero-img { object-position: left bottom !important; }
  /* Contact hero (mobile): smaller heading, nudged down so the nav doesn't cover it */
  #page-contact .page-hero-content h1, #page-contact .page-hero-content h2.page-title { font-size: 1.85rem; line-height: 1.25; }
  #page-contact .page-hero { padding-bottom: 2rem; }
  .intro-grid, .packages-grid, .explore-grid, .wave-types-grid,
  .why-grid, .contact-grid, .plan-grid, .natural-surf-inner,
  .reassurance-pillars { grid-template-columns: 1fr; gap: 0.7rem; }
  .reassurance-pillar { padding: 0.9rem 1rem; }
  .reassurance h2 { margin-bottom: 0.4rem; }
  .reassurance-lead { font-size: 1rem; margin-bottom: 0.9rem; }
  .contact-aside { padding-left: 0; }
  .facilities-grid, .audience-grid { grid-template-columns: 1fr 1fr; }
  /* Gallery — horizontal swipe carousel on mobile */
  .gallery-strip {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.5rem;
    padding: 0 1rem;
  }
  .gallery-strip::-webkit-scrollbar { display: none; }
  .gallery-strip img {
    flex: 0 0 88%;
    scroll-snap-align: center;
    height: auto;
  }
  .gallery-nav { display: flex; }
  .img-duo { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; }

  /* Hero — mobile: split stacks vertically, ratio 5:7 (slightly taller than 3:4) */
  .hero { aspect-ratio: 5 / 7; }
  .hero-wave { left: 0; right: 0; top: 0; bottom: 50%; }
  .hero-golf { left: 0; right: 0; top: 50%; bottom: 0; }
  .hero-text {
    bottom: 18%;
    left: 7%; right: 7%;
  }
  .hero-headline { font-size: 1.4rem; }
  .hero-sub { font-size: 0.62rem; }

  .hero-partner {
    top: 3%; left: 3%;
    right: auto; transform: none;
    padding: 0.35rem 0.7rem;
    gap: 0.4rem;
  }
  .hero-partner img { height: 16px; }
  .hero-partner span {
    font-size: 0.6rem;
    letter-spacing: 0.09em;
  }
  .hero-partner .partner-sep { margin: 0 0.1rem; }

  .hero-cta {
    padding: 0.95rem 1.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }
  .hero-cta::after { font-size: 0.9rem; }

  .hero-tagline-bar {
    font-size: 0.58rem;
    padding: 10px 14px;
    letter-spacing: 0.22em;
  }

  .natural-surf-img { height: 300px; }
  .recovery-grid { grid-template-columns: 1fr; }
  .explore-grid-4, .journal-grid {
    display: flex; grid-template-columns: none; gap: 0.75rem; margin-top: 1.5rem;
    overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; padding-bottom: 0.25rem;
  }
  .explore-grid-4::-webkit-scrollbar, .journal-grid::-webkit-scrollbar { display: none; }
  .explore-grid-4 .explore-card, .journal-grid .explore-card { flex: 0 0 72%; height: 240px; scroll-snap-align: start; }
  .explore-grid-4 .explore-card-overlay { padding: 0.9rem 1rem; }
  .explore-grid-4 .explore-card-overlay h3 { font-size: 1.05rem; margin-bottom: 0.15rem; }
  .explore-grid-4 .explore-card-overlay p { font-size: 0.75rem; }
  .explore-grid-4 .explore-card-cta { font-size: 0.62rem; margin-top: 0.5rem; letter-spacing: 0.14em; }

  /* Cloudinary content videos → 16:9 landscape on mobile */
  .content-video {
    height: auto !important;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  /* Tighten gap between surf-pool teaser video and Rates */
  .pool-teaser { padding-bottom: 1.8rem; }
  #rates { padding-top: 2.2rem; }
}
@media (max-width: 480px) {
  .facilities-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .audience-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .audience-card { padding: 1.5rem 1rem; }
  .audience-card h3 { font-size: 1rem; }
  .audience-card p { font-size: 0.78rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-row-3 { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
  /* Tighter images + text on small mobile so 2-col facility tiles look clean */
  .facility-card img { height: 140px; }
  .facility-card-body { padding: 1rem; }
  .facility-card h3 { font-size: 1rem; }
  .facility-card p { font-size: 0.8rem; }
  /* Very narrow phones — tighten partner badge further */
  .hero-partner {
    padding: 0.3rem 0.6rem;
    gap: 0.35rem;
  }
  .hero-partner img { height: 14px; }
  .hero-partner span {
    font-size: 0.52rem;
    letter-spacing: 0.08em;
  }
}
/* Mobile: Row 1 = Surf Shop + Board Rentals, Row 2 = Recovery & Wellness + Surf Café */
@media (max-width: 768px) {
  .facilities-grid .facility-card:nth-child(3) { order: 4; }
  .facilities-grid .facility-card:nth-child(4) { order: 3; }
  .facilities-grid .facility-card-body p { display: none; }
}

/* ==========================================================
   SURF POOL DETAIL PAGE — new styles
   ========================================================== */

/* 2. Headline dark block */
.wp-headline { background: var(--charcoal); color: var(--white); padding: clamp(3rem, 7vw, 5rem) 0 clamp(5rem, 10vw, 9rem); text-align: center; position: relative; overflow: hidden; min-height: clamp(480px, 60vh, 680px); display: flex; align-items: flex-start; }
.wp-headline-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.wp-headline-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); z-index: 1; }
.wp-headline > .container-narrow { position: relative; z-index: 2; width: 100%; }
.wp-headline .overline { color: var(--teal); }
.wp-headline h2 { color: var(--white); max-width: 860px; margin: 0 auto; }
.wp-headline p { color: rgba(255,255,255,0.7); max-width: 720px; margin: 1.2rem auto 0; }
.wp-powered { display: inline-flex; flex-direction: row; align-items: center; gap: 0.7rem; margin-top: clamp(1.25rem, 2.5vw, 1.75rem); padding: 0.5rem 1.1rem; border: 1px solid rgba(255,255,255,0.25); border-radius: 999px; background: rgba(255,255,255,0.05); backdrop-filter: blur(4px); }
.wp-powered-logo { width: clamp(22px, 3vw, 28px); height: auto; filter: brightness(0) invert(1); opacity: 0.95; flex-shrink: 0; }
.wp-powered-label { color: rgba(255,255,255,0.9); font-family: 'Inter', sans-serif; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; white-space: nowrap; }

/* 3. YouTube video feature */
.wp-video { background: var(--white); }
.wp-video-intro { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.wp-video-wrap { position: relative; width: 100%; max-width: 1200px; margin: 0 auto; aspect-ratio: 16 / 9; overflow: hidden; border-radius: var(--radius-media); box-shadow: 0 30px 80px rgba(10,77,104,0.15); }
.wp-video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.wp-video-caption { text-align: center; font-size: 0.85rem; color: var(--warm-gray); margin-top: 1.2rem; letter-spacing: 0.05em; }

/* 4. Sessions (Waco-style compact list) */
.wp-sessions { background: var(--white); }
.wp-sessions-header { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.session-list { display: flex; flex-direction: column; gap: 0.85rem; max-width: 860px; margin: 0 auto; }
.session-item { display: flex; align-items: stretch; background: var(--sand); border-radius: 12px; overflow: hidden; transition: transform 0.3s var(--transition), box-shadow 0.3s var(--transition); }
.session-item:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,77,104,0.08); }
.session-item-img { flex: 0 0 36%; max-width: 240px; align-self: stretch; background-size: cover; background-position: center; background-color: var(--sand-dark); min-height: 130px; }
.session-item-body { flex: 1; padding: 1.25rem 1.6rem; display: flex; flex-direction: column; justify-content: center; gap: 0.45rem; }
.session-head { display: flex; align-items: center; gap: 0.7rem; }
.session-head h3 { font-size: 1.2rem; margin: 0; letter-spacing: -0.01em; }
.session-item-body p { font-size: 0.92rem; color: var(--warm-gray); margin: 0; line-height: 1.5; max-width: none; }
.session-cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); margin-top: 0.2rem;
}
.session-cta::after {
  content: '\2192';
  transition: transform 0.3s ease;
  font-size: 0.95rem;
  line-height: 1;
}
.session-item:hover .session-cta::after { transform: translateX(5px); }
.s-icon { width: 14px; height: 14px; flex-shrink: 0; display: inline-block; }
.s-icon.easy { background: #2ea44f; border-radius: 50%; }
.s-icon.medium { background: #1a7ad1; }
.s-icon.hard { background: #1a1a1a; transform: rotate(45deg); width: 12px; height: 12px; margin: 1px; }
.s-icon.expert { width: 22px; height: 14px; background: transparent; position: relative; }
.s-icon.expert::before, .s-icon.expert::after { content: ''; position: absolute; top: 1px; width: 10px; height: 10px; background: #1a1a1a; transform: rotate(45deg); }
.s-icon.expert::before { left: 0; }
.s-icon.expert::after { left: 9px; }
.s-icon.private { background: #c4a265; transform: rotate(45deg); width: 12px; height: 12px; margin: 1px; border: 2px solid #c4a265; }
@media (max-width: 640px) {
  .session-item-img { flex: 0 0 36%; max-width: 150px; min-height: 130px; }
  .session-item-body { padding: 0.95rem 1.1rem; gap: 0.35rem; }
  .session-head h3 { font-size: 1rem; }
  .session-item-body p { font-size: 0.85rem; line-height: 1.45; }
  .s-icon { width: 12px; height: 12px; }
  .s-icon.hard { width: 10px; height: 10px; }
}

/* Session card images — desktop (default) */
.sim-learn        { background-image: url('/Assets/wavepool/%E8%AF%A6%E6%83%85%E9%A1%B5/learn%20to%20surf%20desktop-bg1600.webp'); }
.sim-beginner     { background-image: url('/Assets/wavepool/%E8%AF%A6%E6%83%85%E9%A1%B5/Beginner%20Desktop-bg1600.webp'); }
.sim-intermediate { background-image: url('/Assets/wavepool/%E8%AF%A6%E6%83%85%E9%A1%B5/intermidiate%20desktop-bg1600.webp'); }
.sim-advanced     { background-image: url('/Assets/wavepool/%E8%AF%A6%E6%83%85%E9%A1%B5/Advanced%20desktop-bg1600.webp'); }
.sim-barrel       { background-image: url('/Assets/wavepool/%E8%AF%A6%E6%83%85%E9%A1%B5/barrel%E2%80%94desktop-bg1600.webp'); }
.sim-air          { background-image: url('/Assets/wavepool/%E8%AF%A6%E6%83%85%E9%A1%B5/air%20desktop-bg1600.webp'); }
.sim-private      { background-image: url('/Assets/wavepool/%E8%AF%A6%E6%83%85%E9%A1%B5/private%20destop-bg1600.webp'); }

/* Session card images — mobile overrides */
@media (max-width: 640px) {
  .sim-learn        { background-image: url('/Assets/wavepool/%E8%AF%A6%E6%83%85%E9%A1%B5/learn%20to%20surf%20mobile-bg1600.webp'); }
  .sim-beginner     { background-image: url('/Assets/wavepool/%E8%AF%A6%E6%83%85%E9%A1%B5/Beginner%20mobile-bg1600.webp'); }
  .sim-intermediate { background-image: url('/Assets/wavepool/%E8%AF%A6%E6%83%85%E9%A1%B5/intermidiate%20mobile-bg1600.webp'); }
  .sim-advanced     { background-image: url('/Assets/wavepool/%E8%AF%A6%E6%83%85%E9%A1%B5/advanced%20mobile-bg1600.webp'); }
  .sim-barrel       { background-image: url('/Assets/wavepool/%E8%AF%A6%E6%83%85%E9%A1%B5/barrel%E2%80%94mobile-bg1600.webp'); }
  .sim-air          { background-image: url('/Assets/wavepool/%E8%AF%A6%E6%83%85%E9%A1%B5/air%20mobile-bg1600.webp'); }
  .sim-private      { background-image: url('/Assets/wavepool/%E8%AF%A6%E6%83%85%E9%A1%B5/private%20mobile-bg1600.webp'); }
}

/* 7. Pros trained here */
.wp-pros { background: var(--charcoal); color: var(--white); }
.wp-pros h2 { color: var(--white); }
.wp-pros .overline { color: var(--teal); }
.wp-pros .lead { color: rgba(255,255,255,0.7); }
.pros-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.2rem; margin-top: 3rem; }
.pro-card { text-align: center; padding: 1rem; }
.pro-photo { width: 140px; height: 140px; border-radius: 50%; background: #333; margin: 0 auto 1rem; background-size: cover; background-position: center; }
.pro-card h4 { font-size: 1rem; color: var(--white); margin-bottom: 0.3rem; }
.pro-card p { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin: 0 auto; }

/* 9. Pricing */
.wp-pricing { background: var(--white); text-align: center; }
.price-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin: 3rem auto 2rem; max-width: 980px; }
.price-card { background: var(--sand); padding: 2rem 1.6rem; border-radius: 12px; text-align: left; }
.price-card.featured { background: var(--charcoal); color: var(--white); }
.price-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.price-card.featured h4 { color: var(--white); }
.price-amount { font-family: 'Montserrat', sans-serif; font-size: 2.2rem; font-weight: 700; letter-spacing: -0.02em; margin: 1rem 0; }
.price-card p { font-size: 0.9rem; color: var(--warm-gray); margin-bottom: 1rem; max-width: none; }
.price-card.featured p { color: rgba(255,255,255,0.7); }

/* 5. Coaching */
.coaching-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
@media (max-width: 860px) { .coaching-grid { grid-template-columns: 1fr; } }
.coaching-media { width: 100%; aspect-ratio: 4 / 3; background: var(--sand-dark); border-radius: var(--radius-media); background-size: cover; background-position: center; }
#training-camp { scroll-margin-top: 90px; }
.coaching-list { list-style: none; padding: 0; margin: 1.5rem 0 2rem; }
.coaching-list li { padding: 0.9rem 0; border-bottom: 1px solid var(--sand-dark); color: var(--charcoal); font-size: 0.98rem; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.coaching-list li strong { font-weight: 600; }
.coaching-list li span { font-size: 0.82rem; color: var(--warm-gray); }

/* 6. Facilities - compact card variant for surf pool page */
.wp-facilities { background: var(--sand); }
.wp-fac-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-top: 3rem; }
.fac-card { background: var(--white); border-radius: 12px; overflow: hidden; }
.fac-card-img { width: 100%; aspect-ratio: 4 / 3; background: var(--sand-dark); background-size: cover; background-position: center; }
.fac-card-body { padding: 1.2rem 1.3rem 1.5rem; }
.fac-card-body h3 { font-size: 1.1rem; margin-bottom: 0.4rem; color: var(--charcoal); }
.fac-card-body p { font-size: 0.88rem; color: var(--warm-gray); max-width: none; }
@media (max-width: 900px) { .wp-fac-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }

/* 8. Gallery */
.wp-gallery { background: var(--white); }
.gallery-wrapper { position: relative; margin-top: 3rem; }
.gallery-grid { display: flex; gap: 0.75rem; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 0.5rem; scroll-padding: 0.75rem; }
.gallery-grid::-webkit-scrollbar { display: none; }
.gallery-item, .gallery-item.tall { flex: 0 0 auto; width: clamp(260px, 55%, 640px); aspect-ratio: 16 / 9; background: var(--sand-dark); background-size: cover; background-position: center; border-radius: var(--radius-media); overflow: hidden; scroll-snap-align: start; transition: transform 0.5s var(--transition); }
.gallery-item:hover { transform: scale(1.02); }
.gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.96); border: 1px solid rgba(10,77,104,0.1); box-shadow: 0 6px 20px rgba(10,77,104,0.15); color: var(--charcoal); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2; padding: 0; transition: background 0.2s var(--transition), box-shadow 0.2s var(--transition), transform 0.2s var(--transition); }
.gallery-nav:hover { background: var(--white); box-shadow: 0 8px 24px rgba(10,77,104,0.22); transform: translateY(-50%) scale(1.06); }
.gallery-nav svg { width: 18px; height: 18px; }
.gallery-prev { left: 0.5rem; }
.gallery-next { right: 0.5rem; }
@media (max-width: 800px) { .gallery-item, .gallery-item.tall { width: 88%; } .gallery-nav { display: none; } }

/* Tighten vertical rhythm on wavepool page (excludes custom-padded headline/CTA) */
#page-wavepool section:not(.wp-headline):not(.wp-final-cta) { padding: clamp(2.5rem, 5vw, 5rem) 0; }
#page-wavepool .wp-video-intro,
#page-wavepool .wp-sessions-header { margin-bottom: clamp(1.5rem, 3vw, 2.25rem); }
#page-wavepool .wp-video-caption { margin-top: 0.8rem; margin-bottom: 0; }

/* 10. Final CTA (surf pool variant) */
.wp-final-cta { position: relative; height: 60vh; min-height: 460px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.wp-final-cta .hero-bg { position: absolute; inset: 0; z-index: 0; }
.wp-final-cta .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.wp-final-cta .hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%); }
.wp-final-cta-content { position: relative; z-index: 2; text-align: center; color: var(--white); padding: 0 1.5rem; }
.wp-final-cta-content h2 { color: var(--white); margin-bottom: 1rem; }
.wp-final-cta-content p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 2rem; }

/* Make session cards clickable */
.session-item[onclick] { cursor: pointer; }
.session-item[onclick]:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(10,77,104,0.12); }

/* ==========================================================
   SESSION DETAIL PAGE — new styles
   ========================================================== */
/* Back link */
.sd-back { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--warm-gray); text-decoration: none; transition: color 0.3s; padding: 1.5rem 0 0; }
.sd-back::before { content: '\2190'; transition: transform 0.3s; }
.sd-back:hover { color: var(--ocean); }
.sd-back:hover::before { transform: translateX(-3px); }

/* Hero / intro strip */
.sd-hero { padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(3rem, 5vw, 4.5rem); background: var(--sand); }
.sd-hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
@media (max-width: 860px) { .sd-hero-grid { grid-template-columns: 1fr; gap: 0; } }
.sd-hero-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.8rem; }
.sd-hero-head .s-icon { width: 22px; height: 22px; }
.sd-hero-head .s-icon.hard { width: 18px; height: 18px; margin: 0; }
.sd-hero-head .s-icon.private { width: 18px; height: 18px; margin: 0; }
.sd-hero-head .s-icon.expert { width: 34px; height: 22px; }
.sd-hero-head .s-icon.expert::before, .sd-hero-head .s-icon.expert::after { width: 16px; height: 16px; top: 1px; }
.sd-hero-head .s-icon.expert::after { left: 14px; }
/* Caption under each video (used for Intermediate two-video layout) */
.sd-video-caption { text-align: center; color: rgba(255,255,255,0.75); font-family: 'Inter', sans-serif; font-size: 0.95rem; line-height: 1.55; margin: 1.4rem auto 0; max-width: 720px; padding: 0 1.5rem; }
.sd-video-caption strong { color: rgba(255,255,255,0.95); font-weight: 600; }
.sd-video-stack { display: flex; flex-direction: column; gap: clamp(2.5rem, 5vw, 4rem); }
/* Wave Menu callout (Private only) */
.sd-callout { background: var(--sand); border-left: 3px solid var(--teal); padding: 1.5rem 1.8rem; margin-top: 2rem; border-radius: 12px; }
.sd-callout h4 { font-family: 'Montserrat', sans-serif; font-size: 1.05rem; margin: 0 0 0.6rem; color: var(--ocean); }
.sd-callout p { font-size: 0.97rem; color: var(--charcoal); margin: 0; line-height: 1.6; }
.sd-hero-head h1, .sd-hero-head h2.page-title { font-size: clamp(2.4rem, 6vw, 4rem); margin: 0; }
.sd-hero .lead { font-size: 1.1rem; }
.sd-hero-intro { max-width: 560px; }
@media (max-width: 860px) { .sd-hero-intro { max-width: 720px; } }

/* Quick facts list */
.sd-facts { list-style: none; padding: 0; margin: 0; }
@media (max-width: 860px) { .sd-facts { margin-top: 2rem; max-width: 720px; } }
.sd-facts li { padding: 0.85rem 0; border-bottom: 1px solid var(--sand-dark); font-size: 0.98rem; color: var(--charcoal); display: flex; gap: 0.8rem; }
.sd-facts li::before { content: ''; flex: 0 0 6px; height: 6px; margin-top: 0.75rem; background: var(--teal); border-radius: 50%; }
.sd-facts li:last-child { border-bottom: none; }

/* Video */
.sd-video-section { background: var(--charcoal); padding: clamp(3rem, 6vw, 5rem) 0; }
.sd-video-wrap { position: relative; width: 100%; max-width: 1100px; margin: 0 auto; aspect-ratio: 16 / 9; overflow: hidden; border-radius: var(--radius-media); background: #000; box-shadow: 0 30px 80px rgba(0,0,0,0.4); }
.sd-video-wrap iframe, .sd-video-wrap video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; }
.sd-video-wrap--portrait { aspect-ratio: 1280 / 1706; max-width: 540px; }
.sd-video-wrap--portrait video { object-fit: contain; }
.sd-video-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); background: linear-gradient(135deg, #1f3b4d 0%, #0a4d68 100%); gap: 0.8rem; }
.sd-video-placeholder::before { content: '\25B6'; display: inline-flex; align-items: center; justify-content: center; width: 72px; height: 72px; border: 2px solid rgba(255,255,255,0.6); border-radius: 50%; font-size: 1.6rem; color: rgba(255,255,255,0.85); padding-left: 0.3rem; }
.sd-video-placeholder span { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; }
.sd-video-quote { text-align: center; color: rgba(255,255,255,0.85); font-family: 'Montserrat', sans-serif; font-style: italic; font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin: 2.5rem auto 0; max-width: 720px; line-height: 1.4; padding: 0 1.5rem; }
.sd-video-quote::before, .sd-video-quote::after { content: '"'; color: var(--teal); padding: 0 0.1em; }

/* Two-column content: experience + requirements */
.sd-body { padding: clamp(4rem, 7vw, 6rem) 0; }
.sd-body-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); }
@media (max-width: 860px) { .sd-body-grid { grid-template-columns: 1fr; gap: 3rem; } }
.sd-body h2 { margin-bottom: 0.6rem; }
.sd-body .overline { margin-bottom: 0.8rem; }
.sd-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.sd-list li { padding: 0.75rem 0 0.75rem 1.4rem; position: relative; font-size: 0.97rem; color: var(--charcoal); line-height: 1.55; border-bottom: 1px solid var(--sand-dark); }
.sd-list li:last-child { border-bottom: none; }
.sd-list li::before { content: ''; position: absolute; left: 0; top: 1.05rem; width: 8px; height: 2px; background: var(--teal); }

/* Included in your session */
.sd-included { background: var(--sand); padding: clamp(4rem, 7vw, 6rem) 0; }
.sd-inc-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.sd-inc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem 2rem; max-width: 980px; margin: 0 auto; }
@media (max-width: 720px) { .sd-inc-grid { grid-template-columns: 1fr; gap: 1.2rem; } }
.sd-inc-item { background: var(--white); padding: 1.8rem 1.8rem 2rem; border-radius: 12px; display: flex; gap: 1.2rem; align-items: flex-start; }
.sd-inc-icon { flex: 0 0 42px; width: 42px; height: 42px; color: var(--teal); margin-top: 0.1rem; }
.sd-inc-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.sd-inc-body h4 { font-size: 1.08rem; margin-bottom: 0.4rem; color: var(--charcoal); }
.sd-inc-body p { font-size: 0.92rem; color: var(--warm-gray); max-width: none; line-height: 1.55; margin: 0; }

/* Final CTA bar */
.sd-cta { background: var(--charcoal); padding: clamp(4rem, 7vw, 5.5rem) 0; text-align: center; }
.sd-cta h2 { color: var(--white); margin-bottom: 0.6rem; }
.sd-cta p { color: rgba(255,255,255,0.7); max-width: 540px; margin: 0 auto 2rem; }
.sd-cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* From the journal (homepage) */
.journal-strip { background: var(--sand); }
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.journal-grid .explore-card { height: 300px; }
.journal-all { text-align: center; margin-top: 2.5rem; }
@media (max-width: 900px) { .journal-grid { grid-template-columns: 1fr 1fr; gap: 1rem; } .journal-grid .explore-card { height: 220px; } }
/* Phone: one-row swipe strip (declared after the base rule above so it wins the cascade) */
@media (max-width: 768px) {
  .journal-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; gap: 0.75rem; margin-top: 1.5rem; padding-bottom: 0.25rem; }
  .journal-grid::-webkit-scrollbar { display: none; }
  .journal-grid .explore-card { flex: 0 0 72%; height: 240px; scroll-snap-align: start; }
}
/* Phones: the two compact package cards stack (declared last so it beats the tablet two-up rule) */
@media (max-width: 560px) { .packages-side { grid-template-columns: 1fr; } }
