:root {
  --navy: #0e2538;
  --sea: #1f5f78;
  --sand: #f4efe6;
  --foam: #fdfbf7;
  --gold: #c1a66a;
  --text: #162533;
  --muted: #5e7283;
  --radius: 16px;
  --shadow: 0 18px 40px rgba(16, 42, 66, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #ecf7ff 0%, #f9f6ef 45%, #fffdf9 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(14, 37, 56, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--sea), var(--navy));
  color: #fff;
  font-family: "Playfair Display", serif;
}

.site-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--navy);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid #cbd7e2;
  background: #fff;
  color: var(--navy);
}

.hero {
  position: relative;
  min-height: 74vh;
  background-image: url('https://images.unsplash.com/photo-1473116763249-2faaef81ccda?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(9, 29, 45, 0.8), rgba(9, 29, 45, 0.25));
}

.hero-content {
  position: relative;
  color: #fff;
  padding: 120px 0 100px;
}

.kicker {
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  margin-top: 0;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.9rem);
  max-width: 780px;
  margin-bottom: 14px;
}

.hero p {
  max-width: 620px;
  margin-bottom: 24px;
}

.search-bar,
.filters {
  display: grid;
  gap: 10px;
  grid-template-columns: 1.5fr repeat(3, 1fr) auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow);
}

.filters {
  grid-template-columns: repeat(6, 1fr) auto;
}

input,
textarea,
select,
button {
  font: inherit;
}

input,
textarea,
select {
  border: 1px solid #d7dfe8;
  border-radius: 12px;
  padding: 11px 12px;
  width: 100%;
}

