    /* ===== RESET & BASE ===== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

    :root {
      --deep-ocean: #0A6E7A;
      --bright-aqua: #00B4D8;
      --sky-aqua: #48CAE4;
      --foam: #CAF0F8;
      --sand: #FFFBF5;
      --warm-white: #FFFFFF;
      --coral: #FF6B5A;
      --coral-hover: #FF5242;
      --sunset: #FF9E5E;
      --navy: #0B1D2E;
      --navy-light: #1A3A52;
      --deep-navy: #0A2540;
      --text-primary: #0B1D2E;
      --text-secondary: #3D5A73;
      --text-light: #6B8BA4;
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 22px;
      --radius-xl: 32px;
      --shadow-soft: 0 4px 24px rgba(10, 110, 122, 0.08);
      --shadow-medium: 0 8px 40px rgba(10, 110, 122, 0.12);
      --shadow-strong: 0 16px 56px rgba(10, 110, 122, 0.18);
      --shadow-glow: 0 0 40px rgba(0, 180, 216, 0.25);
    }

    body {
      font-family: 'Outfit', sans-serif;
      color: var(--text-primary);
      background: var(--sand);
      overflow-x: hidden;
      line-height: 1.6;
    }

    h1, h2, h3, h4 {
      font-family: 'Fraunces', serif;
      line-height: 1.15;
      font-weight: 700;
    }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; border: none; font-family: inherit; }
    input, select, textarea { font-family: inherit; }

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

    /* ===== NAVIGATION ===== */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 16px 0;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav.scrolled {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: 10px 0;
      box-shadow: 0 1px 20px rgba(10, 110, 122, 0.08);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Fraunces', serif;
      font-weight: 800;
      font-size: 1.15rem;
      color: var(--warm-white);
      transition: color 0.4s;
    }

    .nav.scrolled .nav-logo { color: var(--deep-ocean); }

    .nav-logo-icon {
      width: 38px;
      height: 38px;
      background: var(--coral);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.05rem;
      box-shadow: 0 2px 12px rgba(255, 107, 90, 0.35);
      flex-shrink: 0;
    }

    .nav-links {
      display: none;
      list-style: none;
      gap: 28px;
      align-items: center;
    }

    .nav-links a {
      font-weight: 500;
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.85);
      letter-spacing: 0.02em;
      transition: color 0.3s;
    }

    .nav.scrolled .nav-links a { color: var(--text-secondary); }
    .nav-links a:hover { color: var(--coral); }

    .nav-cta-link {
      padding: 10px 22px !important;
      background: var(--coral);
      color: white !important;
      border-radius: 50px;
      font-weight: 600 !important;
      font-size: 0.85rem !important;
      letter-spacing: 0.02em;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 2px 12px rgba(255, 107, 90, 0.3);
    }

    .nav-cta-link:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 20px rgba(255, 107, 90, 0.4);
      color: white !important;
    }

    .nav-mobile-btn {
      display: flex;
      flex-direction: column;
      gap: 5px;
      background: none;
      padding: 4px;
    }

    .nav-mobile-btn span {
      width: 24px;
      height: 2px;
      background: white;
      border-radius: 2px;
      transition: background 0.3s;
    }

    .nav.scrolled .nav-mobile-btn span { background: var(--navy); }

    /* Mobile Menu */
    .mobile-menu {
      position: fixed;
      inset: 0;
      background: var(--navy);
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 24px;
      transform: translateX(100%);
      transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mobile-menu.open { transform: translateX(0); }

    .mobile-menu a {
      font-family: 'Fraunces', serif;
      font-size: 1.6rem;
      color: white;
      font-weight: 600;
      opacity: 0.85;
      transition: opacity 0.2s;
    }

    .mobile-menu a:hover { opacity: 1; }

    .mobile-menu-close {
      position: absolute;
      top: 20px;
      right: 24px;
      background: none;
      color: white;
      font-size: 2rem;
      line-height: 1;
    }

    @media (min-width: 900px) {
      .nav-links { display: flex; }
      .nav-mobile-btn { display: none; }
    }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      min-height: 100vh;
      min-height: 100svh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      background: #064E5C;
    }

    .hero-video-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }

    .hero-video-bg video,
    .hero-video-bg img {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Gradient overlay on top of video for text readability */
    .hero-video-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(180deg, rgba(6, 78, 92, 0.55) 0%, rgba(10, 126, 140, 0.4) 40%, rgba(0, 180, 216, 0.35) 70%, rgba(6, 78, 92, 0.6) 100%),
        radial-gradient(ellipse 80% 50% at 20% 80%, rgba(0, 180, 216, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(144, 224, 239, 0.2) 0%, transparent 50%);
    }

    /* Fallback gradient if video fails to load */
    .hero-video-fallback {
      position: absolute;
      inset: 0;
      background: linear-gradient(165deg, #064E5C 0%, #0A7E8C 30%, #00B4D8 60%, #48CAE4 85%, #90E0EF 100%);
      z-index: 0;
    }

    /* Animated wave layers */
    .hero-waves {
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      height: 120px;
      overflow: hidden;
    }

    .hero-wave {
      position: absolute;
      bottom: 0;
      left: -5%;
      width: 110%;
    }

    .hero-wave svg { display: block; width: 100%; }

    .hero-wave:nth-child(1) svg { fill: rgba(255, 251, 245, 0.15); }
    .hero-wave:nth-child(2) svg { fill: rgba(255, 251, 245, 0.3); }
    .hero-wave:nth-child(3) svg { fill: var(--sand); }

    .hero-wave:nth-child(1) { animation: waveSlide 8s ease-in-out infinite; bottom: 4px; }
    .hero-wave:nth-child(2) { animation: waveSlide 6s ease-in-out infinite reverse; bottom: 0px; }
    .hero-wave:nth-child(3) { bottom: -2px; }

    @keyframes waveSlide {
      0%, 100% { transform: translateX(0); }
      50% { transform: translateX(-20px); }
    }

    /* Floating particles */
    .hero-particles {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .particle {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
      animation: particleFloat linear infinite;
    }

    @keyframes particleFloat {
      0% { transform: translateY(100vh) scale(0); opacity: 0; }
      10% { opacity: 1; }
      90% { opacity: 1; }
      100% { transform: translateY(-10vh) scale(1); opacity: 0; }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 120px 20px 160px;
      max-width: 800px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50px;
      padding: 8px 20px;
      font-size: 0.8rem;
      font-weight: 600;
      color: white;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 28px;
    }

    .hero-badge-dot {
      width: 8px;
      height: 8px;
      background: #4ADE80;
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.3); }
    }

    .hero h1 {
      font-size: clamp(2.8rem, 8vw, 5.2rem);
      color: white;
      margin-bottom: 20px;
      font-weight: 900;
      letter-spacing: -0.02em;
      text-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
    }

    .hero-subtitle {
      font-size: clamp(1rem, 2.5vw, 1.25rem);
      color: rgba(255, 255, 255, 0.9);
      font-weight: 400;
      max-width: 560px;
      margin: 0 auto 12px;
      line-height: 1.6;
    }

    .hero-desc {
      font-size: clamp(0.88rem, 2vw, 1rem);
      color: rgba(255, 255, 255, 0.7);
      max-width: 480px;
      margin: 0 auto 36px;
      line-height: 1.55;
    }

    .hero-buttons {
      display: flex;
      flex-direction: column;
      gap: 14px;
      align-items: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 36px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: 0.01em;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--coral);
      color: white;
      box-shadow: 0 4px 20px rgba(255, 107, 90, 0.4);
    }

    .btn-primary:hover {
      background: var(--coral-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(255, 107, 90, 0.5);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.15);
      color: white;
      border: 2px solid rgba(255, 255, 255, 0.35);
      backdrop-filter: blur(8px);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.25);
      border-color: rgba(255, 255, 255, 0.5);
      transform: translateY(-2px);
    }

    .btn-dark {
      background: var(--navy);
      color: white;
      box-shadow: 0 4px 20px rgba(11, 29, 46, 0.3);
    }

    .btn-dark:hover {
      background: var(--navy-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(11, 29, 46, 0.35);
    }

    .btn-outline {
      background: transparent;
      color: var(--deep-ocean);
      border: 2px solid var(--deep-ocean);
    }

    .btn-outline:hover {
      background: var(--deep-ocean);
      color: white;
      transform: translateY(-2px);
    }

    .btn-white {
      background: white;
      color: var(--navy);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

    @media (min-width: 480px) {
      .hero-buttons { flex-direction: row; justify-content: center; }
    }

    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 36px;
      margin-top: 52px;
      flex-wrap: wrap;
    }

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

    .hero-stat-value {
      font-family: 'Fraunces', serif;
      font-size: 1.8rem;
      font-weight: 800;
    }

    .hero-stat-label {
      font-size: 0.75rem;
      font-weight: 500;
      opacity: 0.75;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-top: 2px;
    }

    /* ===== SECTION STYLING ===== */
    section { padding: 80px 0; }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--deep-ocean);
      margin-bottom: 14px;
    }

    .section-label::before {
      content: '';
      width: 24px;
      height: 2px;
      background: var(--coral);
      border-radius: 2px;
    }

    .section-title {
      font-size: clamp(1.9rem, 4vw, 2.8rem);
      color: var(--navy);
      margin-bottom: 16px;
      letter-spacing: -0.01em;
    }

    .section-subtitle {
      font-size: 1.05rem;
      color: var(--text-secondary);
      max-width: 560px;
      line-height: 1.65;
    }

    .section-header { margin-bottom: 48px; }
    .section-header-center { text-align: center; }
    .section-header-center .section-subtitle { margin: 0 auto; }

    /* ===== FEATURED VIDEOS ===== */
    .videos { background: var(--sand); }

    .video-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .video-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: white;
      box-shadow: var(--shadow-soft);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .video-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-strong);
    }

    .video-thumb {
      position: relative;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background: linear-gradient(135deg, var(--deep-ocean), var(--bright-aqua));
    }

    .video-thumb-inner {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 8px;
    }

    .video-thumb-emoji {
      font-size: 2.5rem;
      filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
    }

    .video-thumb-label {
      color: rgba(255,255,255,0.7);
      font-size: 0.8rem;
      font-weight: 500;
    }

    .video-play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 60px;
      height: 60px;
      background: rgba(255, 255, 255, 0.95);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
      transition: all 0.3s;
    }

    .video-play-btn::after {
      content: '';
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 9px 0 9px 16px;
      border-color: transparent transparent transparent var(--deep-ocean);
      margin-left: 3px;
    }

    .video-card:hover .video-play-btn {
      transform: translate(-50%, -50%) scale(1.1);
      box-shadow: 0 6px 32px rgba(0, 0, 0, 0.2);
    }

    .video-duration {
      position: absolute;
      bottom: 12px;
      right: 12px;
      background: rgba(0, 0, 0, 0.7);
      color: white;
      padding: 4px 10px;
      border-radius: 6px;
      font-size: 0.75rem;
      font-weight: 600;
    }

    .video-info { padding: 22px; }

    .video-tag {
      display: inline-block;
      padding: 4px 12px;
      background: var(--foam);
      color: var(--deep-ocean);
      border-radius: 50px;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 10px;
    }

    .video-title {
      font-family: 'Outfit', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 6px;
      color: var(--navy);
      line-height: 1.3;
    }

    .video-desc {
      font-size: 0.85rem;
      color: var(--text-secondary);
      margin-bottom: 14px;
      line-height: 1.5;
    }

    .video-card-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--deep-ocean);
      transition: color 0.2s;
    }

    .video-card-btn:hover { color: var(--coral); }

    .video-card-btn svg { transition: transform 0.2s; }
    .video-card-btn:hover svg { transform: translateX(3px); }

    @media (min-width: 640px) {
      .video-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (min-width: 960px) {
      .video-grid { grid-template-columns: repeat(3, 1fr); }
    }

    /* ===== WHAT IS CRAB ISLAND ===== */
    .about {
      background: white;
      position: relative;
      overflow: hidden;
    }

    .about::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -100px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 180, 216, 0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
      align-items: center;
    }

    .about-image {
      position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
      aspect-ratio: 4 / 3;
      background: linear-gradient(135deg, #48CAE4, #00B4D8, #0A6E7A);
    }

    .about-image-inner {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .about-image-decor {
      font-size: 5rem;
      line-height: 1;
      opacity: 0.15;
      position: absolute;
    }

    .about-image-text {
      position: relative;
      z-index: 1;
      color: white;
      text-align: center;
      padding: 30px;
    }

    .about-image-text h3 {
      font-size: 1.4rem;
      margin-bottom: 8px;
    }

    .about-image-text p {
      font-size: 0.92rem;
      opacity: 0.85;
      max-width: 280px;
    }

    .about-features {
      display: flex;
      flex-direction: column;
      gap: 20px;
      list-style: none;
      margin: 28px 0;
    }

    .about-feature {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .about-feature-icon {
      width: 48px;
      height: 48px;
      min-width: 48px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      background: var(--foam);
    }

    .about-feature h4 {
      font-family: 'Outfit', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 4px;
      color: var(--navy);
    }

    .about-feature p {
      font-size: 0.88rem;
      color: var(--text-secondary);
      line-height: 1.55;
    }

    @media (min-width: 768px) {
      .about-grid { grid-template-columns: 1fr 1fr; }
    }

    /* ===== PLAN YOUR DAY ===== */
    .plan {
      background: var(--sand);
    }

    .plan-cards {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .plan-card {
      background: white;
      border-radius: var(--radius-lg);
      padding: 32px 26px;
      box-shadow: var(--shadow-soft);
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
    }

    .plan-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--bright-aqua), var(--deep-ocean));
      opacity: 0;
      transition: opacity 0.3s;
    }

    .plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); }
    .plan-card:hover::before { opacity: 1; }

    .plan-card-icon {
      width: 54px;
      height: 54px;
      border-radius: 16px;
      background: var(--foam);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 18px;
    }

    .plan-card h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--navy);
    }

    .plan-card p {
      font-size: 0.88rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    @media (min-width: 640px) {
      .plan-cards { grid-template-columns: repeat(2, 1fr); }
    }
    @media (min-width: 960px) {
      .plan-cards { grid-template-columns: repeat(4, 1fr); }
    }

    /* ===== BOAT RENTALS CTA ===== */
    .rentals {
      background: linear-gradient(165deg, #064E5C 0%, #0A7E8C 40%, #00B4D8 100%);
      position: relative;
      overflow: hidden;
    }

    .rentals::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(72, 202, 228, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 10% 20%, rgba(255, 158, 94, 0.1) 0%, transparent 50%);
    }

    .rentals-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
      align-items: center;
    }

    .rentals-content { color: white; }
    .rentals-content .section-label { color: rgba(255, 255, 255, 0.7); }
    .rentals-content .section-label::before { background: var(--sunset); }
    .rentals-content .section-title { color: white; }
    .rentals-content .section-subtitle { color: rgba(255, 255, 255, 0.8); max-width: 100%; }

    .rentals-perks {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 28px;
      list-style: none;
    }

    .rentals-perks li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.92rem;
      color: rgba(255, 255, 255, 0.9);
    }

    .perk-check {
      width: 28px;
      height: 28px;
      min-width: 28px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 700;
      color: #4ADE80;
    }

    .rentals-form-card {
      background: white;
      border-radius: var(--radius-xl);
      padding: 36px 28px;
      box-shadow: var(--shadow-strong);
    }

    .rentals-form-card h3 {
      font-size: 1.35rem;
      margin-bottom: 6px;
      color: var(--navy);
    }

    .rentals-form-card > p {
      font-size: 0.88rem;
      color: var(--text-secondary);
      margin-bottom: 24px;
    }

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

    .form-group label {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--text-secondary);
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .form-input {
      width: 100%;
      padding: 14px 18px;
      border: 2px solid #E8EFF4;
      border-radius: var(--radius-md);
      font-size: 0.95rem;
      color: var(--text-primary);
      background: #F8FBFD;
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
    }

    .form-input:focus {
      border-color: var(--bright-aqua);
      box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
      background: white;
    }

    .form-input::placeholder { color: #A0B8CB; }

    select.form-input {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B8BA4' stroke-width='2' fill='none'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      background-color: #F8FBFD;
      padding-right: 44px;
    }

    .form-submit { width: 100%; margin-top: 8px; }

    .form-note {
      text-align: center;
      font-size: 0.76rem;
      color: var(--text-light);
      margin-top: 14px;
    }

    @media (min-width: 768px) {
      .rentals-inner { grid-template-columns: 1fr 1fr; }
      .rentals-form-card { padding: 40px 36px; }
    }

    /* ===== BUSINESS PROMOTION ===== */
    .promo {
      background: white;
      position: relative;
      overflow: hidden;
    }

    .promo-content-wrap {
      margin-bottom: 48px;
    }

    .promo-cards {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin-bottom: 48px;
    }

    .promo-card {
      background: var(--sand);
      border-radius: var(--radius-lg);
      padding: 32px 26px;
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      border: 1px solid rgba(10, 110, 122, 0.06);
    }

    .promo-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-medium);
      border-color: rgba(10, 110, 122, 0.12);
    }

    .promo-card-icon {
      width: 54px;
      height: 54px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--bright-aqua), var(--deep-ocean));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 18px;
      color: white;
    }

    .promo-card h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--navy);
    }

    .promo-card p {
      font-size: 0.88rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    .promo-cta-box {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      border-radius: var(--radius-xl);
      padding: 48px 28px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .promo-cta-box::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 50% 40% at 90% 10%, rgba(255, 107, 90, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 10% 90%, rgba(0, 180, 216, 0.15) 0%, transparent 60%);
    }

    .promo-cta-content {
      position: relative;
      z-index: 1;
    }

    .promo-stats {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin: 28px 0 32px;
      flex-wrap: wrap;
    }

    .promo-stat { text-align: center; color: white; }

    .promo-stat-value {
      font-family: 'Fraunces', serif;
      font-size: 2rem;
      font-weight: 800;
      color: var(--bright-aqua);
    }

    .promo-stat-label {
      font-size: 0.75rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.55);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-top: 2px;
    }

    .promo-cta-row {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: center;
    }

    @media (min-width: 480px) {
      .promo-cta-row { flex-direction: row; justify-content: center; }
    }

    @media (min-width: 640px) {
      .promo-cards { grid-template-columns: repeat(3, 1fr); }
    }

    @media (min-width: 768px) {
      .promo-cta-box { padding: 64px 48px; }
    }

    /* ===== EMAIL SIGNUP ===== */
    .signup {
      background: var(--foam);
      position: relative;
      overflow: hidden;
    }

    .signup::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 100%;
      background: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(0, 180, 216, 0.12) 0%, transparent 60%);
    }

    .signup-inner {
      position: relative;
      z-index: 1;
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
    }

    .signup-icon { font-size: 2.8rem; margin-bottom: 20px; }

    .signup-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 32px;
    }

    .signup-input {
      flex: 1;
      padding: 16px 22px;
      border: 2px solid rgba(10, 110, 122, 0.12);
      border-radius: 50px;
      font-size: 1rem;
      color: var(--text-primary);
      background: white;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .signup-input:focus {
      border-color: var(--bright-aqua);
      box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
    }

    .signup-input::placeholder { color: #A0B8CB; }

    .signup-privacy {
      font-size: 0.78rem;
      color: var(--text-light);
      margin-top: 12px;
    }

    @media (min-width: 520px) {
      .signup-form { flex-direction: row; }
    }

    /* ===== BRAND / TRUST ===== */
    .trust {
      background: var(--sand);
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .trust-card {
      background: white;
      border-radius: var(--radius-lg);
      padding: 30px 24px;
      text-align: center;
      box-shadow: var(--shadow-soft);
      transition: all 0.3s;
    }

    .trust-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-medium);
    }

    .trust-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--foam);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      font-size: 1.5rem;
    }

    .trust-value {
      font-family: 'Fraunces', serif;
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--deep-ocean);
      margin-bottom: 4px;
    }

    .trust-label {
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--text-secondary);
    }

    @media (min-width: 640px) {
      .trust-grid { grid-template-columns: repeat(4, 1fr); }
    }

    /* ===== FOOTER ===== */
    .footer {
      background: var(--navy);
      color: rgba(255, 255, 255, 0.7);
      padding: 60px 0 32px;
    }

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

    .footer-brand .nav-logo { margin-bottom: 16px; font-size: 1.1rem; }
    .footer-brand p { font-size: 0.88rem; line-height: 1.6; max-width: 300px; }

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

    .footer-social a {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.7);
    }

    .footer-social a:hover {
      background: var(--bright-aqua);
      color: white;
      transform: translateY(-2px);
    }

    .footer-col h4 {
      font-family: 'Outfit', sans-serif;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: white;
      margin-bottom: 18px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-col a { font-size: 0.88rem; transition: color 0.2s; }
    .footer-col a:hover { color: var(--bright-aqua); }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: center;
      text-align: center;
      font-size: 0.8rem;
    }

    .footer-bottom-links {
      display: flex;
      gap: 20px;
    }

    .footer-bottom-links a:hover { color: var(--bright-aqua); }

    @media (min-width: 640px) {
      .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
      .footer-bottom { flex-direction: row; justify-content: space-between; }
    }

    @media (min-width: 960px) {
      .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
    }

    /* ===== SCROLL ANIMATIONS ===== */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ===== RESPONSIVE SPACING ===== */
    @media (min-width: 768px) {
      section { padding: 110px 0; }
      .container { padding: 0 40px; }
    }

    @media (min-width: 1024px) {
      section { padding: 130px 0; }
    }

    /* Smooth scrollbar */
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: var(--sand); }
    ::-webkit-scrollbar-thumb { background: var(--sky-aqua); border-radius: 4px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--bright-aqua); }

    /* ===== LIVE CONDITIONS BANNER ===== */
    .conditions-bar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1100;
      background: var(--navy);
      color: white;
      font-size: 0.76rem;
      font-weight: 500;
      transition: transform 0.3s;
      overflow: hidden;
    }

    .conditions-bar .container { position: relative; }

    .conditions-bar.hidden { transform: translateY(-100%); }

    .conditions-bar-inner {
      display: flex;
      align-items: center;
      gap: 6px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding: 9px 20px;
      max-width: 100%;
      justify-content: center;
      flex-wrap: wrap;
    }

    .conditions-bar-inner::-webkit-scrollbar { display: none; }

    .conditions-item {
      display: flex;
      align-items: center;
      gap: 5px;
      white-space: nowrap;
      padding: 3px 10px;
      background: rgba(255,255,255,0.07);
      border-radius: 50px;
      font-size: 0.72rem;
      flex-shrink: 0;
    }

    .conditions-item span { opacity: 0.55; font-size: 0.68rem; }

    .conditions-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      display: inline-block;
      flex-shrink: 0;
    }

    .conditions-dot.green { background: #4ADE80; box-shadow: 0 0 6px rgba(74, 222, 128, 0.5); }
    .conditions-dot.yellow { background: #FBBF24; box-shadow: 0 0 6px rgba(251, 191, 36, 0.5); }
    .conditions-dot.red { background: #F87171; box-shadow: 0 0 6px rgba(248, 113, 113, 0.5); }

    .flag-indicator {
      font-size: 0.9rem;
      line-height: 1;
      opacity: 1 !important;
    }

    .flag-indicator.flag-green { color: #4ADE80; }
    .flag-indicator.flag-yellow { color: #FBBF24; }
    .flag-indicator.flag-red { color: #F87171; }
    .flag-indicator.flag-double-red { color: #F87171; text-shadow: 0 0 6px rgba(248,113,113,0.8); }
    .flag-indicator.flag-purple { color: #C084FC; }

    .conditions-close {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      color: rgba(255,255,255,0.4);
      font-size: 1rem;
      padding: 0 4px;
      flex-shrink: 0;
      transition: color 0.2s;
      z-index: 2;
    }

    .conditions-close:hover { color: white; }

    body.has-conditions-bar .nav { top: 38px; }
    body.has-conditions-bar .hero { margin-top: 38px; }

    @media (max-width: 600px) {
      .conditions-item.hide-mobile { display: none; }
    }

    @media (max-width: 900px) {
      .conditions-bar-inner { flex-wrap: nowrap; justify-content: flex-start; }
    }

    /* ===== AS SEEN ON ===== */
    .seen-on {
      background: white;
      padding: 48px 0;
      border-bottom: 1px solid rgba(10, 110, 122, 0.06);
    }

    .seen-on-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .seen-on-label {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-light);
      white-space: nowrap;
    }

    .seen-on-logos {
      display: flex;
      align-items: center;
      gap: 36px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .seen-on-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--text-light);
      font-weight: 700;
      font-size: 0.95rem;
      opacity: 0.5;
      transition: opacity 0.3s;
    }

    .seen-on-logo:hover { opacity: 0.8; }
    .seen-on-logo svg { flex-shrink: 0; }

    /* ===== PACKING CHECKLIST ===== */
    .checklist-section { background: white; }

    .checklist-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .checklist-card {
      background: var(--sand);
      border-radius: 1rem;
      padding: 1.5rem;
    }

    .checklist-card h3 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      color: var(--dark);
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid var(--bright-aqua);
    }

    .checklist { list-style: none; padding: 0; margin: 0; }

    .checklist li {
      margin-bottom: 0.5rem;
    }

    .checklist label {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      cursor: pointer;
      font-size: 0.9rem;
      color: #444;
      transition: color 0.2s;
    }

    .checklist input[type="checkbox"] {
      width: 18px;
      height: 18px;
      accent-color: var(--bright-aqua);
      flex-shrink: 0;
    }

    .checklist input:checked + span {
      text-decoration: line-through;
      color: #aaa;
    }

    @media (max-width: 768px) {
      .checklist-grid { grid-template-columns: 1fr; }
    }

    /* ===== RULES & SAFETY ===== */
    .rules-section { background: var(--sand); }

    .rules-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .rule-card {
      background: white;
      border-radius: 1rem;
      padding: 1.5rem;
      border-top: 4px solid;
    }

    .rule-required { border-color: #e53e3e; }
    .rule-safety { border-color: #d69e2e; }
    .rule-respect { border-color: #38a169; }

    .rule-icon {
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }

    .rule-card h3 {
      font-family: var(--font-display);
      font-size: 1.05rem;
      color: var(--dark);
      margin-bottom: 0.75rem;
    }

    .rule-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .rule-card li {
      font-size: 0.88rem;
      color: #444;
      padding: 0.4rem 0;
      border-bottom: 1px solid #f0f0f0;
      padding-left: 1.2rem;
      position: relative;
      line-height: 1.5;
    }

    .rule-card li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: var(--bright-aqua);
      font-weight: 700;
    }

    @media (max-width: 768px) {
      .rules-grid { grid-template-columns: 1fr; }
    }

    /* ===== WATER SPORTS ===== */
    .sports-section { background: white; }

    .sports-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .sport-card {
      background: var(--sand);
      border-radius: 1rem;
      padding: 1.5rem;
      text-align: center;
      transition: transform 0.3s;
    }

    .sport-card:hover { transform: translateY(-4px); }

    .sport-emoji { font-size: 2.5rem; margin-bottom: 0.75rem; }

    .sport-card h3 {
      font-family: var(--font-display);
      font-size: 1.05rem;
      color: var(--dark);
      margin-bottom: 0.5rem;
    }

    .sport-card p {
      font-size: 0.85rem;
      color: #555;
      line-height: 1.6;
      margin-bottom: 0.75rem;
    }

    .sport-level {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--bright-aqua);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    @media (max-width: 768px) {
      .sports-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .sports-grid { grid-template-columns: 1fr; }
    }

    /* ===== MARINE LIFE ===== */
    .marine-section { background: var(--deep-navy); color: white; }
    .marine-section .section-label { color: var(--bright-aqua); }
    .marine-section .section-title { color: white; }
    .marine-section .section-subtitle { color: rgba(255,255,255,0.7); }

    .marine-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .marine-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 1rem;
      padding: 1.5rem;
      text-align: center;
      transition: transform 0.3s, background 0.3s;
    }

    .marine-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }

    .marine-emoji { font-size: 2.5rem; margin-bottom: 0.75rem; }

    .marine-card h3 {
      font-family: var(--font-display);
      font-size: 1.05rem;
      color: white;
      margin-bottom: 0.5rem;
    }

    .marine-card p {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.7);
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .marine-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .marine-grid { grid-template-columns: 1fr; }
    }

    /* ===== PHOTO GALLERY ===== */
    .gallery { background: white; }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
    }

    .gallery-item {
      position: relative;
      aspect-ratio: 1;
      border-radius: var(--radius-md);
      overflow: hidden;
      cursor: pointer;
      background: linear-gradient(135deg, var(--bright-aqua), var(--deep-ocean));
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .gallery-item:hover img { transform: scale(1.08); }

    .gallery-item-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(11, 29, 46, 0.6) 100%);
      opacity: 0;
      transition: opacity 0.3s;
      display: flex;
      align-items: flex-end;
      padding: 16px;
    }

    .gallery-item:hover .gallery-item-overlay { opacity: 1; }

    .gallery-item-overlay span {
      color: white;
      font-size: 0.85rem;
      font-weight: 600;
    }

    .gallery-item.featured {
      grid-column: span 2;
      aspect-ratio: 2 / 1;
    }

    .gallery-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      color: rgba(255,255,255,0.3);
    }

    @media (min-width: 640px) {
      .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
      .gallery-item.featured { grid-column: span 1; aspect-ratio: 1; }
    }

    @media (min-width: 960px) {
      .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
    }

    /* Lightbox */
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 10000;
      background: rgba(11, 29, 46, 0.95);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 40px;
      backdrop-filter: blur(10px);
    }

    .lightbox.active { display: flex; }

    .lightbox-close {
      position: absolute;
      top: 20px;
      right: 24px;
      background: none;
      color: white;
      font-size: 2rem;
    }

    .lightbox-img {
      max-width: 90vw;
      max-height: 85vh;
      border-radius: var(--radius-lg);
      object-fit: contain;
    }

    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.15);
      color: white;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      transition: background 0.2s;
    }

    .lightbox-nav:hover { background: rgba(255,255,255,0.3); }
    .lightbox-prev { left: 20px; }
    .lightbox-next { right: 20px; }

    .lightbox-caption {
      position: absolute;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(255,255,255,0.7);
      font-size: 0.9rem;
      font-weight: 500;
    }

    /* ===== TIKTOK EMBEDS ===== */
    .tiktok-section { background: var(--sand); }

    .tiktok-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .tiktok-card {
      display: flex;
      justify-content: center;
      align-items: flex-start;
    }

    /* Override TikTok embed default styles */
    .tiktok-card blockquote.tiktok-embed {
      margin: 0 !important;
      max-width: 100% !important;
      min-width: 0 !important;
    }

    .tiktok-card iframe {
      max-width: 100% !important;
      border-radius: var(--radius-lg) !important;
    }

    @media (min-width: 640px) {
      .tiktok-grid { grid-template-columns: repeat(3, 1fr); }
      .tiktok-card { justify-content: center; }
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials { background: white; }

    .testimonials-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .testimonial-card {
      background: var(--sand);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      position: relative;
      border: 1px solid rgba(10, 110, 122, 0.05);
      transition: all 0.3s;
    }

    .testimonial-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-soft);
    }

    .testimonial-stars {
      display: flex;
      gap: 2px;
      margin-bottom: 16px;
    }

    .testimonial-stars svg { color: #FBBF24; }

    .testimonial-text {
      font-size: 0.95rem;
      line-height: 1.7;
      color: var(--text-secondary);
      margin-bottom: 20px;
      font-style: italic;
    }

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

    .testimonial-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--bright-aqua), var(--deep-ocean));
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
      font-size: 0.9rem;
    }

    .testimonial-name {
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--navy);
    }

    .testimonial-source {
      font-size: 0.78rem;
      color: var(--text-light);
    }

    @media (min-width: 640px) {
      .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (min-width: 960px) {
      .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
    }

    /* ===== FAQ ACCORDION ===== */
    .faq { background: var(--sand); }

    .faq-list {
      max-width: 760px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      background: white;
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(10, 110, 122, 0.05);
    }

    .faq-question {
      width: 100%;
      padding: 20px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      background: none;
      text-align: left;
      font-size: 1rem;
      font-weight: 600;
      color: var(--navy);
      transition: color 0.2s;
    }

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

    .faq-icon {
      width: 28px;
      height: 28px;
      min-width: 28px;
      border-radius: 50%;
      background: var(--foam);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: var(--deep-ocean);
      transition: transform 0.3s, background 0.3s;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      background: var(--deep-ocean);
      color: white;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .faq-answer-inner {
      padding: 0 24px 20px;
      font-size: 0.92rem;
      color: var(--text-secondary);
      line-height: 1.7;
    }

    /* ===== CROWD CALENDAR ===== */
    /* ===== WEATHER WIDGET ===== */
    .weather { background: var(--sand); }

    .weather-card {
      max-width: 800px;
      margin: 0 auto;
      background: linear-gradient(135deg, var(--deep-ocean), var(--bright-aqua));
      border-radius: var(--radius-xl);
      padding: 40px 32px;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .weather-card::before {
      content: '';
      position: absolute;
      top: -40px;
      right: -40px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
    }

    .weather-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 28px;
      flex-wrap: wrap;
      gap: 16px;
    }

    .weather-location {
      font-size: 0.82rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      opacity: 0.7;
    }

    .weather-temp {
      font-family: 'Fraunces', serif;
      font-size: 3.5rem;
      font-weight: 900;
      line-height: 1;
    }

    .weather-desc {
      font-size: 1.1rem;
      opacity: 0.85;
      margin-top: 4px;
    }

    .weather-icon { font-size: 3.5rem; }

    .weather-details {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .weather-detail {
      background: rgba(255,255,255,0.1);
      border-radius: var(--radius-md);
      padding: 16px;
      text-align: center;
    }

    .weather-detail-label {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      opacity: 0.6;
      margin-bottom: 6px;
    }

    .weather-detail-value {
      font-family: 'Fraunces', serif;
      font-size: 1.3rem;
      font-weight: 700;
    }

    @media (min-width: 640px) {
      .weather-details { grid-template-columns: repeat(4, 1fr); }
    }

    /* ===== TIDE CHART ===== */
    .tide-chart-section {
      background: linear-gradient(135deg, #0B1D2E 0%, #0A2540 100%);
      padding: 4rem 0;
    }

    .tide-chart-wrap {
      background: rgba(255,255,255,0.06);
      border-radius: var(--radius-lg);
      padding: 2rem;
      border: 1px solid rgba(255,255,255,0.08);
    }

    .tide-chart-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.5rem;
      flex-wrap: wrap;
      gap: 12px;
    }

    .tide-chart-title {
      color: white;
      font-size: 1.4rem;
      font-family: 'Fraunces', serif;
    }

    .tide-chart-date {
      color: rgba(255,255,255,0.5);
      font-size: 0.85rem;
    }

    .tide-chart-legend {
      display: flex;
      gap: 16px;
    }

    .tide-chart-legend span {
      display: flex;
      align-items: center;
      gap: 6px;
      color: rgba(255,255,255,0.6);
      font-size: 0.8rem;
    }

    .tide-chart-legend span::before {
      content: '';
      width: 10px;
      height: 10px;
      border-radius: 50%;
      display: inline-block;
    }

    .tide-chart-legend .legend-high::before { background: #00B4D8; }
    .tide-chart-legend .legend-low::before { background: #FF6B5A; }
    .tide-chart-legend .legend-now::before { background: #FFD700; }

    .tide-chart-svg {
      width: 100%;
      height: 220px;
      display: block;
    }

    .tide-events-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
      gap: 12px;
      margin-top: 1.5rem;
    }

    .tide-event-card {
      background: rgba(255,255,255,0.06);
      border-radius: var(--radius-sm);
      padding: 12px 16px;
      text-align: center;
      border: 1px solid rgba(255,255,255,0.06);
    }

    .tide-event-card.high { border-top: 3px solid #00B4D8; }
    .tide-event-card.low { border-top: 3px solid #FF6B5A; }

    .tide-event-time {
      font-family: 'Fraunces', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: white;
    }

    .tide-event-type {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 4px;
    }

    .tide-event-card.high .tide-event-type { color: #00B4D8; }
    .tide-event-card.low .tide-event-type { color: #FF6B5A; }

    .tide-event-level {
      color: rgba(255,255,255,0.45);
      font-size: 0.8rem;
      margin-top: 2px;
    }

    @media (max-width: 640px) {
      .tide-chart-wrap { padding: 1.25rem; }
      .tide-chart-svg { height: 160px; }
      .tide-events-row { grid-template-columns: repeat(2, 1fr); }
    }

    /* ===== INTERACTIVE MAP ===== */
    /* ===== 10-DAY FORECAST BAR ===== */
    .forecast-bar {
      background: rgba(10, 35, 66, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: 1.25rem 0;
    }

    .forecast-bar-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0.75rem;
    }

    .forecast-bar-title {
      font-family: var(--font-display);
      font-size: 1rem;
      color: white;
      font-weight: 700;
    }

    .forecast-bar-location {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.5);
    }

    .forecast-grid {
      display: grid;
      grid-template-columns: repeat(10, 1fr);
      gap: 0.4rem;
    }

    .forecast-day {
      background: rgba(255,255,255,0.08);
      border-radius: 0.6rem;
      padding: 0.7rem 0.3rem;
      text-align: center;
      border: 1px solid rgba(255,255,255,0.08);
      transition: background 0.2s;
    }

    .forecast-day:hover {
      background: rgba(255,255,255,0.15);
    }

    .forecast-day.today {
      background: rgba(0, 180, 216, 0.2);
      border-color: rgba(0, 180, 216, 0.4);
    }

    .forecast-day-name {
      font-size: 0.7rem;
      font-weight: 700;
      color: white;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 0.15rem;
    }

    .forecast-day-date {
      font-size: 0.6rem;
      color: rgba(255,255,255,0.4);
      margin-bottom: 0.35rem;
    }

    .forecast-day-icon {
      font-size: 1.3rem;
      margin-bottom: 0.25rem;
    }

    .forecast-day-high {
      font-size: 1rem;
      font-weight: 700;
      color: white;
    }

    .forecast-day-low {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.5);
      margin-bottom: 0.2rem;
    }

    .forecast-day-rain {
      font-size: 0.6rem;
      color: #5ec8f6;
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .forecast-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.35rem;
      }
      .forecast-day { padding: 0.6rem 0.2rem; }
      .forecast-day-icon { font-size: 1.1rem; }
      .forecast-day-high { font-size: 0.9rem; }
      .forecast-day-name { font-size: 0.65rem; }
    }

    .map-section { background: white; }

    .map-wrap {
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-medium);
      position: relative;
    }

    .map-wrap iframe {
      width: 100%;
      height: 400px;
      border: none;
      display: block;
    }

    @media (min-width: 768px) {
      .map-wrap iframe { height: 500px; }
    }

    .map-info-bar {
      background: var(--navy);
      color: white;
      padding: 20px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .map-info-bar p {
      font-size: 0.9rem;
      opacity: 0.8;
    }

    .map-info-bar a {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--bright-aqua);
      transition: color 0.2s;
    }

    .map-info-bar a:hover { color: white; }

    /* ===== FISHING SPOTS ===== */
    .fishing { background: #f8f9fa; color: var(--dark); }

    .fishing .section-label { color: var(--bright-aqua); }
    .fishing .section-title { color: var(--dark); font-size: 2.2rem; }
    .fishing .section-subtitle { color: var(--text-muted); font-size: 1.05rem; }

    .fishing-tabs {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }

    .fishing-tab {
      background: white;
      border: 1px solid #ddd;
      color: #555;
      padding: 0.6rem 1.25rem;
      border-radius: 999px;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
    }

    .fishing-tab:hover { background: #eee; color: var(--dark); }
    .fishing-tab.active { background: var(--deep-navy); color: white; border-color: var(--deep-navy); }

    .fishing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
      max-height: 800px;
      overflow-y: auto;
      padding-right: 0.5rem;
    }

    .fishing-grid::-webkit-scrollbar { width: 6px; }
    .fishing-grid::-webkit-scrollbar-track { background: #eee; border-radius: 3px; }
    .fishing-grid::-webkit-scrollbar-thumb { background: var(--bright-aqua); border-radius: 3px; }

    .fishing-card {
      background: white;
      border: 1px solid #e0e0e0;
      border-radius: 0.75rem;
      padding: 1.5rem;
      transition: transform 0.3s, box-shadow 0.3s;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
      cursor: pointer;
    }

    .fishing-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }

    .fishing-card.hidden { display: none; }

    .fishing-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.75rem;
    }

    .fishing-card-badge {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      padding: 0.25rem 0.75rem;
      border-radius: 999px;
      text-transform: uppercase;
    }

    .fishing-card-badge.wreck { background: #e53e3e; color: white; }
    .fishing-card-badge.military { background: #38a169; color: white; }
    .fishing-card-badge.reef { background: #3182ce; color: white; }
    .fishing-card-badge.artificial { background: #d69e2e; color: white; }

    .fishing-card-depth {
      font-size: 1rem;
      font-weight: 700;
      color: var(--deep-ocean);
    }

    .fishing-card h3 {
      font-family: var(--font-display);
      font-size: 1.15rem;
      color: var(--dark);
      margin-bottom: 0.5rem;
      line-height: 1.3;
    }

    .fishing-card p {
      font-size: 0.9rem;
      color: #555;
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    .fishing-card-coords {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
      font-family: 'Courier New', monospace;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--deep-navy);
      background: #f0f7ff;
      padding: 0.6rem 0.8rem;
      border-radius: 0.5rem;
      border: 1px solid #d0e3f5;
      letter-spacing: 0.5px;
    }

    .fishing-card-coords span::before {
      font-family: 'Outfit', sans-serif;
      font-size: 0.7rem;
      font-weight: 600;
      color: #888;
      margin-right: 0.4rem;
    }

    .fishing-card-coords span:first-child::before { content: 'LAT'; }
    .fishing-card-coords span:last-child::before { content: 'LON'; }

    @media (max-width: 1024px) {
      .fishing-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .fishing .section-title { font-size: 1.6rem; }
      .fishing .section-subtitle { font-size: 0.95rem; }
      .fishing-grid { grid-template-columns: 1fr; max-height: none; }
      .fishing-card { padding: 1.25rem; }
      .fishing-card h3 { font-size: 1.2rem; }
      .fishing-card p { font-size: 0.95rem; color: #444; }
      .fishing-card-depth { font-size: 1.1rem; }
      .fishing-card-coords { font-size: 1rem; padding: 0.75rem 1rem; }
      .fishing-card-badge { font-size: 0.8rem; }
      .fishing-tab { font-size: 0.85rem; padding: 0.5rem 1rem; }
    }

    /* ===== FISHING MODAL ===== */
    .fish-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
      padding: 1rem;
    }

    .fish-modal-overlay.active {
      opacity: 1;
      pointer-events: all;
    }

    .fish-modal {
      background: white;
      border-radius: 1rem;
      max-width: 600px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      padding: 2rem;
      position: relative;
      transform: translateY(30px);
      transition: transform 0.3s;
    }

    .fish-modal-overlay.active .fish-modal {
      transform: translateY(0);
    }

    .fish-modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: #f0f0f0;
      border: none;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      font-size: 1.3rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #333;
      transition: background 0.2s;
    }

    .fish-modal-close:hover { background: #ddd; }

    .fish-modal-badge-row {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
    }

    .fish-modal-depth {
      font-size: 1rem;
      font-weight: 700;
      color: var(--deep-ocean);
    }

    .fish-modal h2 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      color: var(--dark);
      margin-bottom: 0.75rem;
      line-height: 1.3;
      padding-right: 2rem;
    }

    .fish-modal-desc {
      font-size: 1rem;
      color: #444;
      line-height: 1.7;
      margin-bottom: 1.25rem;
    }

    .fish-modal-coords {
      display: flex;
      gap: 1.5rem;
      font-family: 'Courier New', monospace;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--deep-navy);
      background: #f0f7ff;
      padding: 1rem 1.25rem;
      border-radius: 0.75rem;
      border: 1px solid #d0e3f5;
      margin-bottom: 1.25rem;
    }

    .fish-modal-coords div { display: flex; flex-direction: column; gap: 0.15rem; }
    .fish-modal-coords label { font-family: 'Outfit',sans-serif; font-size: 0.7rem; font-weight: 600; color: #888; letter-spacing: 1px; }

    .fish-modal-details {
      margin-bottom: 1.5rem;
    }

    .fish-modal-details h4 {
      font-family: var(--font-display);
      font-size: 1rem;
      color: var(--dark);
      margin-bottom: 0.5rem;
    }

    .fish-modal-details ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .fish-modal-details li {
      padding: 0.5rem 0;
      border-bottom: 1px solid #eee;
      font-size: 0.9rem;
      color: #444;
      display: flex;
      gap: 0.5rem;
    }

    .fish-modal-details li strong {
      color: var(--dark);
      min-width: 100px;
    }

    .fish-modal-actions {
      display: flex;
      gap: 0.75rem;
    }

    @media (max-width: 768px) {
      .fish-modal { padding: 1.5rem; }
      .fish-modal h2 { font-size: 1.3rem; }
      .fish-modal-coords { flex-direction: column; gap: 0.5rem; font-size: 1rem; }
    }

    /* ===== NEARBY ATTRACTIONS ===== */
    .attractions { background: var(--sand); }

    .attractions-cam {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: center;
      margin-bottom: 3rem;
      background: white;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    }

    .attractions-cam-video {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
    }

    .attractions-cam-video iframe {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      border: none;
    }

    .attractions-cam-info {
      padding: 2rem;
    }

    .attractions-live-badge {
      display: inline-block;
      background: #e53e3e;
      color: white;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 0.25rem 0.75rem;
      border-radius: 999px;
      margin-bottom: 0.75rem;
      animation: livePulse 2s ease-in-out infinite;
    }

    @keyframes livePulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.6; }
    }

    .attractions-cam-info h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      color: var(--dark);
      margin-bottom: 0.75rem;
    }

    .attractions-cam-info p {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 1.25rem;
    }

    .attractions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .attraction-card {
      display: flex;
      gap: 1rem;
      background: white;
      border-radius: 0.75rem;
      padding: 1.25rem;
      text-decoration: none;
      color: inherit;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .attraction-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    }

    .attraction-card-icon {
      font-size: 2rem;
      flex-shrink: 0;
      width: 3rem;
      height: 3rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .attraction-card-body h3 {
      font-family: var(--font-display);
      font-size: 1rem;
      color: var(--dark);
      margin-bottom: 0.35rem;
    }

    .attraction-card-body p {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.5;
      margin-bottom: 0.5rem;
    }

    .attraction-distance {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--bright-aqua);
    }

    @media (max-width: 768px) {
      .attractions-cam {
        grid-template-columns: 1fr;
      }
      .attractions-grid {
        grid-template-columns: 1fr;
      }
      .attractions-cam-info h3 { font-size: 1.25rem; }
    }

    /* ===== BOAT RAMP & PARKING ===== */
    .ramps-section { background: white; }

    .ramps-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
    }

    .ramp-card {
      background: var(--sand);
      border-radius: 1rem;
      padding: 1.5rem;
    }

    .ramp-card h3 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      color: var(--dark);
      margin-bottom: 0.5rem;
    }

    .ramp-card > p {
      font-size: 0.88rem;
      color: #555;
      line-height: 1.6;
      margin-bottom: 0.75rem;
    }

    .ramp-card ul { list-style: none; padding: 0; margin: 0; }

    .ramp-card li {
      font-size: 0.85rem;
      color: #444;
      padding: 0.35rem 0;
      border-top: 1px solid rgba(0,0,0,0.06);
    }

    .ramp-card li strong { color: var(--dark); }

    @media (max-width: 768px) {
      .ramps-grid { grid-template-columns: 1fr; }
    }

    /* ===== FISHING REGS ===== */
    .fish-regs { background: var(--sand); }

    .regs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .reg-card {
      background: white;
      border-radius: 1rem;
      padding: 1.5rem;
      text-align: center;
    }

    .reg-icon { font-size: 2rem; margin-bottom: 0.5rem; }

    .reg-card h3 {
      font-family: var(--font-display);
      font-size: 1.05rem;
      color: var(--dark);
      margin-bottom: 0.5rem;
    }

    .reg-card p {
      font-size: 0.85rem;
      color: #555;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .regs-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .regs-grid { grid-template-columns: 1fr; }
    }

    /* ===== RESTAURANTS ===== */
    .restaurants-section { background: white; }

    .restaurants-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .restaurant-card {
      background: var(--sand);
      border-radius: 1rem;
      padding: 1.5rem;
      transition: transform 0.3s;
    }

    .restaurant-card:hover { transform: translateY(-3px); }

    .restaurant-type {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--bright-aqua);
      background: rgba(0,180,216,0.1);
      padding: 0.2rem 0.6rem;
      border-radius: 999px;
      margin-bottom: 0.5rem;
    }

    .restaurant-card h3 {
      font-family: var(--font-display);
      font-size: 1.05rem;
      color: var(--dark);
      margin-bottom: 0.4rem;
    }

    .restaurant-card p {
      font-size: 0.85rem;
      color: #555;
      line-height: 1.6;
      margin-bottom: 0.5rem;
    }

    .restaurant-price {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--dark);
    }

    @media (max-width: 768px) {
      .restaurants-grid { grid-template-columns: 1fr; }
    }

    /* ===== EVENTS ===== */
    .events-section { background: var(--sand); }

    .events-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .event-card {
      background: white;
      border-radius: 1rem;
      padding: 1.5rem;
      border-left: 4px solid;
    }

    .event-spring { border-color: #f472b6; }
    .event-summer { border-color: #f59e0b; }
    .event-fall { border-color: #f97316; }
    .event-winter { border-color: #60a5fa; }

    .event-month {
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #888;
      margin-bottom: 0.35rem;
    }

    .event-card h3 {
      font-family: var(--font-display);
      font-size: 1.05rem;
      color: var(--dark);
      margin-bottom: 0.4rem;
    }

    .event-card p {
      font-size: 0.85rem;
      color: #555;
      line-height: 1.6;
      margin-bottom: 0.5rem;
    }

    .event-crowd {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--deep-ocean);
    }

    @media (max-width: 768px) {
      .events-grid { grid-template-columns: 1fr; }
    }

    /* ===== HOTELS ===== */
    .hotels-section { background: white; }

    .hotels-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
    }

    .hotel-card {
      background: var(--sand);
      border-radius: 1rem;
      padding: 1.5rem;
      text-align: center;
      transition: transform 0.3s;
    }

    .hotel-card:hover { transform: translateY(-3px); }

    .hotel-emoji { font-size: 2.5rem; margin-bottom: 0.75rem; }

    .hotel-card h3 {
      font-family: var(--font-display);
      font-size: 1rem;
      color: var(--dark);
      margin-bottom: 0.4rem;
    }

    .hotel-card p {
      font-size: 0.83rem;
      color: #555;
      line-height: 1.5;
      margin-bottom: 0.5rem;
    }

    .hotel-range {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--deep-ocean);
    }

    @media (max-width: 768px) {
      .hotels-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .hotels-grid { grid-template-columns: 1fr; }
    }

    /* ===== MERCH SECTION ===== */
    .merch { background: var(--sand); }

    .merch-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .merch-card {
      background: white;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .merch-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-medium);
    }

    .merch-card-img {
      aspect-ratio: 1;
      background: linear-gradient(135deg, var(--foam), var(--sky-aqua));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      position: relative;
      overflow: hidden;
    }

    .merch-card-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--coral);
      color: white;
      padding: 4px 10px;
      border-radius: 50px;
      font-size: 0.68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .merch-card-info { padding: 18px; }

    .merch-card-info h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px;
    }

    .merch-card-desc {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 0.4rem;
    }

    .merch-card-price {
      font-family: 'Fraunces', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--deep-ocean);
      margin-bottom: 12px;
    }

    .merch-card-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 20px;
      background: var(--foam);
      color: var(--deep-ocean);
      border-radius: 50px;
      font-size: 0.82rem;
      font-weight: 600;
      transition: all 0.2s;
    }

    .merch-card-btn:hover {
      background: var(--deep-ocean);
      color: white;
    }

    @media (min-width: 640px) {
      .merch-grid { grid-template-columns: repeat(4, 1fr); }
    }

    /* ===== BUSINESS DIRECTORY ===== */
    .directory { background: white; }

    .directory-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .directory-card {
      display: flex;
      gap: 20px;
      background: var(--sand);
      border-radius: var(--radius-lg);
      padding: 24px;
      border: 1px solid rgba(10, 110, 122, 0.06);
      transition: all 0.3s;
      align-items: center;
    }

    .directory-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-soft);
      border-color: rgba(10, 110, 122, 0.12);
    }

    .directory-card-icon {
      width: 64px;
      height: 64px;
      min-width: 64px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--bright-aqua), var(--deep-ocean));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      color: white;
    }

    .directory-card-content { flex: 1; }

    .directory-card-content h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 4px;
    }

    .directory-card-type {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--deep-ocean);
      margin-bottom: 6px;
    }

    .directory-card-content p {
      font-size: 0.85rem;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    .directory-card-badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 4px 10px;
      background: rgba(255, 107, 90, 0.1);
      color: var(--coral);
      border-radius: 50px;
      font-size: 0.68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-top: 8px;
    }

    @media (min-width: 640px) {
      .directory-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* ===== BLOG / ARTICLES ===== */
    .blog { background: var(--sand); }

    .blog-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .blog-card {
      background: white;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .blog-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-medium);
    }

    .blog-card-img {
      aspect-ratio: 16 / 9;
      background: linear-gradient(135deg, var(--deep-ocean), var(--bright-aqua));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      position: relative;
      overflow: hidden;
    }

    .blog-card-category {
      position: absolute;
      top: 14px;
      left: 14px;
      padding: 4px 12px;
      background: white;
      color: var(--deep-ocean);
      border-radius: 50px;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .blog-card-body { padding: 24px; }

    .blog-card-body h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
      line-height: 1.35;
    }

    .blog-card-body p {
      font-size: 0.88rem;
      color: var(--text-secondary);
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .blog-card-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .blog-card-date {
      font-size: 0.78rem;
      color: var(--text-light);
    }

    .blog-card-link {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--deep-ocean);
      display: flex;
      align-items: center;
      gap: 4px;
      transition: color 0.2s;
    }

    .blog-card-link:hover { color: var(--coral); }

    @media (min-width: 640px) {
      .blog-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (min-width: 960px) {
      .blog-grid { grid-template-columns: repeat(3, 1fr); }
    }

    /* ===== SUBPAGE HERO ===== */
    .page-hero,
    .subpage-hero {
      background: linear-gradient(135deg, #0B1D2E 0%, #0A6E7A 100%);
      padding: 120px 0 60px;
      text-align: center;
      color: white;
    }

    .page-hero .section-label,
    .subpage-hero .section-label { color: var(--bright-aqua); }
    .page-hero .section-title,
    .subpage-hero .section-title { color: white; font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 12px; }
    .page-hero .section-subtitle,
    .subpage-hero .section-subtitle { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; }

    .page-breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.5);
      justify-content: center;
      margin-bottom: 1.5rem;
    }

    .page-breadcrumb a {
      color: var(--bright-aqua);
      transition: color 0.2s;
    }

    .page-breadcrumb a:hover { color: white; }

    /* ===== EXPLORE CARDS (Homepage teasers) ===== */
    .explore-section { background: white; }

    .explore-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .explore-card {
      position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
      min-height: 280px;
      display: flex;
      align-items: flex-end;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .explore-card:hover { transform: translateY(-6px); }

    .explore-card-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .explore-card-content {
      position: relative;
      z-index: 2;
      padding: 2rem;
      width: 100%;
      background: linear-gradient(180deg, transparent 0%, rgba(11, 29, 46, 0.85) 100%);
    }

    .explore-card-label {
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--bright-aqua);
      margin-bottom: 0.5rem;
    }

    .explore-card-title {
      font-family: 'Fraunces', serif;
      font-size: 1.5rem;
      color: white;
      font-weight: 700;
      margin-bottom: 0.5rem;
      line-height: 1.2;
    }

    .explore-card-desc {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.7);
      line-height: 1.5;
      margin-bottom: 1rem;
    }

    .explore-card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.88rem;
      font-weight: 600;
      color: white;
      background: rgba(255,255,255,0.15);
      padding: 10px 20px;
      border-radius: 999px;
      backdrop-filter: blur(8px);
      transition: background 0.2s;
    }

    .explore-card-link:hover { background: rgba(255,255,255,0.25); }

    @media (max-width: 768px) {
      .explore-grid { grid-template-columns: 1fr; }
      .explore-card { min-height: 220px; }
    }
