/* =========================================================
   ISLE & SEA — Design System
   French Caribbean editorial • light, airy, refined
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  /* Palette */
  --sand: #faf6f0;
  --sand-deep: #f1eade;
  --cream: #fffdf8;
  --ink: #1a2e2c;
  --ink-soft: #435754;
  --muted: #8a9794;
  --line: #e6ddd0;
  --sea: #4a8a86;
  --sea-deep: #2f6b67;
  --sea-pale: #e6f0ee;
  --coral: #d96f4a;
  --coral-deep: #b95a38;
  --gold: #c9a861;
  --shadow-sm: 0 2px 8px rgba(26,46,44,0.04);
  --shadow-md: 0 8px 24px rgba(26,46,44,0.08);
  --shadow-lg: 0 24px 60px rgba(26,46,44,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; }
h3 { font-size: 1.5rem; font-weight: 500; }
h4 { font-size: 1.15rem; font-weight: 500; }

p { color: var(--ink-soft); }

a { color: var(--sea-deep); text-decoration: none; }

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

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============== Layout ============== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 96px 0; }
.section-sm { padding: 56px 0; }

/* ============== Header ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sea) 0%, var(--gold) 100%);
  display: inline-block;
}

.logo em {
  font-style: italic;
  color: var(--sea-deep);
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--coral);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-social {
  display: flex;
  gap: 4px;
  margin-right: 4px;
}
.nav-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  background: var(--sand);
}
.nav-social a:hover {
  background: var(--sea-pale);
  transform: scale(1.1);
}

/* ============== Buttons ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--coral);
  color: white;
}
.btn-primary:hover {
  background: var(--coral-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(217, 111, 74, 0.3);
}

.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-dark:hover { background: var(--sea-deep); }

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--cream); }

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ============== Hero ============== */
.hero {
  position: relative;
  padding: 80px 0 64px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #2f6b67;
  margin-bottom: 28px;
}
.hero-eyebrow em {
  font-style: italic;
}
.hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: #2f6b67;
  opacity: 0.6;
}

.hero h1 {
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--sea-deep);
  font-weight: 300;
}

.hero-lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.hero-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--ink);
  display: block;
}
.hero-stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  height: 580px;
}

.hero-img {
  position: absolute;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

.hero-img-1 {
  width: 75%;
  height: 70%;
  top: 0;
  right: 0;
}
.hero-img-2 {
  width: 50%;
  height: 45%;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.hero-badge {
  position: absolute;
  top: 30%;
  left: -10px;
  background: var(--cream);
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--sea-pale); display: grid; place-items: center;
  color: var(--sea-deep);
}
.hero-badge-text { font-size: 0.85rem; line-height: 1.3; }
.hero-badge-text strong { display: block; color: var(--ink); }
.hero-badge-text span { color: var(--muted); font-size: 0.75rem; }

/* ============== Search Bar ============== */
.search-bar {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr auto;
  gap: 4px;
  box-shadow: var(--shadow-md);
  margin-top: 8px;
  max-width: 620px;
}

.search-field {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
}
.search-field:hover { background: var(--sand); }

.search-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.search-field select, .search-field input {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
  outline: none;
  padding: 0;
  cursor: pointer;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* Custom chevron arrow on dropdowns — replaces native arrow that overlapped text */
.search-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23667' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 12px;
}

.search-submit {
  background: var(--coral);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 0 24px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.search-submit:hover { background: var(--coral-deep); }

/* ============== Trust Strip (Marketplace Stats) ============== */
.trust-strip {
  background-color: #faf6f0 !important;
  background-image: none !important;
  background: #faf6f0 !important;
  padding: 44px 0 40px !important;
  border-top: 1px solid #e6ddd0 !important;
  border-bottom: 1px solid #e6ddd0 !important;
  color: #1a2e2c !important;
  text-align: left !important;
}

.trust-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 24px 64px;
}

.trust-stat {
  text-align: center;
  min-width: 80px;
}

.trust-stat-num {
  font-family: 'Fraunces', serif !important;
  font-size: 1.75rem !important;
  font-weight: 400 !important;
  color: #1a2e2c !important;
  line-height: 1;
  letter-spacing: -0.01em;
}

.trust-stat-num em {
  font-style: italic !important;
  color: #2f6b67 !important;
  font-weight: 300 !important;
}

.trust-stat-label {
  font-family: 'Manrope', sans-serif !important;
  font-size: 0.68rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: #8a9794 !important;
  margin-top: 8px;
}

/* ============== Category Strip ============== */
.category-strip {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.category-item {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--line);
  transition: transform 0.3s;
  cursor: pointer;
}
.category-item:last-child { border-right: none; }
.category-item:hover { transform: translateY(-3px); }

.category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(74, 138, 134, 0.08);
  color: #2f6b67;
  transition: background 0.2s, color 0.2s;
}
.category-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}
.category-item:hover .category-icon {
  background: rgba(74, 138, 134, 0.16);
  color: #1a4f4b;
}
.category-item h4 {
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  margin-bottom: 3px;
}
.category-item p {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ============== Section headers ============== */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 32px;
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

.section-head h2 em {
  font-style: italic;
  color: var(--sea-deep);
  font-weight: 300;
}

.section-head p {
  max-width: 480px;
  text-align: right;
}

/* ============== Cards ============== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.card {
  background: var(--cream);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sea-pale);
}

.card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--sand-deep);
}
.card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.card:hover .card-image img { transform: scale(1.05); }

.card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--cream);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.card-tag.featured { background: var(--coral); color: white; }

.card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.82rem;
  color: var(--muted);
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--ink);
  font-weight: 600;
}
.card-rating .star { color: var(--gold); }

.card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  margin-bottom: 6px;
  color: var(--ink);
}

.card-location {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
  flex: 1;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.card-feature {
  font-size: 0.72rem;
  background: var(--sea-pale);
  color: var(--sea-deep);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 500;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.card-price {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--ink);
  font-weight: 500;
}
.card-price small {
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
  margin-left: 4px;
}

/* ============== Page Hero (interior pages) ============== */
.page-hero {
  padding: 64px 0 48px;
  text-align: center;
  background: linear-gradient(180deg, var(--sea-pale) 0%, var(--sand) 100%);
}

.page-hero .hero-eyebrow { justify-content: center; display: inline-flex; }
.page-hero .hero-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--sea);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin-bottom: 16px;
}
.page-hero h1 em { font-style: italic; color: var(--sea-deep); font-weight: 300; }

