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

:root {
  --navy:   #1a5c3a;
  --teal:   #0096c7;
  --gold:   #ffd60a;
  --sand:   #fff8ef;
  --coral:  #ff5a36;
  --white:  #ffffff;
  --dark:   #0d3324;
  --mid:    #4a7c6f;
  --light:  #e0f7f0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
}

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

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 3rem;
  background: rgba(13, 51, 36, 0.92);
  backdrop-filter: blur(12px);
  transition: background 0.3s;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none;
}
.nav-logo-icon { font-size: 1.6rem; }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.03em;
}
.nav-links {
  display: flex; gap: 2rem; list-style: none; align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.9); text-decoration: none;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--coral); color: #fff !important;
  padding: 0.5rem 1.2rem; border-radius: 4px; font-weight: 700 !important;
}
.nav-cta:hover { background: #e04520 !important; color: #fff !important; }

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-image: url('Photos/exterior1.png');
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,51,36,0.35) 0%, rgba(13,51,36,0.65) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center; padding: 2rem;
  max-width: 860px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: #fff; font-weight: 700;
  margin-bottom: 0.6rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: rgba(255,255,255,0.85); margin-bottom: 2.4rem;
  line-height: 1.6;
}
.hero-stats {
  display: flex; justify-content: center; gap: 2.5rem;
  margin-bottom: 2.8rem; flex-wrap: wrap;
}
.hero-stat {
  display: flex; flex-direction: column; align-items: center; gap: 0.2rem;
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1;
}
.hero-stat-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
}
.hero-cta-group {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--coral); color: #fff;
  padding: 0.85rem 2rem; border-radius: 6px;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.05em;
  text-decoration: none; text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: #e04520; transform: translateY(-2px); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.7); color: #fff;
  padding: 0.85rem 2rem; border-radius: 6px;
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.05em;
  text-decoration: none; text-transform: uppercase;
  transition: all 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(255,214,10,0.12); }

/* ── SECTION GLOBALS ── */
section { padding: 6rem 2rem; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 0.7rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy); margin-bottom: 1rem;
}
.section-intro {
  font-size: 1rem; line-height: 1.8; color: var(--mid);
  max-width: 640px;
}
.section-header { margin-bottom: 3.5rem; }
.divider {
  width: 48px; height: 3px; background: var(--coral);
  margin: 1rem 0 1.4rem;
}

/* ── PAGE BANNER (sub-pages) ── */
.page-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  padding: 8rem 2rem 3rem;
  text-align: center;
}
.page-banner--dark {
  background: var(--dark);
}
.page-banner-eyebrow {
  display: block;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 0.8rem;
}
.page-banner-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700; color: var(--gold); line-height: 1.1;
}

/* ── ABOUT CTA ── */
.about-cta-wrap {
  margin-top: 0.5rem;
}