button,
.btn-solid,
.btn-outline {
  border: 0;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-link {
  border: 0;
  background: transparent;
  color: var(--sea);
  font-weight: 600;
  padding: 0;
}

button,
.btn-solid {
  background: linear-gradient(120deg, var(--sea), var(--navy));
  color: #fff;
}

.btn-outline {
  border: 1px solid var(--sea);
  color: var(--sea);
  background: transparent;
}

button:hover,
.btn-solid:hover,
.btn-outline:hover {
  transform: translateY(-1px);
}

.section {
  padding: 72px 0;
}

.section-tight {
  padding: 44px 0 24px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.property-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.property-card {
  background: var(--foam);
  border: 1px solid #e7edf3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.property-card-image {
  height: 220px;
  overflow: hidden;
}

.property-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-card-body {
  padding: 18px;
}

.property-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.price {
  white-space: nowrap;
  font-weight: 700;
  color: var(--navy);
}

.price small {
  color: var(--muted);
  font-size: 0.8rem;
}

.property-location,
.property-meta,
.results-note {
  color: var(--muted);
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  border: 1px solid #d9e5f1;
  background: #fff;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.84rem;
}

.coastal-band {
  background: linear-gradient(130deg, #0f2e46, #1e5f7a);
  color: #fff;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.benefits {
  padding-left: 20px;
}

.callout-card,
.panel,
.booking-panel {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  color: var(--text);
}

.page-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.listing-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
}

.price-badge {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy);
}

.price-badge small {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.listing-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.listing-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.listing-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
}

.availability-calendar {
  border: 1px solid #dce7f0;
  border-radius: 14px;
  padding: 14px;
  margin-top: 10px;
  background: #fff;
}

.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.calendar-toolbar button {
  padding: 8px 10px;
  border-radius: 8px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.calendar-weekday,
.calendar-day {
  text-align: center;
  padding: 8px 0;
  border-radius: 8px;
  font-size: 0.86rem;
}

.calendar-weekday {
  color: var(--muted);
  font-weight: 700;
}

.calendar-day {
  background: #f6f9fc;
  border: 1px solid #ebf1f6;
  min-height: 38px;
}

.calendar-day.is-empty {
  background: transparent;
  border: 0;
}

.calendar-day.is-blocked {
  background: #ffe8e8;
  border-color: #ffc4c4;
  color: #8f1f1f;
}

.calendar-day.is-selected {
  background: #e5f2ff;
  border-color: #9dc8ef;
  color: #0f3c60;
}

.calendar-legend {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.82rem;
}

.legend-swatch {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  border: 1px solid #d2dfeb;
}

.legend-swatch.blocked {
  background: #ffe8e8;
  border-color: #ffc4c4;
}

.legend-swatch.selected {
  background: #e5f2ff;
  border-color: #9dc8ef;
}

.payment-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.square-card {
  border: 1px solid #d8e2ec;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 12px;
}

.booking-panel form,
.panel form {
  display: grid;
  gap: 10px;
}

.alert {
  border-radius: 10px;
  padding: 10px;
}

.alert.success {
  background: #e8f8ee;
  color: #1a6b3a;
}

.alert.error {
  background: #ffe9e9;
  color: #8f1f1f;
}

.site-footer {
  background: #0d2232;
  color: #dbe8f0;
  padding: 54px 0 24px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.admin-stats h3 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.admin-stats p {
  margin: 0;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 12px 10px;
  border-bottom: 1px solid #e4ebf1;
  text-align: left;
  vertical-align: top;
}

thead th {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.admin-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.admin-message {
  border-bottom: 1px solid #e4ebf1;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.admin-message p {
  margin: 4px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.link-light {
  color: #fff;
  text-decoration: underline;
}

.footer-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 24px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal-links a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .property-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filters {
    grid-template-columns: repeat(3, 1fr);
  }

  .split-grid,
  .listing-layout {
    grid-template-columns: 1fr;
  }

  .payment-layout {
    grid-template-columns: 1fr;
  }

  .admin-stats,
  .admin-columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  /* ── Header ── */
  .brand-text {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    border: 1px solid #cbd7e2;
    background: #fff;
    color: var(--navy);
    padding: 8px 14px;
    font-size: 0.9rem;
    border-radius: 10px;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid rgba(14,37,56,0.08);
    box-shadow: 0 12px 32px rgba(14,37,56,0.12);
    padding: 8px 0 16px;
    flex-direction: column;
    align-items: stretch;
    border-radius: 0;
    z-index: 100;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(14,37,56,0.06);
    color: var(--navy);
  }

  .site-nav a:last-child {
    border-bottom: none;
    margin-top: 4px;
    color: var(--sea);
  }

  /* ── Layout ── */
  .search-bar,
  .filters {
    grid-template-columns: 1fr;
  }

  .property-grid,
  .listing-gallery,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .calendar-day {
    min-height: 32px;
    font-size: 0.78rem;
  }

  .admin-header,
  .admin-stats,
  .admin-columns {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

/* ═══════════════════════════════════════════════════════
   HERO — HOME
═══════════════════════════════════════════════════════ */
.hero-home {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center 30%;
}

.hero-home .hero-overlay {
  background: linear-gradient(
    150deg,
    rgba(6, 20, 33, 0.82) 0%,
    rgba(6, 20, 33, 0.55) 55%,
    rgba(6, 20, 33, 0.25) 100%
  );
}

.hero-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  display: block;
}

.hero-headline {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 18px;
  max-width: 820px;
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* Redesigned hero search bar */
.hero-search {
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 24px 64px rgba(6, 20, 33, 0.35);
  max-width: 900px;
  overflow: hidden;
  gap: 0;
  grid-template-columns: none;
}

.search-field {
  display: flex;
  flex-direction: column;
  padding: 14px 20px;
  flex: 1;
  gap: 2px;
}

/* Mobile search pill — hidden on desktop */
.hero-search-pill {
  display: none;
}

.search-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
}

.hero-search input {
  border: 0;
  border-radius: 0;
  padding: 0;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  background: transparent;
  width: 100%;
}

.hero-search input:focus {
  outline: none;
}

.search-divider {
  width: 1px;
  background: #e2eaf2;
  margin: 12px 0;
  flex-shrink: 0;
}

.hero-search-btn {
  border-radius: 0 14px 14px 0;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 1rem;
  background: linear-gradient(120deg, var(--sea), var(--navy));
  color: #fff;
  border: 0;
  cursor: pointer;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.hero-search-btn:hover {
  opacity: 0.9;
  transform: none;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--navy);
  padding: 28px 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  text-align: center;
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  margin: 0 16px;
}

/* ═══════════════════════════════════════════════════════
   DESTINATIONS GRID
═══════════════════════════════════════════════════════ */
.destinations-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 14px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  background-image: var(--dest-bg);
  background-size: cover;
  background-position: center;
  text-decoration: none;
}

.dest-large {
  grid-row: 1 / 3;
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 20, 33, 0.92) 0%, rgba(6, 20, 33, 0.45) 60%);
  transition: background 0.3s;
}

.dest-card:hover .dest-overlay {
  background: linear-gradient(to top, rgba(6, 20, 33, 0.96) 0%, rgba(6, 20, 33, 0.55) 60%);
}

.dest-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 1px 3px rgba(0,0,0,0.8);
}

.dest-count {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 4px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.9);
}