.page-hero p {
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ============== Filters ============== */
.filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
  align-items: center;
}

.filter-pill {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-pill:hover { border-color: var(--ink); }
.filter-pill.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.filter-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-right: 8px;
  font-weight: 500;
}

/* ============== Booking modal / form ============== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26, 46, 44, 0.5);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s;
}
.modal-backdrop.open { display: flex; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.modal {
  background: var(--cream);
  border-radius: 16px;
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-header {
  padding: 28px 32px 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.modal-header h3 { font-family: 'Fraunces', serif; font-size: 1.5rem; }
.modal-header p { font-size: 0.85rem; margin-top: 4px; }
.modal-close {
  background: var(--sand);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink-soft);
  font-size: 1.2rem;
}
.modal-close:hover { background: var(--sand-deep); }

.modal-body { padding: 28px 32px; }
.modal-footer { padding: 20px 32px 28px; border-top: 1px solid var(--line); }

/* ============== Forms ============== */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.form-row.single { grid-template-columns: 1fr; }

.form-group { display: flex; flex-direction: column; }

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.form-group input, .form-group select, .form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--sea);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-helper {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 6px;
}

/* ============== Booking summary ============== */
.booking-summary {
  background: var(--sand);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.booking-summary img {
  width: 80px; height: 80px;
  border-radius: 8px;
  object-fit: cover;
}
.booking-summary h4 { font-family: 'Fraunces', serif; margin-bottom: 4px; }
.booking-summary p { font-size: 0.85rem; margin: 0; }

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.summary-row.total {
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 16px;
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  color: var(--ink);
  font-weight: 500;
}

/* ============== Featured event banner ============== */
.event-banner {
  background: linear-gradient(135deg, var(--ink) 0%, var(--sea-deep) 100%);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  color: var(--cream);
  position: relative;
}
.event-banner-content {
  padding: 56px 48px;
}
.event-banner h2 {
  color: var(--cream);
  margin-bottom: 16px;
}
.event-banner h2 em { color: var(--gold); font-style: italic; font-weight: 300; }
.event-banner p {
  color: rgba(255,253,248,0.8);
  margin-bottom: 28px;
}
.event-banner-img {
  background-size: cover;
  background-position: center;
  min-height: 360px;
}
.event-meta {
  display: flex;
  gap: 32px;
  margin-bottom: 28px;
  font-size: 0.9rem;
  color: rgba(255,253,248,0.85);
}
.event-meta strong { display: block; color: var(--gold); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ============== Trust banner (lower page) ============== */
.trust-banner {
  background: var(--ink);
  color: var(--cream);
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.trust-banner span { color: var(--gold); margin: 0 12px; }

/* ============== Footer ============== */
.site-footer {
  background: var(--ink);
  color: rgba(255,253,248,0.7);
  padding: 80px 0 32px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.9rem; max-width: 320px; }

.footer-col h4 {
  color: var(--cream);
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,253,248,0.7);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,253,248,0.12);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============== Toast ============== */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--ink);
  color: var(--cream);
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 380px;
}
.toast.show { transform: translateY(0); }
.toast-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sea);
  display: grid; place-items: center;
  flex-shrink: 0;
}

