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

:root {
  --bg: #f4f7f8;
  --ink: #0e1d2e;
  --muted: #4f6373;
  --brand: #0f8d9d;
  --brand-dark: #0b5f74;
  --accent: #ef8354;
  --surface: #ffffff;
  --line: #d7e2e7;
  --radius: 16px;
  --shadow: 0 18px 40px rgba(11, 29, 48, 0.09);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top right, #e9f7f8 0%, var(--bg) 35%, #f2f4f5 100%);
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
  background: rgba(244, 247, 248, 0.82);
  border-bottom: 1px solid rgba(14, 29, 46, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.header-nav {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.header-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.header-nav a:hover {
  color: var(--ink);
}

.logo {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  letter-spacing: 0.2px;
}

.logo small {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  box-shadow: 0 10px 24px rgba(15, 141, 157, 0.28);
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.hero {
  padding: 74px 0 44px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.hero-panel {
  background: linear-gradient(150deg, #12334d, #154b63 55%, #0f8d9d);
  color: #fff;
  border-radius: 24px;
  padding: 34px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 70%);
}

.hero-panel h1 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4.2vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.5px;
}

.hero-panel p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker {
  background: #eef8fa;
  color: var(--brand-dark);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-signals span {
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.stat {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.07);
}

.stat b {
  display: block;
  font-size: 23px;
}

.hero-visual {
  display: grid;
  gap: 12px;
}

.hero-visual-main,
.hero-mini-card,
.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-visual-main {
  overflow: hidden;
  min-height: 320px;
  position: relative;
}

.hero-visual-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-visual-badge {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, rgba(11, 24, 38, 0.78), rgba(12, 80, 101, 0.72));
  backdrop-filter: blur(8px);
}

.hero-visual-badge strong {
  font-size: 16px;
}

.hero-visual-badge span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-carousel-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 12px;
}

.hero-carousel-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.hero-carousel-tab {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(9, 26, 38, 0.42);
  color: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  transition: all .2s ease;
}

.hero-carousel-tab strong {
  display: block;
  font-size: 13px;
  margin-bottom: 3px;
}

.hero-carousel-tab span {
  font-size: 12px;
}

.hero-carousel-tab.active {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.92);
}

.hero-visual-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-mini-card {
  padding: 16px;
}

.hero-mini-card b {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.hero-mini-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.hero-mini-card.accent {
  background: linear-gradient(135deg, #fff7ee, #fff);
}

.hero-search-card {
  margin-bottom: 18px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.hero-search-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  align-items: end;
}

.hero-search-field {
  display: grid;
  gap: 6px;
}

.hero-search-field span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero-search-field select {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
}

.hero-search-actions {
  display: flex;
}

.hero-search-actions .btn {
  min-height: 48px;
}

.hero-card {
  padding: 20px;
}

.hero-card h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.hero-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.hero-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-card li {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
}

.seo-section {
  margin-top: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.seo-section h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.1;
}

.seo-section p {
  margin: 0 0 10px;
  color: var(--muted);
  max-width: 90ch;
}

.location-strip {
  margin-top: 18px;
}

.location-strip h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.location-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.location-chips a,
.featured-links a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 12px;
  font-weight: 600;
  color: #11445a;
}

.location-chips a:hover,
.featured-links a:hover {
  border-color: #9ac7cf;
  background: #f2fbfc;
}

.featured-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.faq-section {
  margin-top: 20px;
  margin-bottom: 10px;
}

.faq-section h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.faq-grid {
  display: grid;
  gap: 10px;
}

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 12px;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-grid p {
  margin: 8px 0 0;
  color: var(--muted);
}

.landing-hero {
  padding: 72px 0 34px;
}

.landing-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.landing-panel {
  padding: 30px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(145deg, #0f2638 0%, #123c53 52%, #0f8d9d 100%);
  box-shadow: 0 24px 48px rgba(9, 29, 44, 0.18);
}

.landing-panel h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.02;
}

.landing-panel p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
}

.landing-sidebar {
  display: grid;
  gap: 12px;
}

.landing-side-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.landing-side-card h2,
.landing-side-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.landing-side-card p,
.landing-side-card li {
  color: var(--muted);
}

.landing-trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.landing-trust-list li {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  background: #f8fbfc;
}

.landing-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.landing-stat {
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.landing-stat b {
  display: block;
  font-size: 22px;
}

.landing-intro {
  margin-top: 18px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 14px;
}

.landing-intro-card,
.landing-points {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.landing-intro-card h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.04;
}

.landing-intro-card p {
  margin: 0;
  color: var(--muted);
}

.landing-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.landing-points article {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid #e4edf0;
  background: linear-gradient(180deg, #f9fbfc, #ffffff);
}

.landing-points b {
  display: block;
  margin-bottom: 8px;
}

.landing-points span {
  color: var(--muted);
  line-height: 1.5;
}

.landing-feature-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-feature {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.landing-feature h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.landing-feature p {
  margin: 0;
  color: var(--muted);
}

.landing-cta-bar {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, #0b2434 0%, #15516b 58%, #0f8d9d 100%);
  box-shadow: 0 22px 44px rgba(7, 32, 48, 0.2);
}

.landing-cta-bar h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.03;
}

.landing-cta-bar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.landing-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.homepage-section {
  margin-top: 24px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 14px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
}

.discovery-ribbon {
  margin-top: 18px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 14px;
}

.discovery-copy,
.discovery-points {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.discovery-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.3vw, 42px);
  line-height: 1.04;
}

.discovery-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
}

.discovery-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.discovery-points article {
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(180deg, #f8fbfc, #ffffff);
  border: 1px solid #e2ecef;
}

.discovery-points b {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.discovery-points span {
  color: var(--muted);
  line-height: 1.5;
}

.destination-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.destination-card {
  position: relative;
  min-height: 280px;
  border-radius: 22px;
  overflow: hidden;
  color: #fff;
  background: #123;
  box-shadow: var(--shadow);
}

.destination-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 23, 35, 0.16), rgba(7, 26, 36, 0.82));
}

.destination-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-body {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.destination-tag {
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.destination-body h3 {
  margin: 0 0 6px;
  font-size: 28px;
}

.destination-body p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.86);
}

.destination-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.destination-count {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.74);
}