.dest-body h3 {
  margin: 0 0 8px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.dest-cta {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}

.dest-card:hover .dest-cta {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   SECTION SAND BG
═══════════════════════════════════════════════════════ */
.section-sand {
  background: var(--sand);
}

/* ═══════════════════════════════════════════════════════
   PROPERTY CARD — ENHANCED
═══════════════════════════════════════════════════════ */
.property-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(16, 42, 66, 0.18);
}

.property-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  display: block;
}

.property-card-image img {
  transition: transform 0.5s ease;
}

.property-card:hover .property-card-image img {
  transform: scale(1.05);
}

.property-card-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  padding: 6px 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  line-height: 1.2;
}

.property-card-badge small {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

.property-card-title {
  font-size: 1.1rem;
  margin: 4px 0 6px;
}

.property-card-title a:hover {
  color: var(--sea);
}

.property-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 2px;
}

.property-card-cta {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sea);
  transition: gap 0.2s;
}

.property-card-cta:hover {
  color: var(--navy);
}

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════ */
.how-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 44px;
}

.how-step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.how-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8f4fd, #d0eaf8);
  border: 1.5px solid #b8d9ef;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--sea);
}

.how-num {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.how-step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.how-step p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.how-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #b8d9ef, #d0eaf8);
  margin-top: 35px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   EXPERIENCE STRIP
═══════════════════════════════════════════════════════ */
.experience-strip {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('https://images.unsplash.com/photo-1613977257592-487ecd136cc3?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
  text-align: center;
}

.experience-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 20, 33, 0.78);
}

.experience-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 72px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 680px;
  width: 100%;
}

.experience-content h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  margin-bottom: 24px;
}

.experience-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  width: 100%;
}

.experience-list li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.experience-list svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--foam);
  border: 1px solid #e4eef7;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 6px 24px rgba(16, 42, 66, 0.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #e4eef7;
  padding-top: 14px;
  margin-top: auto;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sea), var(--navy));
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 0.9rem;
}

.review-author span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════
   OWNER BAND
═══════════════════════════════════════════════════════ */
.owner-band {
  background: linear-gradient(130deg, #0a1e2e, #1a4d65);
  padding: 80px 0;
}

.owner-band-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}

.owner-band-text {
  color: #fff;
}

.owner-band-text h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  margin-bottom: 14px;
}

.owner-band-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.owner-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.owner-features span {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.owner-cta-card {
  background: #fff;
}

.owner-cta-card h3 {
  margin-bottom: 4px;
}

/* ═══════════════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════════════ */
.final-cta-section {
  background: var(--sand);
  text-align: center;
}

.final-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.final-cta-inner h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 12px;
}

.final-cta-inner p {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.final-cta-btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 1.05rem;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — HOMEPAGE ADDITIONS
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .destinations-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .dest-large {
    grid-row: auto;
    grid-column: 1 / -1;
    height: 300px;
  }

  .experience-content {
    padding: 48px 24px;
  }

  .owner-band-inner {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  /* ════════════════════════════════════════════
     HERO — cinematic mobile redesign
  ════════════════════════════════════════════ */
  .hero-home {
    min-height: 100svh;
    align-items: center;
    background-position: center 38%;
  }

  /* Dramatic gradient: open sky at top, rich depth at bottom */
  .hero-home .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(6,20,33,0.10) 0%,
      rgba(6,20,33,0.42) 42%,
      rgba(6,20,33,0.90) 100%
    );
  }

  .hero-content {
    padding: 0 0 48px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Gold accent line above kicker */
  .hero-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    color: #c9a96e;
    margin-bottom: 18px;
}

/* ═══════════════════════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════════════════════ */
.legal-page {
  background: var(--foam);
  padding: 48px 24px;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 60px 48px;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(16, 42, 66, 0.08);
}

.legal-page h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.2;
}

.legal-page .last-updated {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 40px;
  font-style: italic;
}