/* ============== Detail page ============== */
.detail-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

.detail-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 8px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
}
.detail-gallery .main-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}
.detail-gallery .side-imgs {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}
.detail-gallery .side-imgs > div {
  background-size: cover;
  background-position: center;
}

.booking-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-sm);
}

.booking-card-price {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.booking-card-price small {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
}

.booking-card hr {
  border: none; border-top: 1px solid var(--line); margin: 20px 0;
}

/* ============== Unclaimed Listings ============== */
.unclaimed-card {
  opacity: 0.92;
  position: relative;
}
.unclaimed-card:hover { opacity: 1; }
.unclaimed-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}
.unclaimed-image img {
  filter: brightness(0.85) saturate(0.7);
  transition: filter 0.3s;
}
.unclaimed-card:hover .unclaimed-image img {
  filter: brightness(0.95) saturate(0.85);
}
.unclaimed-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--sand) 0%, #e8e3db 100%);
  display: grid;
  place-items: center;
}
.unclaimed-icon {
  font-size: 3rem;
  opacity: 0.4;
}
.unclaimed-banner {
  position: absolute;
  top: 12px;
  left: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 6px 16px 6px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0 6px 6px 0;
}
.unclaimed-cta {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.unclaimed-text {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 10px;
  text-align: center;
}
.unclaimed-divider {
  text-align: center;
  padding: 48px 24px 24px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
}
.unclaimed-divider::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--line);
}
.unclaimed-divider span {
  background: #f4f1eb;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* ============== Social ============== */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,253,248,0.1);
  display: grid;
  place-items: center;
  color: rgba(255,253,248,0.7);
  font-size: 1.1rem;
  transition: all 0.2s;
  text-decoration: none;
}
.social-link:hover {
  background: rgba(255,253,248,0.2);
  color: var(--gold);
  transform: translateY(-2px);
}

.social-banner {
  background: var(--ink);
  color: var(--cream);
  padding: 56px 0;
  text-align: center;
}
.social-banner h2 { color: var(--cream); margin-bottom: 12px; }
.social-banner h2 em { color: var(--gold); font-style: italic; font-weight: 300; }
.social-banner p { color: rgba(255,253,248,0.7); max-width: 480px; margin: 0 auto 24px; }
.social-handles {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.social-handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  background: rgba(255,253,248,0.08);
  color: var(--cream);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  text-decoration: none;
}
.social-handle:hover { background: rgba(255,253,248,0.15); transform: translateY(-2px); }

/* Card share button */
.card-share {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(26,46,44,0.55);
  color: var(--cream);
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: none;
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
  z-index: 2;
}
.card-image:hover .card-share { opacity: 1; }
.card-share:hover { background: rgba(26,46,44,0.85); }

.share-menu {
  position: absolute;
  bottom: 48px;
  right: 8px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px;
  box-shadow: var(--shadow-md);
  display: none;
  z-index: 10;
  min-width: 160px;
}
.share-menu.open { display: block; }
.share-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s;
}
.share-menu a:hover { background: var(--sand); }

/* ============== Carousel ============== */
.card-image.carousel {
  position: relative;
}

.card-image .carousel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.card-image .carousel-img.active {
  opacity: 1;
  pointer-events: auto;
}
/* Keep the first image visible to preserve aspect ratio */
.card-image .carousel-img:first-child {
  position: relative;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.9);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(26, 46, 44, 0.15);
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
  z-index: 2;
  font-weight: 600;
  padding-bottom: 3px;
}
.card-image.carousel:hover .carousel-btn { opacity: 1; }
.carousel-btn:hover { background: var(--cream); }
.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }

