:root {
  --teal-dark: #072b2f;
  --teal-mid: #2a4f53;
  --amber: #ffb432;
  --amber-deep: #ff9c07;
  --sand: #f4efe3;
  --sand-light: #fffcf6;
  --slate: #5d6c7b;
  --ink: #10262a;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background: var(--sand-light);
}
h1, h2, h3, .brand { font-family: 'Jost', sans-serif; }

/* ── Icons ────────────────────────────────────────── */
.icon { width: 20px; height: 20px; display: inline-block; vertical-align: -5px; flex-shrink: 0; }
.icon-sm { width: 16px; height: 16px; vertical-align: -3px; }
.icon-success { color: #16a34a; }
.icon-muted { color: #cbbfa1; }

/* ── Focus & interaction (accessibility) ─────────────── */
a, button, input, textarea, select, [tabindex] { transition: box-shadow 0.15s, background 0.15s, border-color 0.15s, opacity 0.15s; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: none; box-shadow: 0 0 0 3px rgba(255,180,50,0.45);
  border-radius: 4px;
}
button, a.btn, .btn { cursor: pointer; }
button:disabled { opacity: 0.55; cursor: not-allowed; }
@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, var(--teal-dark), var(--teal-mid));
  background-size: cover;
  background-position: center;
  color: #fff;
  min-height: 620px;
  display: flex;
  flex-direction: column;
}
.nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 32px;
}
.brand { font-size: 1.25rem; font-weight: 700; letter-spacing: 0.02em; color: #fff; text-decoration: none; }
.nav-links a {
  color: #fff; text-decoration: none; margin-left: 28px; font-size: 0.92rem;
  opacity: 0.88; transition: opacity 0.15s;
}
.nav-links a:hover { opacity: 1; }

.hero-inner {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  max-width: 720px; margin: 0 auto; padding: 40px 24px 80px; text-align: center;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem;
  color: var(--amber); font-weight: 600; margin-bottom: 14px;
}
.hero h1 { font-size: 3.2rem; font-weight: 700; margin-bottom: 16px; line-height: 1.1; }
.hero .tagline { font-size: 1.2rem; opacity: 0.92; margin-bottom: 32px; }

.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 13px 28px; border-radius: 30px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: transform 0.15s, background 0.15s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--amber); color: var(--teal-dark); }
.btn-primary:hover { background: var(--amber-deep); }
.btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.22); }

/* ── Sections ─────────────────────────────────────── */
main { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.section { padding: 64px 0; border-bottom: 1px solid #ece4d3; }
.section:last-of-type { border-bottom: none; }
.section h2 {
  font-size: 1.7rem; color: var(--teal-dark); margin-bottom: 20px; font-weight: 700;
}
.about .lead { font-size: 1.08rem; color: var(--ink); margin-bottom: 14px; }
.about p { color: var(--slate); }
.placeholder-note { color: #a29b8a; font-style: italic; }

/* ── Activities ───────────────────────────────────── */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.activity-card {
  background: #fff; border: 1px solid #ece4d3; border-radius: 14px; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.activity-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(7,43,47,0.1); }
.activity-photo { height: 170px; overflow: hidden; background: var(--sand); }
.activity-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s ease; }
.activity-card:hover .activity-photo img { transform: scale(1.05); }
.activity-body { padding: 18px 20px; }
.activity-body h3 { font-size: 1.1rem; color: var(--teal-dark); margin-bottom: 8px; font-weight: 600; }
.activity-body p { color: var(--slate); font-size: 0.92rem; }

/* ── Gallery ──────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.gallery-grid figure { margin: 0; overflow: hidden; border-radius: 12px; background: var(--sand); }
.gallery-grid img {
  width: 100%; height: 200px; object-fit: cover; display: block;
  transition: transform 0.35s ease;
}
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figcaption { font-size: 0.85rem; color: var(--slate); padding: 8px 10px; }

/* ── Packages ─────────────────────────────────────── */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.package-card {
  background: var(--sand); border-radius: 12px; padding: 22px 20px;
  border: 1px solid #ece4d3; transition: border-color 0.15s;
}
.package-card:hover { border-color: var(--amber); }
.package-card h3 { font-size: 1.05rem; color: var(--teal-dark); margin-bottom: 8px; font-weight: 600; }
.package-card .price { color: var(--amber-deep); font-weight: 600; font-size: 1rem; }

/* ── Contact ──────────────────────────────────────── */
.contact-card {
  background: var(--teal-dark); color: #fff; border-radius: 14px; padding: 28px 32px;
}
.contact-card p { margin-bottom: 10px; }
.contact-card .contact-name { font-weight: 700; font-size: 1.1rem; color: var(--amber); }
.contact-card a { color: #fff; text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }
.map iframe { width: 100%; height: 300px; border: 0; border-radius: 12px; margin-top: 16px; }

footer {
  text-align: center; padding: 28px; color: #a29b8a; font-size: 0.85rem;
  background: var(--sand);
}

/* ── Booking page ─────────────────────────────────── */
.hero-small { min-height: 320px; }
.hero-inner-small { padding-bottom: 40px; }
.hero-inner-small h1 { font-size: 2.4rem; }

.flash-banner {
  background: var(--sand); border: 1px solid var(--amber); border-radius: 10px;
  padding: 14px 18px; margin: 24px 0 0; font-size: 0.92rem; color: var(--teal-dark);
}
.flash-banner.flash-info { border-color: var(--teal-mid); }
.flash-banner a { color: var(--teal-mid); font-weight: 600; }

.facilities-list { display: flex; flex-direction: column; gap: 18px; padding-top: 40px; }
.facility-card {
  background: #fff; border: 1px solid #ece4d3; border-radius: 14px; padding: 22px 26px;
  display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: start;
}
.facility-type { font-size: 0.8rem; color: var(--amber-deep); font-weight: 600; margin-bottom: 4px; }
.facility-info h3 { font-size: 1.2rem; color: var(--teal-dark); margin-bottom: 6px; }
.facility-desc { color: var(--slate); font-size: 0.92rem; margin-bottom: 6px; }
.facility-capacity { font-size: 0.82rem; color: var(--slate); }
.facility-book { text-align: right; }
.facility-price { font-weight: 700; color: var(--teal-dark); margin-bottom: 10px; font-size: 1.05rem; }
.facility-price span { font-weight: 400; color: var(--slate); font-size: 0.82rem; }
.btn-sm { padding: 9px 18px; font-size: 0.88rem; }

.booking-form {
  grid-column: 1 / -1; display: none; border-top: 1px solid #ece4d3; padding-top: 16px; margin-top: 6px;
}
.booking-form.open { display: block; }
.booking-form-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; margin-bottom: 12px;
}
.booking-form label { display: block; font-size: 0.82rem; color: var(--slate); margin-bottom: 4px; }
.booking-form input, .booking-form textarea {
  width: 100%; padding: 8px 10px; border: 1px solid #ece4d3; border-radius: 8px; font-family: inherit; font-size: 0.9rem;
}
.booking-form textarea { margin-bottom: 12px; }

@media (max-width: 640px) {
  .hero h1 { font-size: 2.2rem; }
  .nav { padding: 18px 20px; }
  .nav-links a { margin-left: 16px; font-size: 0.85rem; }
  .hero-inner { padding: 24px 16px 60px; }
  .facility-card { grid-template-columns: 1fr; }
  .facility-book { text-align: left; }
}
