:root {
  --ink: #1b2430;
  --ink-soft: #4a5563;
  --paper: #f6f1e8;
  --sand: #e7d7c1;
  --white: #fffcf7;
  --gulf: #0e6b73;
  --gulf-deep: #0a4d54;
  --gulf-bright: #1a8f8a;
  --coral: #c45c3e;
  --line: rgba(27, 36, 48, 0.12);
  --shadow: 0 18px 50px rgba(10, 40, 48, 0.12);
  --max: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: var(--gulf-deep); }

.wrap { width: min(var(--max), calc(100% - 2.4rem)); margin-inline: auto; }

.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 0; gap: 1rem;
}
.brand {
  font-family: Fraunces, Georgia, serif;
  font-weight: 600; font-size: 1.15rem;
  text-decoration: none; color: var(--ink);
  letter-spacing: -0.02em;
}
.nav-links { display: flex; gap: 1.1rem; align-items: center; flex-wrap: wrap; }
.nav-links a { text-decoration: none; color: var(--ink-soft); font-size: 0.95rem; }
.nav-links a:hover { color: var(--gulf-deep); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gulf); color: #fff !important; text-decoration: none;
  border: 0; border-radius: 999px; padding: 0.7rem 1.15rem;
  font-weight: 600; cursor: pointer; font-size: 0.95rem;
}
.btn:hover { background: var(--gulf-deep); }
.btn-ghost {
  background: transparent; color: var(--gulf-deep) !important;
  border: 1px solid var(--gulf);
}

.hero {
  position: relative;
  min-height: min(86vh, 760px);
  display: grid; place-items: end start;
  background: #123 url("images/beach-sunset.jpg") center/cover no-repeat;
  color: #fff;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,30,36,0.15) 20%, rgba(10,30,36,0.72) 100%);
}
.hero-copy { position: relative; z-index: 1; padding: 3.5rem 0 3rem; max-width: 38rem; }
.kicker {
  text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.72rem; font-weight: 700; color: #f0d9b5;
  margin-bottom: 0.7rem;
}
.hero h1 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08; font-weight: 560; margin-bottom: 0.8rem;
}
.hero p { font-size: 1.12rem; color: #f3eee6; margin-bottom: 1.3rem; }
.hero-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.hero .btn { background: var(--coral); }
.hero .btn:hover { background: #a84b32; }

.band {
  background: var(--gulf-deep); color: #e8f3f3;
  padding: 0.9rem 0; font-size: 0.95rem;
}
.band strong { color: #fff; }

section { padding: 4.2rem 0; }
h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 0.5rem; letter-spacing: -0.02em;
}
.lede { color: var(--ink-soft); max-width: 40rem; margin-bottom: 1.8rem; }

.gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-auto-rows: 210px;
  gap: 0.65rem;
}
.gallery figure { margin: 0; overflow: hidden; border-radius: 14px; background: #ccc; position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery figure:first-child { grid-row: 1 / span 2; }
.gallery figcaption {
  position: absolute; left: 0.7rem; bottom: 0.6rem;
  color: #fff; font-size: 0.78rem; text-shadow: 0 1px 8px #000;
}

.two {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 2.4rem; align-items: start;
}
.amenities { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem 1.2rem; list-style: none; }
.amenities li::before { content: "▸ "; color: var(--gulf); font-weight: 700; }

.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 18px; padding: 1.25rem 1.3rem; box-shadow: var(--shadow);
}
.price-table { width: 100%; border-collapse: collapse; font-size: 0.98rem; }
.price-table th, .price-table td { text-align: left; padding: 0.7rem 0.35rem; border-bottom: 1px solid var(--line); }
.price-table th { color: var(--ink-soft); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; }
.price { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--gulf-deep); }
.badge {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.18rem 0.45rem; border-radius: 999px;
}
.badge-open { background: #d7f0ea; color: #0a4d54; }
.badge-booked { background: #f3d6cf; color: #8a2e1c; }
.save-callout {
  margin-top: 1rem; padding: 0.9rem 1rem;
  background: #eef6f4; border-left: 4px solid var(--gulf); border-radius: 0 10px 10px 0;
}

.cal-wrap { display: grid; grid-template-columns: 1fr 280px; gap: 1.4rem; align-items: start; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.7rem; }
.cal-head button {
  background: var(--white); border: 1px solid var(--line); border-radius: 8px;
  width: 2.1rem; height: 2.1rem; cursor: pointer; font-size: 1.1rem;
}
.cal-title { font-family: Fraunces, Georgia, serif; font-size: 1.25rem; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-grid .dow { text-align: center; font-size: 0.72rem; color: var(--ink-soft); padding: 0.3rem 0; }
.day {
  aspect-ratio: 1; display: grid; place-items: center;
  border-radius: 8px; font-size: 0.86rem; background: var(--white);
  border: 1px solid transparent;
}
.day.muted { color: #b7b1a8; background: transparent; }
.day.open { background: #e5f4f1; }
.day.booked { background: #c45c3e; color: #fff; text-decoration: line-through; }
.day.today { border-color: var(--gulf); font-weight: 700; }
.legend { display: flex; gap: 1rem; margin-top: 0.8rem; font-size: 0.85rem; color: var(--ink-soft); }
.swatch { display: inline-block; width: 0.85rem; height: 0.85rem; border-radius: 3px; margin-right: 0.3rem; vertical-align: -1px; }

form { display: grid; gap: 0.7rem; }
label { font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); }
input, select, textarea {
  width: 100%; padding: 0.65rem 0.7rem; border-radius: 10px;
  border: 1px solid var(--line); background: #fff; font: inherit;
}
textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.fine { font-size: 0.82rem; color: var(--ink-soft); }

footer {
  background: var(--ink); color: #d7d2c8; padding: 2rem 0 2.4rem; font-size: 0.9rem;
}
footer a { color: #f0e6d6; }
.foot { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 800px) {
  .gallery, .two, .cal-wrap, .form-row { grid-template-columns: 1fr; }
  .gallery { grid-template-rows: 220px 160px 160px; }
  .gallery figure:first-child { grid-row: auto; height: 240px; }
  .nav-links a:not(.btn) { display: none; }
}