.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
  background: rgba(26, 46, 44, 0.35);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.5);
  cursor: pointer;
  transition: all 0.2s;
}
.carousel-dot.active {
  background: var(--cream);
  width: 18px;
  border-radius: 3px;
}
.carousel-dot:hover { background: rgba(255, 253, 248, 0.8); }

.carousel-expand {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(26, 46, 44, 0.55);
  color: var(--cream);
  font-size: 0.95rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: none;
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
  z-index: 2;
}
.card-image.carousel:hover .carousel-expand { opacity: 1; }
.carousel-expand:hover { background: rgba(26, 46, 44, 0.85); }

/* Mobile: always show controls */
@media (max-width: 768px) {
  .carousel-btn, .carousel-expand { opacity: 1; }
}

/* ============== Lightbox ============== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26, 46, 44, 0.96);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px 20px;
  animation: fadeIn 0.25s;
}
.lightbox.open { display: flex; }

.lb-img {
  max-width: 90vw;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.3s;
}

.lb-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.15);
  color: var(--cream);
  font-size: 1.6rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: none;
  backdrop-filter: blur(8px);
}
.lb-close:hover { background: rgba(255, 253, 248, 0.25); }

.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.12);
  color: var(--cream);
  font-size: 2rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: none;
  backdrop-filter: blur(8px);
  padding-bottom: 4px;
  font-weight: 300;
}
.lb-btn:hover { background: rgba(255, 253, 248, 0.22); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }

.lb-caption {
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  margin-top: 20px;
  opacity: 0.85;
  letter-spacing: 0.02em;
}

.lb-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  max-width: 90vw;
  overflow-x: auto;
  padding: 8px 4px;
}
.lb-thumb {
  width: 72px;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.lb-thumb:hover { opacity: 0.85; }
.lb-thumb.active {
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(201, 168, 97, 0.4);
}

@media (max-width: 768px) {
  .lb-btn { width: 42px; height: 42px; font-size: 1.6rem; }
  .lb-prev { left: 12px; }
  .lb-next { right: 12px; }
  .lb-thumb { width: 56px; height: 38px; }
}

/* ============== Responsive ============== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 400px; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .category-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .category-item { border: none; padding: 16px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-head p { text-align: left; }
  .event-banner { grid-template-columns: 1fr; }
  .event-banner-img { min-height: 240px; order: -1; }
  .detail-grid { grid-template-columns: 1fr; }
  .booking-card { position: static; }
  .search-bar { grid-template-columns: 1fr 1fr; }
  .search-submit { grid-column: span 2; padding: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .trust-strip { padding: 32px 0 28px; }
  .trust-stats { gap: 20px 32px; }
  .trust-stat-num { font-size: 1.45rem; }
  .trust-stat-label { font-size: 0.62rem; letter-spacing: 0.14em; }
}

/* ===== MOBILE HAMBURGER MENU ===== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 100;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: all 0.3s;
  border-radius: 2px;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background-color: #fffdf8;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 1000;
    padding: 80px 32px;
    margin: 0;
    list-style: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { font-size: 1.3rem; }
  .nav-cta { display: none; }
  .nav-links.open ~ .nav-cta { display: none; }
  .nav { padding: 12px 20px; }
}

/* ===== NEWSLETTER CAPTURE ===== */
.newsletter-section {
  background: var(--sea-deep);
  color: var(--cream);
  padding: 64px 32px;
  text-align: center;
}
.newsletter-section h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.newsletter-section p {
  color: rgba(255,253,248,0.7);
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 440px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255,253,248,0.3);
  border-radius: 8px;
  background: rgba(255,253,248,0.1);
  color: white;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: rgba(255,253,248,0.5); }
.newsletter-form button {
  padding: 12px 24px;
  background: var(--coral);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: #c25a38; }

/* ===== COMPARISON CALLOUT ===== */
.comparison-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin: 48px 0;
}
.comp-col {
  padding: 32px;
  text-align: center;
}
.comp-col h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.comp-col .comp-rate {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Fraunces', serif;
}
.comp-col .comp-detail {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 4px;
}
.comp-vs {
  background: var(--ink);
  color: var(--cream);
  padding: 16px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}
.comp-col.ours { background: var(--sea-pale); }
.comp-col.ours .comp-rate { color: var(--sea-deep); }
@media (max-width: 600px) {
  .comparison-strip { grid-template-columns: 1fr; }
  .comp-vs { padding: 8px; }
}