.legal-page section {
  margin-bottom: 40px;
}

.legal-page h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
  margin: 28px 0 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(31, 95, 120, 0.1);
}

.legal-page h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.legal-page h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--sea);
  margin: 18px 0 12px;
}

.legal-page p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 14px;
}

.legal-page ul {
  margin: 12px 0 20px;
  padding-left: 24px;
}

.legal-page li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin: 8px 0;
}

.legal-page strong {
  color: var(--navy);
  font-weight: 600;
}

.legal-page a {
  color: var(--sea);
  text-decoration: underline;
  transition: color 0.2s;
}

.legal-page a:hover {
  color: var(--navy);
}

/* Mobile adjustments for legal pages */
@media (max-width: 760px) {
  .legal-page {
    padding: 24px 16px;
  }

  .legal-container {
    padding: 32px 20px;
  }

  .legal-page h1 {
    font-size: 1.8rem;
  }

  .legal-page h2 {
    font-size: 1.3rem;
  }

  .legal-page h3 {
    font-size: 1.05rem;
  }

  .legal-page p,
  .legal-page li {
    font-size: 0.9rem;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-legal-links {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .footer-legal-links a {
    display: block;
  }
}
    position: relative;
    padding-top: 24px;
  }

  .hero-kicker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a96e, transparent);
  }

  .hero-headline {
    font-size: clamp(2.7rem, 11vw, 3.5rem);
    line-height: 1.07;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
  }

  .hero-sub {
    font-size: 0.95rem;
    opacity: 0.80;
    margin-bottom: 36px;
    max-width: 300px;
    line-height: 1.65;
  }

  /* Desktop search form: gone on mobile */
  .hero-search {
    display: none !important;
  }

  /* ── Gold CTA button ── */
  .hero-search-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 100%;
    max-width: 320px;
    background: linear-gradient(135deg, #d4a84b 0%, #9e6f30 100%);
    border-radius: 18px;
    padding: 20px 28px;
    color: #fff;
    text-decoration: none;
    box-shadow:
      0 16px 48px rgba(158,111,48,0.55),
      0 4px 16px rgba(0,0,0,0.22),
      inset 0 1px 0 rgba(255,255,255,0.22);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }

  .hero-search-pill:active {
    transform: scale(0.96);
    box-shadow: 0 8px 24px rgba(158,111,48,0.4);
  }

  .pill-main {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .pill-sub {
    font-size: 0.76rem;
    opacity: 0.82;
    font-weight: 400;
    letter-spacing: 0.02em;
  }

  /* ── Trust strip: clean icon-label columns ── */
  .hero-trust {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 340px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.2);
  }

  .hero-trust span {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.66rem;
    text-align: center;
    padding: 0 6px;
    line-height: 1.3;
    border-right: 1px solid rgba(255,255,255,0.15);
    letter-spacing: 0.01em;
  }

  .hero-trust span:last-child {
    border-right: none;
  }

  .hero-trust svg {
    flex-shrink: 0;
  }

  /* ── Stats bar ── */
  .stats-grid {
    flex-wrap: wrap;
    gap: 0;
    padding: 4px 0;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    flex: 0 0 50%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.08);
  }

  .stat-number {
    font-size: 1.7rem;
  }

  /* ── Destinations ── */
  .destinations-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 10px;
  }

  .dest-large,
  .dest-card {
    height: 200px;
    grid-column: auto;
    grid-row: auto;
  }

  .dest-body h3 {
    font-size: 1.15rem;
  }

  /* ── Property cards ── */
  .property-card-image {
    height: 210px;
  }

  .property-card-body {
    padding: 16px;
  }

  .property-card-title {
    font-size: 1rem;
  }

  /* ── How it works ── */
  .how-grid {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .how-step {
    padding: 0 16px;
    max-width: 360px;
    width: 100%;
  }

  .how-connector {
    width: 2px;
    height: 28px;
    background: linear-gradient(180deg, #b8d9ef, #d0eaf8);
    margin: 8px 0;
  }

  /* ── Reviews ── */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* ── Owner band ── */
  .owner-band {
    padding: 52px 0;
  }

  .owner-band-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .owner-features {
    gap: 8px;
  }

  .owner-cta-card {
    padding: 28px 20px;
  }

  /* ── Section spacing ── */
  .section {
    padding: 48px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-meta {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

