:root {
  --navy: #14202b;
  --navy-2: #1c2d39;
  --navy-3: #243847;
  --sand: #d6c08d;
  --sand-soft: #efe4c9;
  --white: #ffffff;
  --text-soft: #d7e0e7;
  --text-muted: #aec0cd;
  --card: rgba(255,255,255,0.07);
  --card-strong: rgba(255,255,255,0.10);
  --border: rgba(255,255,255,0.14);
  --shadow: 0 18px 40px rgba(0,0,0,0.22);
  --max: 1180px;
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.55;
}
.faq details {
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
  cursor: pointer;
}

.faq summary {
  font-weight: 600;
  font-size: 15px;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  font-weight: bold;
}

.faq details[open] summary::after {
  content: "–";
}

.faq p {
  margin-top: 10px;
  font-size: 14px;
  color: #ccc;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 52px 0;
}

.eyebrow {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(214,192,141,0.30);
  background: rgba(214,192,141,0.14);
  color: var(--sand-soft);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-header {
  max-width: 760px;
  margin-bottom: 18px;
}

.section-header h2 {
  margin: 12px 0 10px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
}

.section-header p {
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(20, 32, 43, 0.86);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  height: 50px;
  width: auto;
}

.brand-name {
  font-size: 18px;
  letter-spacing: 0.09em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--text-soft);
  font-size: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
  box-shadow: var(--shadow);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--sand);
  color: var(--navy);
}

.btn-primary:hover {
  opacity: 0.96;
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  box-shadow: none;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.10);
}

.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  align-items: end;
  background:
    linear-gradient(to top, rgba(20,32,43,0.94) 0%, rgba(20,32,43,0.60) 38%, rgba(20,32,43,0.16) 100%),
    url('/images/hero-ocean-view.jpg') center center / cover no-repeat;
}

.hero-content {
  max-width: 760px;
  padding: 80px 0 36px;
}

.hero h1 {
  margin: 16px 0 16px;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero p {
  max-width: 640px;
  margin: 0 0 28px;
  font-size: clamp(19px, 2.3vw, 23px);
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

/* FIXED FEATURE GRID */
.hero-note {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
  width: 100%;
  max-width: 620px;
}

.hero-note span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  min-width: 0;
  border-radius: 12px;
  background: rgba(10, 25, 40, 0.9);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 13.5px;
  color: #ffffff;
  text-align: center;
  width: 100%;
  line-height: 1.2;
}

/* WIFI EMPHASIS BLOCK */
.wifi-big {
  text-align: center;
}

.wifi-big .wifi-name {
  font-size: 38px;
  font-weight: bold;
  letter-spacing: 0.02em;
  margin: 10px 0 6px;
  color: var(--white);
}

.wifi-big .wifi-pass {
  font-size: 34px;
  font-weight: bold;
  color: var(--sand);
  margin: 10px 0 6px;
}

@media (max-width: 760px) {
  .topbar-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 10px;
  }

  .brand img {
    height: 34px;
  }

  .brand-name {
    font-size: 1.35rem;
  }

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

  .nav-links a {
    display: none;
  }

  .nav-links .mobile-local-link {
    display: inline-block;
    color: var(--sand-soft);
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 58px;
    left: 16px;
    right: 16px;
    z-index: 9998;
    padding: 14px;
    border-radius: 18px;
    background: rgba(20, 32, 43, 0.98);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .mobile-menu.open {
    display: grid;
    gap: 10px;
  }

  .mobile-menu a {
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    color: var(--white);
  }

  .mobile-menu a:last-child {
    background: var(--sand);
    color: var(--navy);
    font-weight: 700;
  }

  .section {
    padding: 36px 0;
  }

  .hero-content {
    padding: 70px 0 28px;
  }

  .value-grid,
  .experience-grid,
  .space-grid,
  .social-proof,
  .rules-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .hero-note {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
    max-width: 100%;
  }

  .hero-note span {
    width: 100%;
    font-size: 13px;
    padding: 10px 8px;
  }

  .gallery-main {
    min-height: 280px;
  }

  .cta-band {
    padding: 26px;
  }

  .map-card iframe {
    height: 320px;
  }

  .sticky-booking-cta {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    background: #0f766e;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  }

  body {
    padding-bottom: 76px;
  }
}

@media (min-width: 761px) {
  .hamburger,
  .mobile-menu,
  .sticky-booking-cta {
    display: none !important;
  }
}

.section-cta {
  margin-top: 28px;
  text-align: center;
}