.destination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-weight: 700;
}

.collection-band {
  margin-top: 22px;
}

.collection-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.collection-card {
  background: linear-gradient(180deg, #ffffff, #f7fbfc);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.collection-card .eyebrow-lite {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eff8fa;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.collection-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.collection-card ul {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.collection-card li {
  color: var(--ink);
  padding-left: 16px;
  position: relative;
}

.collection-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.highlights-band {
  margin-top: 22px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.highlight-card,
.theme-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 18px;
  box-shadow: var(--shadow);
}

.highlight-card h3,
.theme-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.highlight-card p,
.theme-card p {
  margin: 0;
  color: var(--muted);
}

.theme-grid,
.review-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.theme-card {
  background: linear-gradient(180deg, #ffffff, #f7fafb);
}

.reviews-section .section-head {
  margin-bottom: 12px;
}

.review-card {
  margin: 0;
}

.review-card p {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.55;
}

.review-card cite {
  color: var(--brand-dark);
  font-style: normal;
  font-weight: 700;
}

.final-cta {
  margin-top: 24px;
  margin-bottom: 8px;
}

.final-cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, #0c2537 0%, #11445a 55%, #0f8d9d 100%);
  box-shadow: 0 22px 44px rgba(7, 32, 48, 0.22);
}

.final-cta-panel h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

.final-cta-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  max-width: 64ch;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filters {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow);
  margin: 8px 0 20px;
}

.filters-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.filters-topline strong {
  font-size: 18px;
}

.filters-topline span {
  color: var(--muted);
}

.filters-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 10px;
}

.field {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  font: inherit;
  width: 100%;
}

.results-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 14px 0;
}

.results-row h2 {
  margin: 0;
  font-size: 26px;
}

.results-count {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.property-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.card-cover { display: block; height: 220px; overflow: hidden; }
.card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.property-card:hover .card-cover img { transform: scale(1.04); }

.property-card::before {
  content: "Direct";
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.card-price {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-weight: 800;
  color: var(--ink);
}

.card-price small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.card-price.on-request {
  color: var(--brand-dark);
  font-size: 14px;
}

.card-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.card-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: #f4fafb;
  border: 1px solid #dbe8ec;
  color: #214a5d;
}

.card-trust .calendar-live {
  background: #eaf8f2;
  border-color: #cde7db;
  color: #0d7c57;
}

.card-availability-widget {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e5ecef;
}

.card-availability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.card-availability-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.card-availability-actions .btn {
  width: 100%;
}

.card-availability-status {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.card-availability-status.success {
  color: #0d7c57;
  font-weight: 700;
}

.card-availability-status.error {
  color: #a33b3b;
  font-weight: 700;
}

.card-body { padding: 14px; }
.eyebrow { color: var(--brand-dark); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .4px; }
.card-body h3 { margin: 8px 0 8px; font-size: 21px; }
.card-body p { margin: 0 0 10px; color: var(--muted); min-height: 44px; }
.meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.meta span, .chip {
  font-size: 12px;
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #f9fbfc;
}
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }

.footer {
  margin-top: 34px;
  padding: 20px 0 36px;
  color: var(--muted);
  font-size: 14px;
}

/* Property page */
.property-hero {
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 90px 0 34px;
}

.property-hero h1 {
  margin: 0;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.02;
}

.property-hero p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.92);
}

