﻿.beach-hero-bg { background: url('https://images.unsplash.com/photo-1519046904884-53103b34b206?w=1800&q=85') center/cover no-repeat, linear-gradient(160deg,#062030 0%,#0a3d55 40%,#0b7a75 80%); }

    .beach-detail { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; padding:5rem 3rem; }
    .beach-detail:nth-child(even) { background:var(--sand); }
    .beach-detail img { width:100%; height:400px; object-fit:cover; border-radius:2px; }
    .beach-detail-text h2 { margin-bottom:1rem; }
    .beach-detail-text p { margin-bottom:1rem; }
    .beach-meta { display:flex; gap:1.5rem; flex-wrap:wrap; margin:1.5rem 0; }
    .beach-meta-item { display:flex; flex-direction:column; }
    .beach-meta-label { font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); }
    .beach-meta-value { font-size:.92rem; font-weight:500; color:var(--navy); margin-top:.2rem; }

    .beach-map-section { background:var(--navy); padding:5rem 3rem; color:#fff; }
    .beach-map-section h2 { color:#fff; margin-bottom:1rem; }
    .beach-map-section .lead { color: rgba(255,255,255,.9); }
    .beach-index { display:grid; grid-template-columns:repeat(3,1fr); gap:1.2rem; margin-top:3rem; }
    .beach-index-card { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08); padding:1.5rem; border-radius:2px; transition:background .2s; }
    .beach-index-card:hover { background:rgba(255,255,255,.1); }
    .beach-index-card h3 { color:#fff; font-size:1.1rem; margin-bottom:.4rem; }
    .beach-index-card p { font-size:.8rem; color:rgba(255,255,255,.88); line-height:1.6; }
    .beach-pills { display:flex; flex-wrap:wrap; gap:.4rem; margin-top:.8rem; }
    .beach-pill { font-size:.68rem; padding:.2rem .6rem; border-radius:20px; background:rgba(21,178,171,.2); color:var(--turq-light); }

    .tips-strip { background:var(--cream); padding:5rem 3rem; }
    .tips-strip h2 { margin-bottom:3rem; }
    .tips-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; }
    .tip-card { background:#fff; padding:1.5rem; border-radius:2px; border-top:3px solid var(--turq); }
    .tip-card h3 { font-size:1rem; font-weight:500; margin-bottom:.5rem; color:var(--navy); }
    .tip-card p { font-size:.82rem; color:var(--muted); line-height:1.65; }

    @media(max-width:900px){
      .beach-detail { grid-template-columns:1fr; gap:2rem; padding:3.5rem 1.5rem; }
      .beach-index { grid-template-columns:1fr; }
      .tips-grid { grid-template-columns:1fr 1fr; }
    }
    @media(max-width:600px){ .tips-grid { grid-template-columns:1fr; } }
  
    /* ── MOBILE MENU ── */
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer; padding: 4px; z-index: 200;
    }
    .hamburger span {
      display: block; width: 24px; height: 2px;
      background: #fff; border-radius: 2px;
      transition: all .3s ease;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none; position: fixed; inset: 0; z-index: 150;
      background: rgba(10,20,40,.97);
      flex-direction: column; align-items: center; justify-content: center;
      gap: 2rem;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      color: #fff; text-decoration: none;
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem; font-weight: 300; letter-spacing: .05em;
      transition: color .2s;
    }
    .mobile-menu a:hover { color: var(--turq-light); }
    .mobile-menu .mobile-cta {
      margin-top: 1rem;
      background: var(--terra); color: #fff;
      padding: .8rem 2.5rem; border-radius: 2px;
      font-family: 'DM Sans', sans-serif;
      font-size: .9rem; letter-spacing: .06em; text-transform: uppercase;
    }

    @media (max-width: 768px) {
      .hamburger { display: flex; }
      .nav-links, .nav-cta { display: none !important; }
    }