/* ── ABOUT ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-main {
  width: 100%; height: 480px; border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(13,51,36,0.18);
}
.about-image-accent {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 200px; height: 160px; border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 12px 36px rgba(0,0,0,0.2);
  border: 4px solid #fff;
}
.about-text { display: flex; flex-direction: column; gap: 1.5rem; }
.about-text p {
  font-size: 1rem; line-height: 1.85; color: var(--mid);
}
.about-highlights {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 0.5rem;
}
.about-highlight {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: var(--light); padding: 1rem; border-radius: 8px;
}
.about-highlight i { color: var(--navy); font-size: 1rem; margin-top: 0.15rem; flex-shrink: 0; }
.about-highlight span { font-size: 0.87rem; font-weight: 600; color: var(--dark); line-height: 1.4; }

/* ── GALLERY ── */
.gallery-section { background: var(--sand); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 0.75rem;
}
.gallery-item {
  overflow: hidden; border-radius: 8px; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 220px;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item.wide {
  grid-column: span 2;
}
.gallery-item.wide img { height: 300px; }
.gallery-item.tall {
  grid-row: span 2;
}
.gallery-item.tall img { height: 100%; min-height: 460px; }

/* ── AMENITIES ── */
.amenities-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.amenity-card {
  background: var(--light); border-radius: 12px;
  padding: 2rem; display: flex; flex-direction: column; gap: 1rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.amenity-card:hover {
  box-shadow: 0 8px 30px rgba(13,51,36,0.12);
  transform: translateY(-3px);
}
.amenity-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
}
.amenity-icon i { color: var(--gold); font-size: 1.25rem; }
.amenity-card h3 {
  font-size: 1.1rem; color: var(--dark);
}
.amenity-card p {
  font-size: 0.88rem; line-height: 1.7; color: var(--mid);
}

/* ── LOCATION ── */
.location-section { background: var(--dark); }
.location-section .section-label { color: var(--gold); }
.location-section .section-title { color: #fff; }
.location-section .section-intro { color: rgba(255,255,255,0.7); }
.location-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
  margin-top: 3rem;
}
.location-beaches {
  display: flex; flex-direction: column; gap: 1.2rem;
}
.beach-item {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1.2rem 1.4rem; border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.beach-item:hover { background: rgba(255,255,255,0.1); }
.beach-dist {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--gold); line-height: 1;
  min-width: 55px; text-align: center;
}
.beach-dist small { display: block; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,214,10,0.7); }
.beach-info h4 { font-size: 0.95rem; color: #fff; margin-bottom: 0.25rem; }
.beach-info p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.location-map-wrap {
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  height: 380px;
}
.location-map-wrap iframe {
  width: 100%; height: 100%; border: none; display: block;
}

/* ── QUICK BOOK ── */
.quickbook-section { background: var(--sand); }
.quickbook-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.quickbook-card {
  border-radius: 16px; padding: 3rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.quickbook-card.airbnb {
  background: #fff; box-shadow: 0 4px 24px rgba(0,150,199,0.1);
  border: 2px solid rgba(255,90,54,0.2); border-top: 4px solid var(--coral);
}
.quickbook-card.whatsapp {
  background: linear-gradient(135deg, #075e54, #128c7e); color: #fff;
}
.quickbook-icon { font-size: 3rem; }
.quickbook-card h3 { font-size: 1.8rem; }
.quickbook-card.airbnb h3 { color: var(--navy); }
.quickbook-card.whatsapp h3 { color: #fff; }
.quickbook-card p { font-size: 0.92rem; line-height: 1.75; max-width: 340px; }
.quickbook-card.airbnb p { color: var(--mid); }
.quickbook-card.whatsapp p { color: rgba(255,255,255,0.75); }
.btn-airbnb {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--coral); color: #fff;
  padding: 0.9rem 2.2rem; border-radius: 6px;
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  transition: background 0.2s, transform 0.15s; margin-top: 0.5rem;
}
.btn-airbnb:hover { background: #e04520; transform: translateY(-2px); }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #fff; color: #075e54;
  padding: 0.9rem 2.2rem; border-radius: 6px;
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  transition: background 0.2s, transform 0.15s; margin-top: 0.5rem;
}
.btn-whatsapp:hover { background: #e8f5e9; transform: translateY(-2px); }
.quickbook-note { font-size: 0.78rem; opacity: 0.65; margin-top: 0.3rem; }

/* ── FORM SECTION ── */
.form-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0a5c8a 60%, var(--teal) 100%);
}
.form-inner {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start;
}
.form-info { color: #fff; }
.form-info .section-label { color: rgba(255,255,255,0.5); }
.form-info h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); color: #fff; margin-bottom: 1rem; }
.form-info p { color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 2rem; font-size: 0.95rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-detail h4 {
  font-size: 0.75rem; color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.2rem;
}
.contact-detail p, .contact-detail a { color: #fff; font-size: 0.95rem; text-decoration: none; }
.contact-detail a:hover { color: var(--gold); }

/* ── BOOKING FORM ── */
.booking-form {
  background: #fff; border-radius: 16px; padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  box-sizing: border-box; min-width: 0;
}
.booking-form h3 { font-size: 1.8rem; color: var(--navy); margin-bottom: 0.4rem; }
.booking-form .form-sub { font-size: 0.85rem; color: var(--mid); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: 0.78rem; font-weight: 600; color: var(--navy);
  letter-spacing: 0.05em; text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; box-sizing: border-box;
  border: 1.5px solid #e0e6ea; border-radius: 7px;
  padding: 0.7rem 1rem; font-size: 0.9rem; font-family: inherit;
  color: var(--dark); outline: none; transition: border-color 0.2s;
  background: #f9fbfc;
}
.form-group input[type="date"] { -webkit-appearance: none; appearance: none; max-width: 100%; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); background: #fff; }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%; background: var(--coral); color: #fff;
  border: none; border-radius: 7px; padding: 1rem;
  font-size: 1rem; font-weight: 700; font-family: inherit;
  cursor: pointer; letter-spacing: 0.04em; transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}
.btn-submit:hover { background: #e04520; transform: translateY(-1px); }
.btn-submit:disabled { background: #b0b8b5; cursor: not-allowed; transform: none !important; }
.form-note { font-size: 0.76rem; color: var(--mid); text-align: center; margin-top: 1rem; line-height: 1.6; }

/* ── TERMS AGREEMENT ── */
.terms-agree-wrap { margin-top: 1.2rem; margin-bottom: 0.5rem; }
.terms-agree-header {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--navy);
  margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.4rem;
}
.terms-agree-scroll {
  border: 1.5px solid #d0e8e0; border-radius: 8px;
  background: #f4fbf8; padding: 1rem 1.1rem;
  max-height: 200px; overflow-y: auto;
  font-size: 0.78rem; color: #3a5a50; line-height: 1.65; margin-bottom: 0.9rem;
}
.terms-agree-scroll::-webkit-scrollbar { width: 5px; }
.terms-agree-scroll::-webkit-scrollbar-track { background: #e0f2ed; border-radius: 4px; }
.terms-agree-scroll::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 4px; }
.terms-rule { margin-bottom: 0.75rem; }
.terms-rule:last-child { margin-bottom: 0; }
.terms-rule strong {
  color: var(--navy); font-weight: 700; display: block;
  margin-bottom: 0.15rem; font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase;
}
.terms-checkbox-row {
  display: flex; align-items: flex-start; gap: 0.7rem;
  padding: 0.8rem 1rem; border-radius: 7px;
  background: #fff8e7; border: 1.5px solid rgba(201,164,78,0.4); cursor: pointer;
}
.terms-checkbox-row input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: var(--navy);
  flex-shrink: 0; margin-top: 1px; cursor: pointer;
}
.terms-checkbox-row label { font-size: 0.82rem; color: var(--dark); line-height: 1.5; cursor: pointer; }

/* ── FOOTER ── */
footer {
  background: var(--dark); color: rgba(255,255,255,0.55);
  padding: 3rem 2rem 2rem;
}
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--gold); margin-bottom: 0.8rem;
}
.footer-tagline { font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.2rem; }
.social-links {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.2rem;
}
.social-link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.55rem 1.1rem; border-radius: 100px; border: none;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.03em;
  color: #fff; text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.35);
}
.social-link i { font-size: 1rem; }
.social-link--whatsapp { background: #25D366; }
.social-link--whatsapp:hover { filter: brightness(1.12); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(37,211,102,0.45); }
.social-link--email { background: var(--gold); color: #1a1a1a; }
.social-link--email:hover { filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(255,214,10,0.45); }
.social-link--airbnb { background: #FF5A5F; }
.social-link--airbnb:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(255,90,95,0.45); }
.footer-col h4 {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: #fff; margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1160px; margin: 2.5rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; flex-wrap: wrap; gap: 0.5rem;
}
.footer-gsc a {
  color: #8dbb5e; text-decoration: none; font-weight: 300; position: relative;
}
.footer-gsc a::after {
  content: ''; position: absolute; width: 0; height: 1px;
  bottom: -2px; left: 50%; background-color: #8dbb5e; transition: all 0.3s ease;
}
.footer-gsc a:hover::after { width: 100%; left: 0; }

/* ── TERMS ── */
.footer-terms-wrap {
  max-width: 1160px; margin: 2rem auto 0;
}
.footer-terms {
  background: rgba(255,214,10,0.07);
  border: 1px solid rgba(255,214,10,0.25);
  border-radius: 8px; padding: 0 1.5rem;
}
.footer-terms[open] .footer-terms-icon { transform: rotate(180deg); }
.footer-terms-toggle {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 0; cursor: pointer; list-style: none;
  color: rgba(255,255,255,0.85); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  transition: color 0.2s; user-select: none;
}
.footer-terms-toggle::-webkit-details-marker { display: none; }
.footer-terms-toggle:hover { color: var(--gold); }
.footer-terms-icon { font-size: 0.7rem; transition: transform 0.3s ease; color: rgba(255,255,255,0.35); }
.footer-terms-toggle:hover .footer-terms-icon { color: var(--gold); }
.footer-terms-body { padding: 0.5rem 0 2rem; }
.terms-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 3rem; margin-bottom: 1.5rem;
}
.term-item h5 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.4rem; display: flex; align-items: center; gap: 0.5rem;
}
.term-item h5 i { font-size: 0.75rem; opacity: 0.85; }
.term-item p { font-size: 0.87rem; line-height: 1.75; color: rgba(255,255,255,0.72); }
.term-item p strong { color: rgba(255,255,255,0.95); font-weight: 600; }
.terms-note {
  font-size: 0.83rem; line-height: 1.75; color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.2rem; font-style: italic;
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; margin-left: 0.75rem;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-accent { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.tall img { min-height: auto; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .quickbook-grid { grid-template-columns: 1fr; }
  .form-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; flex-wrap: wrap; align-items: center; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none; flex-direction: column; width: 100%; order: 10;
    background: rgba(13,51,36,0.98); padding: 0.5rem 0 1rem; gap: 0; margin-top: 0.5rem;
  }
  nav.open .nav-links { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.8rem 1.5rem; font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-cta { margin: 0.75rem 1.5rem 0 !important; display: inline-block !important; border-radius: 4px; }
  nav.open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav.open .nav-hamburger span:nth-child(2) { opacity: 0; }
  nav.open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .terms-grid { grid-template-columns: 1fr; gap: 1.2rem; }
}
@media (max-width: 600px) {
  section { padding: 4rem 1.2rem; }
  .hero-stats { gap: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .amenities-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