.property-wrap {
  margin-top: 20px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1.15fr .85fr;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  padding: 16px;
  box-shadow: var(--shadow);
}

.gallery {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.property-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.property-list li {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
}

.property-copy {
  color: var(--muted);
  line-height: 1.7;
}

.property-copy p {
  margin: 0 0 12px;
}

.property-location-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: linear-gradient(180deg, #fbfdfe, #f5fafb);
}

.property-location-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.property-location-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.property-location-actions {
  margin-top: 14px;
}

.property-map-frame {
  margin-top: 14px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #eef5f7;
}

.property-map-frame iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.form-grid .full { grid-column: 1 / -1; }

.availability-box {
  margin-bottom: 14px;
  border-radius: 12px;
  padding: 12px;
  font-weight: 600;
}

.availability-idle {
  background: #eef6f8;
  border: 1px solid #d6e2e7;
  color: #34505f;
}

.availability-ok {
  background: #eaf8f2;
  border: 1px solid #cfe9dc;
  color: #0f7d59;
}

.availability-busy {
  background: #fff2f2;
  border: 1px solid #efcccc;
  color: #a33b3b;
}

@media (max-width: 1024px) {
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid, .property-wrap { grid-template-columns: 1fr; }
  .browse-dock { position: static; align-items: stretch; flex-direction: column; }
  .browse-dock-grid { grid-template-columns: 1fr; min-width: 0; width: 100%; }
  .hero-search-grid,
  .discovery-ribbon,
  .destination-grid,
  .collection-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual-grid,
  .theme-grid,
  .review-grid,
  .highlights-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .discovery-points { grid-template-columns: 1fr; }
  .final-cta-panel { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 680px) {
  .filters-grid, .form-grid { grid-template-columns: 1fr; }
  .grid, .gallery { grid-template-columns: 1fr; }
  .browse-dock-grid { grid-template-columns: 1fr; min-width: 0; }
  .hero-search-grid,
  .discovery-ribbon,
  .destination-grid,
  .collection-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 56px; }
  .site-header .container { padding: 12px 0; }
  .logo { font-size: 22px; }
  .logo small { display: none; }
  .hero-visual-grid,
  .theme-grid,
  .review-grid,
  .highlights-band { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .filters-topline { flex-direction: column; align-items: flex-start; }
  .hero-actions,
  .final-cta-actions { width: 100%; }
  .hero-actions .btn,
  .final-cta-actions .btn,
  .hero-search-actions .btn { width: 100%; }
}

.header-actions {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.process-strip {
  margin-top: 6px;
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.process-step b {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.browse-dock-wrap {
  margin-top: 12px;
}

.browse-dock {
  position: sticky;
  top: 74px;
  z-index: 18;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(17, 68, 90, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 34px rgba(11, 29, 48, 0.08);
}

.browse-dock-copy {
  display: grid;
  gap: 4px;
}

.browse-dock-copy strong {
  font-size: 18px;
}

.browse-dock-copy span {
  color: var(--muted);
  font-size: 14px;
}

.browse-dock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  align-items: center;
  min-width: min(100%, 640px);
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.28);
}

.mobile-cta-bar {
  display: none;
}

@media (max-width: 680px) {
  .process-strip { grid-template-columns: 1fr; }
  .header-actions .btn { padding: 9px 12px; }
  .header-nav { display: none; }
  .wa-float { bottom: 78px; }
  .mobile-cta-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 14px;
    z-index: 45;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border-radius: 18px;
    background: rgba(12, 37, 55, 0.92);
    box-shadow: 0 18px 36px rgba(11, 29, 48, 0.24);
    backdrop-filter: blur(12px);
  }
  .mobile-cta-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 700;
  }
  .mobile-cta-bar a:last-child {
    background: #25d366;
    color: #fff;
  }
  .card-availability-grid,
  .card-availability-actions {
    grid-template-columns: 1fr;
  }
}
