:root {
  color-scheme: light;
  --ink: #18211d;
  --muted: #647069;
  --paper: #fbfbf7;
  --surface: #ffffff;
  --line: #dce4df;
  --sea: #0e766d;
  --sea-dark: #0b514c;
  --coral: #d15f3f;
  --gold: #c8943d;
  --gold-soft: #fff4dc;
  --sky: #d9edf1;
  --shadow: 0 20px 60px rgba(24, 33, 29, 0.14);
  --shadow-strong: 0 28px 80px rgba(6, 16, 14, 0.18);
  --shadow-card: 0 18px 44px rgba(24, 33, 29, 0.1);
  --shadow-float: 0 26px 70px rgba(6, 16, 14, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(200, 148, 61, 0.52);
  outline-offset: 3px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 11px 12px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #8b9991;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 18px;
  left: clamp(14px, 3vw, 42px);
  right: clamp(14px, 3vw, 42px);
  display: grid;
  grid-template-columns: minmax(160px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(7, 24, 22, 0.48)),
    rgba(7, 24, 22, 0.52);
  box-shadow: 0 20px 54px rgba(6, 16, 14, 0.24);
  backdrop-filter: blur(14px);
  padding: 12px 14px;
  color: #fff;
}

.brand {
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
  text-shadow: 0 2px 16px rgba(6, 16, 14, 0.28);
}

.brand:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.16);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  padding: 0 12px;
}

.site-nav {
  position: relative;
  z-index: 3;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.site-nav > a,
.nav-group summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 8px;
  cursor: pointer;
  list-style: none;
  padding: 0 10px;
  font-weight: 800;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.site-nav > a:hover,
.site-nav > a.is-active,
.nav-group[open] summary,
.nav-group.has-active summary,
.nav-group summary:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.site-nav > a.is-active,
.nav-group.has-active summary {
  box-shadow: inset 0 -2px 0 #f3c47e;
}

.nav-group {
  position: relative;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-group summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.nav-group[open] summary::after {
  transform: translateY(1px) rotate(225deg);
}

.nav-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 230px;
  max-width: min(280px, calc(100vw - 48px));
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(16, 35, 32, 0.94)),
    rgba(16, 35, 32, 0.94);
  box-shadow: 0 22px 56px rgba(6, 16, 14, 0.32);
  backdrop-filter: blur(14px);
  padding: 8px;
  transform: translateX(-50%);
}

.nav-group + .nav-group .nav-panel {
  right: 0;
  left: auto;
  transform: none;
}

.nav-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 8px 10px;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav-panel a:hover,
.nav-panel a.is-active {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.nav-panel strong {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #fff;
  color: var(--sea-dark);
  font-size: 12px;
}

.lang-switch {
  justify-self: end;
  display: flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.16);
  border-radius: 8px;
}

.lang-switch a {
  display: grid;
  place-items: center;
  width: 38px;
  min-height: 30px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 750;
  color: rgba(255, 255, 255, 0.78);
  transition: background 160ms ease, color 160ms ease;
}

.lang-switch a.is-active {
  background: #fff;
  color: var(--sea-dark);
}

.lang-switch a:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.lang-switch a.is-active:hover {
  background: #fff;
  color: var(--sea-dark);
}

.breadcrumbs {
  position: relative;
  z-index: 2;
  padding: 14px clamp(18px, 4vw, 58px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(251, 251, 247, 0.84));
  border-bottom: 1px solid rgba(220, 228, 223, 0.72);
  box-shadow: 0 10px 24px rgba(24, 33, 29, 0.025);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid rgba(14, 118, 109, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(24, 33, 29, 0.035);
  padding: 0;
  padding: 8px 10px;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.breadcrumbs li:not(:last-child)::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #a7b4ad;
  border-right: 2px solid #a7b4ad;
  transform: rotate(45deg);
}

.breadcrumbs a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 7px;
  padding: 0 7px;
  color: var(--sea-dark);
  transition: background 160ms ease, color 160ms ease;
}

.breadcrumbs a:hover {
  background: #eff7f4;
  color: var(--coral);
}

.breadcrumbs span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 7px;
  background: rgba(200, 148, 61, 0.1);
  padding: 0 8px;
  color: var(--ink);
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 500px;
  height: min(72svh, 660px);
  padding: 112px clamp(18px, 4vw, 58px) 48px;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(9, 30, 27, 0.72), rgba(9, 30, 27, 0.18)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.home-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  min-height: 700px;
  height: auto;
  padding: 164px clamp(18px, 5vw, 72px) 118px;
  color: #fff;
  background-color: var(--sea-dark);
  background-image:
    linear-gradient(180deg, rgba(6, 16, 14, 0.18), rgba(6, 16, 14, 0.46)),
    linear-gradient(90deg, rgba(5, 20, 18, 0.92), rgba(9, 30, 27, 0.54), rgba(9, 30, 27, 0.12)),
    var(--home-image);
  background-position: center;
  background-size: cover;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 28%),
    linear-gradient(0deg, rgba(6, 16, 14, 0.2), transparent 52%);
  pointer-events: none;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(180deg, rgba(251, 251, 247, 0), var(--paper));
  pointer-events: none;
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: end;
  gap: 34px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.home-hero__content {
  max-width: 780px;
}

.home-hero__content::before {
  content: "";
  display: block;
  width: 74px;
  height: 3px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(255, 255, 255, 0.2));
}

.home-hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: 72px;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 5px 28px rgba(6, 16, 14, 0.42);
}

.home-hero__lead {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  line-height: 1.55;
  text-shadow: 0 2px 16px rgba(6, 16, 14, 0.32);
}

.home-hero .eyebrow {
  color: #f3c47e;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.home-hero__actions .primary-action,
.home-hero__actions .secondary-action {
  min-width: 178px;
  margin-top: 0;
  padding: 0 18px;
}

.home-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 780px;
  margin-top: 24px;
}

.home-hero__proof span {
  display: grid;
  align-content: center;
  min-height: 58px;
  min-width: 132px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(7, 24, 22, 0.38);
  box-shadow: 0 14px 38px rgba(6, 16, 14, 0.16);
  backdrop-filter: blur(12px);
  padding: 10px 12px;
}

.home-hero__proof strong {
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.home-hero__proof small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-hero__planning {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(7, 24, 22, 0.42)),
    rgba(7, 24, 22, 0.46);
  box-shadow: 0 26px 70px rgba(6, 16, 14, 0.24);
  backdrop-filter: blur(14px);
  padding: 16px;
}

.home-hero__planning::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(255, 255, 255, 0.24));
}

.home-hero__planning .eyebrow {
  margin-bottom: 0;
  color: #f3c47e;
}

.home-hero__planning-links {
  display: grid;
  gap: 8px;
}

.home-hero__planning-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 10px 12px;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.home-hero__planning-links a:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.home-hero__planning-links span {
  min-width: 0;
  overflow-wrap: anywhere;
  font-weight: 900;
}

.home-hero__planning-links strong {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 800;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 24, 22, 0.34);
  backdrop-filter: blur(10px);
  padding: 8px 12px;
}

.hero-meta strong {
  color: #fff;
  font-size: 18px;
}

.home-finder-section {
  position: relative;
  z-index: 3;
  margin-top: -34px;
  padding: 0 clamp(18px, 4vw, 58px);
}

.home-finder {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) minmax(120px, 0.45fr) minmax(190px, 0.9fr) minmax(190px, 0.9fr);
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid rgba(14, 118, 109, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 247, 0.94));
  box-shadow: var(--shadow-float);
  padding: 20px 18px 18px;
}

.home-finder::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--sea), var(--gold), rgba(209, 95, 63, 0.72));
}

.home-finder__intro {
  align-self: center;
}

.home-finder__intro h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.12;
}

.home-finder__all,
.home-finder__column {
  border: 1px solid rgba(14, 118, 109, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f7faf7);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.home-finder__all {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 128px;
  padding: 16px;
}

.home-finder__all span,
.home-finder__column p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-finder__all strong {
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
}

.home-finder__column {
  padding: 14px;
}

.home-finder__column div {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.home-finder__column a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  min-height: 36px;
  border: 1px solid rgba(14, 118, 109, 0.08);
  border-radius: 7px;
  background: #fff;
  padding: 8px 10px;
  font-weight: 800;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.home-finder__column a span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.home-finder__column a:hover,
.home-finder__all:hover {
  border-color: rgba(14, 118, 109, 0.35);
  background: #f0f7f4;
  box-shadow: 0 12px 28px rgba(24, 33, 29, 0.07);
  transform: translateY(-1px);
}

.home-finder__column strong {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--sea);
  color: #fff;
  font-size: 12px;
}

.assurance-band {
  padding: 28px clamp(18px, 4vw, 58px) 10px;
}

.assurance-band__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid rgba(14, 118, 109, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(14, 118, 109, 0.08), rgba(255, 244, 220, 0.42)),
    #fff;
  box-shadow: 0 14px 34px rgba(24, 33, 29, 0.08);
  padding: 18px;
}

.assurance-band__intro h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

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

.assurance-band__items article {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 4px;
  min-height: 86px;
  border: 1px solid rgba(14, 118, 109, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 12px;
}

.assurance-band__items article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--sea), var(--gold));
}

.assurance-band__items strong {
  color: var(--sea-dark);
  font-size: 13px;
}

.assurance-band__items span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.assurance-band__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(14, 118, 109, 0.24);
  border-radius: 8px;
  background: var(--sea-dark);
  color: #fff;
  font-weight: 850;
  padding: 0 14px;
  white-space: nowrap;
}

.assurance-band__link:hover {
  background: var(--sea);
}

.home-menu {
  display: grid;
  grid-template-columns: minmax(130px, 0.45fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  max-width: 840px;
  margin-top: 28px;
}

.home-menu__all,
.home-menu__column {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(7, 24, 22, 0.48);
  backdrop-filter: blur(10px);
}

.home-menu__all {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 132px;
  padding: 18px;
}

.home-menu__all span,
.home-menu__column p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-menu__all strong {
  font-size: 34px;
  line-height: 1;
}

.home-menu__column {
  padding: 14px;
}

.home-menu__column div {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.home-menu__column a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 36px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.09);
  padding: 8px 10px;
  font-weight: 800;
}

.home-menu__column a:hover,
.home-menu__all:hover {
  background: rgba(255, 255, 255, 0.15);
}

.home-menu__column strong {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #fff;
  color: var(--sea-dark);
  font-size: 12px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 22px;
}

.hero-stats div {
  min-height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(7, 24, 22, 0.34);
  padding: 12px;
}

.hero-stats strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.secondary-action {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(7, 24, 22, 0.34);
  color: #fff;
  font-weight: 800;
  padding: 0 18px;
  backdrop-filter: blur(10px);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.secondary-action:hover {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(7, 24, 22, 0.48);
  transform: translateY(-1px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(251, 251, 247, 0), var(--paper));
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero h1,
.listing-hero h1,
.section h2,
.property-card h2,
.quick-panel h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: 58px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb199;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero__facts span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(7, 24, 22, 0.3);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  padding: 8px 12px;
  font-weight: 750;
}

.detail-hero {
  overflow: hidden;
  isolation: isolate;
  min-height: 760px;
  height: auto;
  padding-bottom: 34px;
  background-image:
    linear-gradient(180deg, rgba(6, 16, 14, 0.22), rgba(6, 16, 14, 0.44)),
    linear-gradient(90deg, rgba(6, 23, 20, 0.9), rgba(9, 30, 27, 0.52), rgba(9, 30, 27, 0.08)),
    var(--hero-image);
}

.detail-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  align-items: end;
  gap: 22px clamp(24px, 5vw, 72px);
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.detail-hero__content {
  max-width: 780px;
}

.detail-hero__content h1 {
  text-shadow: 0 5px 28px rgba(6, 16, 14, 0.36);
}

.detail-hero__lead {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  text-shadow: 0 2px 16px rgba(6, 16, 14, 0.32);
}

.detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.detail-hero__actions .primary-action,
.detail-hero__actions .secondary-action,
.detail-hero__card .primary-action {
  min-width: 178px;
  margin-top: 0;
}

.detail-hero__media {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, 1.6fr) repeat(3, minmax(120px, 0.8fr));
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(7, 24, 22, 0.34));
  box-shadow: 0 28px 80px rgba(6, 16, 14, 0.24);
  backdrop-filter: blur(14px);
  padding: 10px;
}

.detail-hero__media-item {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  aspect-ratio: 16 / 10;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  padding: 0;
  cursor: pointer;
}

.detail-hero__media-item picture {
  display: block;
  width: 100%;
  height: 100%;
}

.detail-hero__media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.detail-hero__media-item:hover img {
  transform: scale(1.035);
}

.detail-hero__media-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 16, 14, 0), rgba(6, 16, 14, 0.58));
}

.detail-hero__media-item span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(6, 16, 14, 0.42);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 0 10px;
  backdrop-filter: blur(8px);
}

.detail-hero__card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(7, 24, 22, 0.56);
  box-shadow: 0 24px 70px rgba(6, 16, 14, 0.28);
  backdrop-filter: blur(14px);
  padding: 24px;
}

.detail-hero__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--coral), var(--sea));
}

.detail-hero__card p,
.detail-hero__card span {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.detail-hero__card strong {
  display: block;
  margin: 8px 0;
  font-size: 36px;
  line-height: 1;
}

.detail-hero__card-meta {
  display: grid;
  gap: 8px;
  margin: 20px 0;
}

.detail-hero__card-meta span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 8px;
  color: #fff;
}

.detail-hero__card-meta small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-nav {
  position: sticky;
  top: 10px;
  z-index: 6;
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  max-width: 1180px;
  margin: -27px auto 0;
  border: 1px solid rgba(14, 118, 109, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 251, 247, 0.94));
  box-shadow: 0 18px 44px rgba(24, 33, 29, 0.1);
  backdrop-filter: blur(10px);
  overflow-x: auto;
  scrollbar-width: none;
  padding: 10px;
}

.detail-nav::-webkit-scrollbar {
  display: none;
}

.detail-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--sea-dark);
  font-size: 14px;
  font-weight: 850;
  padding: 8px 12px;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.detail-nav a::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(14, 118, 109, 0.26);
  box-shadow: 0 0 0 3px rgba(14, 118, 109, 0.08);
}

.detail-nav a:hover,
.detail-nav a.is-active {
  border-color: rgba(14, 118, 109, 0.16);
  background: #eff7f4;
  box-shadow: 0 8px 18px rgba(24, 33, 29, 0.06);
  color: var(--sea-dark);
}

.detail-nav a.is-active::before {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 148, 61, 0.16);
}

#pregled,
#galerija,
#cijene,
#lokacija,
#oprema,
#upit {
  scroll-margin-top: 92px;
}

.detail-fact-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto 28px;
}

.detail-fact-grid article {
  border: 1px solid #d7e2dc;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 247, 0.92));
  box-shadow: 0 14px 32px rgba(24, 33, 29, 0.07);
  padding: 16px;
}

.detail-fact-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-fact-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--sea-dark);
  font-size: 19px;
  line-height: 1.15;
}

.detail-copy {
  min-width: 0;
}

.detail-intro {
  align-items: start;
}

.booking-panel h2 {
  font-size: 24px;
}

.booking-panel .eyebrow {
  margin-bottom: 8px;
}

.booking-panel {
  position: sticky;
  top: 92px;
  overflow: hidden;
  border-color: rgba(14, 118, 109, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 247, 0.96));
  box-shadow: var(--shadow-float);
}

.booking-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--sea), var(--gold));
}

.booking-panel__price {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(200, 148, 61, 0.24);
  border-radius: 8px;
  background: #fff7e8;
  margin: 18px 0;
  padding: 14px;
}

.booking-panel__price small {
  color: #74511d;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-panel__price strong {
  color: var(--sea-dark);
  font-size: 30px;
  line-height: 1;
}

.booking-panel__price span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.section {
  padding: 68px clamp(18px, 4vw, 58px);
}

.section--raised {
  position: relative;
  z-index: 2;
}

.featured-section {
  background: linear-gradient(180deg, var(--paper), #ffffff 54%, #f5f8f4);
}

.intro-section {
  padding-top: 34px;
}

.intro,
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  gap: clamp(28px, 5vw, 72px);
  max-width: 1180px;
  margin: 0 auto;
}

.intro h2,
.section h2 {
  font-size: 34px;
}

.rich-text {
  max-width: 760px;
  color: #2e3833;
  font-size: 17px;
  line-height: 1.78;
}

.rich-text p:first-child {
  margin-top: 0;
}

.rich-text p {
  margin: 0 0 18px;
}

.rich-text h2,
.rich-text h3,
.rich-text h4 {
  color: var(--ink);
  line-height: 1.14;
  text-wrap: balance;
}

.rich-text h2 {
  margin: 34px 0 14px;
  font-size: 30px;
}

.rich-text h3 {
  margin: 28px 0 12px;
  font-size: 23px;
}

.rich-text h4 {
  margin: 24px 0 10px;
  font-size: 19px;
}

.rich-text ul,
.rich-text ol {
  display: grid;
  gap: 9px;
  margin: 18px 0 22px;
  padding-left: 24px;
}

.rich-text li::marker {
  color: var(--sea);
  font-weight: 900;
}

.rich-text a {
  color: var(--sea-dark);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(14, 118, 109, 0.28);
  text-underline-offset: 4px;
}

.rich-text a:hover {
  color: var(--coral);
  text-decoration-color: rgba(209, 95, 63, 0.36);
}

.rich-text blockquote {
  margin: 28px 0;
  border-left: 4px solid var(--gold);
  background: linear-gradient(90deg, rgba(255, 244, 220, 0.72), rgba(255, 255, 255, 0));
  color: var(--sea-dark);
  padding: 14px 18px;
  font-weight: 760;
}

.quick-panel {
  align-self: start;
  background: var(--surface);
  border: 1px solid #d7e2dc;
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow-strong);
}

.quick-panel h2 {
  font-size: 22px;
}

.fact-list,
.distance-list,
.amenity-grid {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fact-list {
  margin-top: 18px;
}

.fact-list li,
.distance-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.fact-list span,
.distance-list span {
  color: var(--muted);
}

.fact-list strong,
.distance-list strong {
  text-align: right;
}

.primary-action {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  margin-top: 22px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--sea), var(--sea-dark));
  box-shadow: 0 14px 28px rgba(11, 81, 76, 0.22);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.primary-action:hover {
  box-shadow: 0 18px 34px rgba(11, 81, 76, 0.28);
  transform: translateY(-1px);
}

.primary-action:disabled {
  cursor: wait;
  opacity: 0.72;
}

.section__header {
  max-width: 1180px;
  margin: 0 auto 24px;
}

.section-lead {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section__header--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.text-link {
  color: var(--sea-dark);
  font-weight: 850;
}

.text-link:hover {
  color: var(--coral);
}

.gallery-count-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(200, 148, 61, 0.3);
  border-radius: 8px;
  background: var(--gold-soft);
  color: #74511d;
  font-size: 13px;
  font-weight: 900;
  padding: 0 12px;
}

.gallery-section {
  background: #fff;
}

.gallery-shell {
  position: relative;
  overflow: hidden;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid rgba(14, 118, 109, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f8faf7);
  box-shadow: var(--shadow-card);
  padding: 12px;
}

.gallery-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--sea), var(--gold));
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: none;
  margin: 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 188px;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 0;
  background: #e8eee9;
  box-shadow: 0 12px 28px rgba(6, 16, 14, 0.09);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-item:hover {
  box-shadow: 0 20px 44px rgba(6, 16, 14, 0.16);
  transform: translateY(-2px);
}

.gallery-item picture,
.destination-card__image picture,
.content-card__image picture,
.property-card__image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 16, 14, 0), rgba(6, 16, 14, 0.62));
  opacity: 0.72;
  transition: opacity 180ms ease;
}

.gallery-item:hover::after {
  opacity: 0.86;
}

.gallery-item__number,
.gallery-item__caption {
  position: absolute;
  z-index: 1;
  color: #fff;
  text-align: left;
  text-shadow: 0 1px 10px rgba(6, 16, 14, 0.48);
}

.gallery-item__number {
  top: 12px;
  left: 12px;
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: rgba(6, 16, 14, 0.42);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 900;
}

.gallery-item__caption {
  left: 14px;
  right: 14px;
  bottom: 12px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

.gallery-empty {
  grid-column: 1 / -1;
  border: 1px solid rgba(14, 118, 109, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #fbfcfa);
  color: var(--muted);
  padding: 22px;
  font-weight: 800;
}

.detail-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto 12px;
  border: 1px solid rgba(14, 118, 109, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(14, 118, 109, 0.08), rgba(255, 244, 220, 0.34)),
    var(--surface);
  box-shadow: 0 18px 42px rgba(24, 33, 29, 0.08);
  padding: 26px;
}

.detail-cta-band h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.12;
}

.detail-cta-band .primary-action {
  min-width: 160px;
  margin-top: 0;
  padding: 0 18px;
}

.detail-cta-band__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: end;
}

.detail-cta-band__facts span {
  display: grid;
  gap: 2px;
  min-width: 108px;
  border: 1px solid #d7e2dc;
  border-radius: 8px;
  background: #fff;
  padding: 10px 12px;
}

.detail-cta-band__facts small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-cta-band__facts strong {
  color: var(--sea-dark);
  font-size: 15px;
}

.split-section {
  align-items: start;
}

.detail-panel {
  min-width: 0;
  border: 1px solid #d7e2dc;
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
  box-shadow: 0 16px 36px rgba(24, 33, 29, 0.08);
}

.detail-panel h2 {
  margin-bottom: 18px;
}

.detail-panel--compact {
  align-self: stretch;
}

.detail-price-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.detail-price-summary span {
  display: grid;
  gap: 5px;
  min-height: 76px;
  border: 1px solid #dfe8e2;
  border-radius: 8px;
  background: #f7faf7;
  padding: 12px;
}

.detail-price-summary small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-price-summary strong {
  align-self: end;
  color: var(--sea-dark);
  font-size: 22px;
  line-height: 1;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(14, 118, 109, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #fbfcfa);
  box-shadow: 0 14px 32px rgba(24, 33, 29, 0.06);
}

table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  background:
    linear-gradient(180deg, #eff7f4, #e8f3ef);
  color: var(--sea-dark);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

tbody tr {
  transition: background 140ms ease;
}

tbody tr:nth-child(even) {
  background: rgba(239, 247, 244, 0.34);
}

tbody tr:hover {
  background: rgba(255, 244, 220, 0.48);
}

tbody tr:last-child td {
  border-bottom: 0;
}

.price-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.price-note::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 148, 61, 0.13);
  vertical-align: 1px;
}

.distance-list {
  border: 1px solid #d7e2dc;
  border-radius: 8px;
  background: #f8faf7;
  padding: 4px 18px;
}

.property-map-section {
  background: linear-gradient(180deg, #f7faf7, #fff);
}

.listing-results-section .property-map-section {
  margin-top: 24px;
  padding: 18px 0 34px;
}

.property-map-section--detail {
  background:
    linear-gradient(180deg, #f4f8f5, #ffffff);
}

.property-map-section--detail .property-map {
  box-shadow: 0 20px 54px rgba(24, 33, 29, 0.1);
}

.property-map-section--detail .property-map__canvas {
  min-height: 390px;
}

.property-map-section--detail .property-map-list {
  grid-template-columns: 1fr;
  max-width: 1180px;
}

.property-map-section--detail .property-map-list__item {
  min-height: 70px;
  background: rgba(255, 255, 255, 0.9);
}

.property-map-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.property-map-summary span {
  display: grid;
  min-width: 96px;
  border: 1px solid rgba(14, 118, 109, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #fbfcfa);
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  padding: 10px 12px;
  text-transform: uppercase;
}

.property-map-summary strong {
  color: var(--sea-dark);
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.property-map {
  position: relative;
  overflow: hidden;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid rgba(14, 118, 109, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(14, 118, 109, 0.12), rgba(200, 148, 61, 0.1)),
    #dfe9e4;
  box-shadow: var(--shadow-card);
}

.property-map::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  height: 4px;
  background: linear-gradient(90deg, var(--sea), var(--gold));
}

.property-map__canvas {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.property-map__tiles,
.property-map__markers {
  position: absolute;
  inset: 0;
}

.property-map__tiles img {
  position: absolute;
  width: 256px;
  height: 256px;
  user-select: none;
}

.property-map__marker {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: min(260px, calc(100% - 24px));
  color: #10231f;
  text-decoration: none;
  transform: translate(-16px, -34px);
}

.property-map__pin {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: 3px solid #fff;
  border-radius: 999px 999px 999px 2px;
  background: var(--coral);
  box-shadow: 0 10px 24px rgba(6, 16, 14, 0.28);
  transform: rotate(-45deg);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.property-map__marker.is-exact .property-map__pin {
  background: var(--sea);
}

.property-map__marker:hover .property-map__pin,
.property-map__marker:focus-visible .property-map__pin {
  box-shadow: 0 14px 30px rgba(6, 16, 14, 0.34);
  transform: rotate(-45deg) scale(1.08);
}

.property-map__label {
  display: grid;
  gap: 2px;
  min-width: 150px;
  border: 1px solid rgba(16, 35, 31, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(6, 16, 14, 0.18);
  padding: 8px 10px;
}

.listing-results-section .property-map__label {
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.listing-results-section .property-map__marker:hover .property-map__label,
.listing-results-section .property-map__marker:focus-visible .property-map__label {
  opacity: 1;
  transform: translateY(0);
}

.property-map__label strong,
.property-map__label small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.property-map__label strong {
  color: var(--sea-dark);
  font-size: 13px;
}

.property-map__label small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.property-map__controls {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  display: grid;
  gap: 6px;
}

.property-map__controls button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(16, 35, 31, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f7faf7);
  color: var(--sea-dark);
  cursor: pointer;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(6, 16, 14, 0.14);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.property-map__controls button:hover {
  border-color: rgba(14, 118, 109, 0.26);
  background: #eff7f4;
  transform: translateY(-1px);
}

.property-map__attribution {
  position: absolute;
  right: 10px;
  bottom: 8px;
  z-index: 4;
  margin: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.86);
  color: #51615b;
  font-size: 11px;
  padding: 3px 6px;
}

.property-map-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 1180px;
  margin: 14px auto 0;
}

.property-map-list__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 62px;
  border: 1px solid rgba(14, 118, 109, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #fbfcfa);
  color: #17201b;
  padding: 10px 12px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(24, 33, 29, 0.05);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.property-map-list__item:hover {
  border-color: rgba(14, 118, 109, 0.24);
  box-shadow: 0 14px 30px rgba(24, 33, 29, 0.09);
  transform: translateY(-1px);
}

.property-map-list__pin {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(214, 92, 59, 0.12);
}

.property-map-list__pin.is-exact {
  background: var(--sea);
  box-shadow: 0 0 0 4px rgba(14, 118, 109, 0.12);
}

.property-map-list__item strong,
.property-map-list__item small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.property-map-list__item small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.listing-results-section .property-map-section--listing-overview {
  margin: 0;
  padding: 0;
  background: transparent;
}

.property-map-section--listing-overview .section__header {
  margin: 0 0 14px;
}

.property-map-section--listing-overview .section__header--split {
  align-items: start;
}

.property-map-section--listing-overview h2 {
  margin: 0;
  font-size: 24px;
}

.property-map-section--listing-overview .section-lead {
  max-width: 560px;
  font-size: 15px;
}

.property-map-section--listing-overview .property-map-summary {
  min-width: 190px;
}

.property-map-section--listing-overview .property-map-summary span {
  min-width: 78px;
  background: rgba(255, 255, 255, 0.74);
}

.property-map-section--listing-overview .property-map {
  max-width: none;
  margin: 0;
  border-color: rgba(14, 118, 109, 0.14);
  box-shadow: 0 18px 44px rgba(24, 33, 29, 0.08);
}

.property-map-section--listing-overview .property-map__canvas {
  min-height: 380px;
}

.property-map-section--listing-overview .property-map-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: none;
}

.property-map-section--listing-overview .property-map-list__item {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.property-map-section--listing-overview .property-map-list__item:hover {
  border-color: rgba(14, 118, 109, 0.24);
  box-shadow: 0 14px 30px rgba(24, 33, 29, 0.09);
  transform: translateY(-1px);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 1180px;
  margin: 0 auto;
}

.amenity-grid li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid #dce7e1;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #f8faf7);
  box-shadow: 0 10px 24px rgba(24, 33, 29, 0.045);
  padding: 12px 14px;
  font-weight: 760;
}

.amenity-grid li::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--sea);
  box-shadow: 0 0 0 4px #eff7f4;
}

.amenity-grid__empty::before {
  display: none;
}

.amenity-grid__empty {
  grid-column: 1 / -1;
  color: var(--muted);
}

.finder-section {
  background: #eef5f1;
}

.finder-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  max-width: 1180px;
  margin: 0 auto;
}

.finder-shell > div:first-child p:last-child {
  max-width: 440px;
  color: var(--muted);
}

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

.finder-columns > div {
  border: 1px solid #d7e2dc;
  border-radius: 8px;
  background: var(--surface);
  padding: 20px;
  box-shadow: 0 10px 26px rgba(24, 33, 29, 0.06);
}

.finder-columns h3 {
  margin: 0 0 14px;
  font-size: 20px;
}

.destination-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.destination-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.destination-card,
.step-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(14, 118, 109, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #fbfcfa);
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.destination-card:hover,
.step-card:hover {
  border-color: rgba(14, 118, 109, 0.28);
  box-shadow: 0 26px 64px rgba(24, 33, 29, 0.13);
  transform: translateY(-2px);
}

.destination-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
}

.destination-card__image {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  background:
    linear-gradient(135deg, rgba(14, 118, 109, 0.14), rgba(200, 148, 61, 0.16)),
    #e8eee9;
}

.destination-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 16, 14, 0), rgba(6, 16, 14, 0.3));
  opacity: 0;
  transition: opacity 220ms ease;
}

.destination-card:hover .destination-card__image::after {
  opacity: 1;
}

.destination-card__image-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 230px;
  place-items: center;
  color: rgba(11, 81, 76, 0.62);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  padding: 18px;
}

.destination-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.destination-card:hover .destination-card__image img {
  transform: scale(1.035);
}

.destination-card__body {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px;
}

.destination-card h3 a {
  color: var(--ink);
}

.destination-card h3 a:hover {
  color: var(--sea-dark);
}

.destination-card h3,
.step-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
}

.destination-card__body > p:not(.eyebrow),
.step-card p {
  margin: 0;
  color: var(--muted);
}

.destination-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.destination-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 30px;
  border: 1px solid rgba(14, 118, 109, 0.08);
  border-radius: 8px;
  background: #f1f8f5;
  color: var(--sea-dark);
  font-size: 12px;
  font-weight: 850;
  padding: 0 9px;
}

.guide-strip {
  padding: 8px clamp(18px, 4vw, 58px) 18px;
  background: var(--paper);
}

.guide-strip__inner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid rgba(14, 118, 109, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(14, 118, 109, 0.08), rgba(255, 244, 220, 0.34)),
    #fff;
  box-shadow: 0 14px 34px rgba(24, 33, 29, 0.08);
  padding: 18px;
}

.guide-strip__inner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--gold), var(--sea));
}

.guide-strip h2 {
  max-width: 760px;
  margin: 0;
  font-size: 24px;
  line-height: 1.16;
}

.guide-strip__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 10px;
}

.guide-strip__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid #d7e2dc;
  border-radius: 8px;
  background: #fff;
  color: var(--sea-dark);
  font-weight: 900;
  padding: 0 13px;
  white-space: nowrap;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.guide-strip__links a:first-child {
  border-color: rgba(11, 81, 76, 0.18);
  background: var(--sea-dark);
  color: #fff;
}

.guide-strip__links a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.guide-strip__links a:hover {
  border-color: rgba(14, 118, 109, 0.28);
  background: #eff7f4;
  transform: translateY(-1px);
}

.guide-strip__links a:first-child:hover {
  background: var(--sea);
}

.destination-card__meta strong {
  font-weight: 950;
}

.destination-card__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
  padding-top: 14px;
}

.destination-cta-section {
  background: #17201b;
  color: #fff;
}

.destination-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 5vw, 72px);
  max-width: 1180px;
  margin: 0 auto;
}

.destination-cta h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
}

.destination-cta p:not(.eyebrow) {
  max-width: 680px;
  margin: 12px 0 0;
  color: #c7d5cd;
}

.destination-cta .eyebrow {
  color: #ffb199;
}

.destination-cta__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.destination-cta__actions .primary-action {
  margin-top: 0;
  background: #fff;
  color: var(--sea-dark);
  padding: 0 18px;
}

.destination-cta__actions .text-link {
  color: #fff;
}

.steps-section {
  background: #fff;
}

.step-card {
  min-height: 210px;
  padding: 24px;
}

.step-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(14, 118, 109, 0.88), rgba(200, 148, 61, 0.72));
  opacity: 0;
  transition: opacity 180ms ease;
}

.step-card:hover::after {
  opacity: 1;
}

.step-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--sea), var(--sea-dark));
  color: #fff;
  font-weight: 900;
}

.why-section {
  background: var(--paper);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.why-card {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  border: 1px solid rgba(14, 118, 109, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #fbfcfa);
  padding: 22px;
  box-shadow: 0 14px 34px rgba(24, 33, 29, 0.07);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.why-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sea), var(--gold));
}

.why-card:hover {
  border-color: rgba(14, 118, 109, 0.24);
  box-shadow: 0 20px 48px rgba(24, 33, 29, 0.11);
  transform: translateY(-2px);
}

.why-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: 0;
}

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

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(90deg, rgba(255, 244, 220, 0.08), rgba(6, 16, 14, 0)),
    var(--sea-dark);
  color: #fff;
}

.contact-strip h2 {
  color: #fff;
}

.contact-strip .eyebrow {
  color: #ffb199;
}

.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-actions .primary-action {
  margin-top: 0;
  background: #fff;
  box-shadow: 0 16px 34px rgba(6, 16, 14, 0.2);
  color: var(--sea-dark);
  padding: 0 18px;
}

.contact-actions .text-link {
  color: #fff;
}

.content-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  min-height: 500px;
  padding: 132px clamp(18px, 4vw, 58px) 86px;
  color: #fff;
  background-color: var(--sea-dark);
  background-image:
    linear-gradient(180deg, rgba(6, 16, 14, 0.18), rgba(6, 16, 14, 0.48)),
    linear-gradient(90deg, rgba(6, 23, 20, 0.9), rgba(9, 30, 27, 0.48), rgba(9, 30, 27, 0.1)),
    var(--content-image);
  background-position: center;
  background-size: cover;
}

.content-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 86px;
  background: linear-gradient(180deg, rgba(251, 251, 247, 0), var(--paper));
  pointer-events: none;
}

.content-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.content-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 52px;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 5px 28px rgba(6, 16, 14, 0.36);
}

.content-hero__inner > p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  text-shadow: 0 2px 16px rgba(6, 16, 14, 0.32);
}

.content-hero .eyebrow {
  color: #f3c47e;
}

.content-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 780px;
  margin-top: 24px;
}

.content-hero__stats span {
  display: grid;
  gap: 3px;
  min-width: 128px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 24, 22, 0.34);
  backdrop-filter: blur(10px);
  padding: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-hero__stats strong {
  color: #fff;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
  max-width: 1180px;
  margin: 0 auto;
}

.content-article {
  max-width: none;
}

.content-article.rich-text {
  width: 100%;
  max-width: 820px;
}

.content-layout .content-article.rich-text,
.contact-detail-layout .content-article.rich-text,
.about-story-layout .content-article.rich-text,
.destination-detail-layout .content-article.rich-text {
  padding-top: 2px;
}

.content-article h1,
.content-article h2,
.content-article h3 {
  margin-top: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

.content-article img {
  border-radius: 8px;
  margin: 20px 0;
}

.content-sidebar {
  border: 1px solid #d7e2dc;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-strong);
  padding: 24px;
}

.content-sidebar h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.12;
}

.content-sidebar p {
  color: var(--muted);
}

.content-sidebar .primary-action {
  padding: 0 18px;
}

.guide-hub-section {
  background: linear-gradient(180deg, var(--paper), #fff 42%, #f7faf7);
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(190px, 230px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(22px, 4vw, 44px);
  max-width: 1180px;
  margin: 0 auto;
}

.guide-main {
  display: grid;
  gap: 30px;
  min-width: 0;
}

.guide-main > .section__header,
.guide-main .content-card-grid,
.guide-main .guide-link-grid,
.guide-main .destination-overview {
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

.guide-rail {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 14px;
  border: 1px solid #d7e2dc;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 247, 0.96)),
    #fff;
  box-shadow: 0 18px 42px rgba(24, 33, 29, 0.09);
  padding: 14px;
}

.guide-rail__heading {
  display: grid;
  gap: 3px;
  border-bottom: 1px solid var(--line);
  padding: 3px 4px 13px;
}

.guide-rail__heading span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.guide-rail__heading strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
}

.guide-rail__nav {
  display: grid;
  gap: 6px;
}

.guide-rail__nav a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 58px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--ink);
  padding: 9px;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.guide-rail__nav a:hover {
  border-color: rgba(14, 118, 109, 0.18);
  background: #f4faf7;
  transform: translateY(-1px);
}

.guide-rail__nav a.is-active {
  border-color: rgba(14, 118, 109, 0.26);
  background: linear-gradient(135deg, rgba(14, 118, 109, 0.12), rgba(255, 244, 220, 0.46));
  box-shadow: inset 3px 0 0 var(--sea);
}

.guide-rail__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(14, 118, 109, 0.2);
  border-radius: 8px;
  background: #fff;
}

.guide-rail__icon::before,
.guide-rail__icon::after {
  content: "";
  position: absolute;
  border-color: var(--sea-dark);
}

.guide-rail__icon--pin::before {
  width: 12px;
  height: 12px;
  border: 2px solid var(--sea-dark);
  border-radius: 999px 999px 999px 0;
  transform: rotate(-45deg);
}

.guide-rail__icon--pin::after {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--sea-dark);
}

.guide-rail__icon--spark::before {
  width: 17px;
  height: 17px;
  border: 2px solid var(--sea-dark);
  border-right: 0;
  border-bottom: 0;
  transform: rotate(45deg);
}

.guide-rail__icon--spark::after {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transform: rotate(-22deg);
}

.guide-rail__icon--route::before {
  width: 18px;
  height: 12px;
  border-top: 2px solid var(--sea-dark);
  border-right: 2px solid var(--sea-dark);
  border-radius: 0 8px 0 0;
  transform: translate(-2px, 2px);
}

.guide-rail__icon--route::after {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 14px -11px 0 var(--sea-dark);
}

.guide-rail__copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.guide-rail__copy strong {
  color: var(--sea-dark);
  font-size: 15px;
  line-height: 1.15;
}

.guide-rail__copy small {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.guide-related-block {
  display: grid;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.content-contact-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  color: var(--sea-dark);
  font-weight: 850;
}

.content-contact-list span {
  color: var(--muted);
}

.content-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.content-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(14, 118, 109, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #fbfcfa);
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.content-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(14, 118, 109, 0.92), rgba(200, 148, 61, 0.82));
  opacity: 0;
  transition: opacity 180ms ease;
}

.content-card:hover {
  border-color: rgba(14, 118, 109, 0.28);
  box-shadow: 0 24px 58px rgba(24, 33, 29, 0.14);
  transform: translateY(-2px);
}

.content-card:hover::before {
  opacity: 1;
}

.content-card__image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(14, 118, 109, 0.14), rgba(200, 148, 61, 0.16)),
    #e8eee9;
  overflow: hidden;
}

.content-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 16, 14, 0), rgba(6, 16, 14, 0.28));
  opacity: 0;
  transition: opacity 220ms ease;
}

.content-card:hover .content-card__image::after {
  opacity: 1;
}

.content-card__image-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: rgba(11, 81, 76, 0.62);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  padding: 18px;
}

.content-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.content-card:hover .content-card__image img {
  transform: scale(1.035);
}

.content-card__body {
  display: grid;
  align-content: start;
  padding: 20px;
}

.content-card h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.14;
  text-wrap: balance;
}

.content-card h3 a {
  color: var(--ink);
}

.content-card h3 a:hover {
  color: var(--sea-dark);
}

.content-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.content-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 30px;
  border: 1px solid rgba(14, 118, 109, 0.08);
  border-radius: 8px;
  background: #f1f8f5;
  color: var(--sea-dark);
  font-size: 12px;
  font-weight: 850;
  padding: 0 9px;
}

.content-card p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
}

.seo-link-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.4fr);
  gap: 22px;
  max-width: 1180px;
  margin: 34px auto 0;
  border: 1px solid rgba(14, 118, 109, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(14, 118, 109, 0.07), rgba(255, 244, 220, 0.32)),
    #fff;
  box-shadow: 0 18px 46px rgba(24, 33, 29, 0.07);
  padding: clamp(20px, 3vw, 28px);
}

.seo-link-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  border-radius: 0;
  background: linear-gradient(180deg, var(--sea), var(--gold));
}

.seo-link-section h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.16;
}

.seo-link-section p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
}

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

.seo-link-grid a {
  counter-increment: seo-link;
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 7px;
  min-height: 86px;
  align-content: center;
  border: 1px solid rgba(14, 118, 109, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 248, 0.94));
  padding: 13px 42px 13px 14px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.seo-link-grid a::before {
  content: counter(seo-link, decimal-leading-zero);
  width: max-content;
  min-width: 28px;
  min-height: 24px;
  border: 1px solid rgba(200, 148, 61, 0.24);
  border-radius: 7px;
  background: rgba(255, 244, 220, 0.68);
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  line-height: 24px;
  text-align: center;
}

.seo-link-grid a::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 15px;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  color: rgba(11, 81, 76, 0.44);
  transform: rotate(45deg);
  transition: color 180ms ease, transform 180ms ease;
}

.seo-link-grid a:hover {
  border-color: rgba(14, 118, 109, 0.28);
  background: #fff;
  box-shadow: 0 16px 34px rgba(24, 33, 29, 0.1);
  transform: translateY(-1px);
}

.seo-link-grid a:hover::after {
  color: var(--sea-dark);
  transform: translateX(2px) rotate(45deg);
}

.seo-link-grid span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-link-grid strong {
  color: var(--sea-dark);
  font-size: 16px;
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.content-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  justify-self: start;
  min-height: 38px;
  margin-top: 16px;
  border-radius: 8px;
  background: var(--sea-dark);
  box-shadow: 0 12px 26px rgba(11, 81, 76, 0.16);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  padding: 0 14px;
}

.content-card__cta::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.related-properties-section {
  background: #fff;
}

.content-index-section {
  background: linear-gradient(180deg, var(--paper), #fff 48%, #f7faf7);
}

.guide-detail-section {
  background: linear-gradient(180deg, var(--paper), #fff 48%, #f7faf7);
}

.guide-group-section:nth-of-type(even) {
  background: #fff;
}

.guide-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.guide-link-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  min-height: 154px;
  align-content: center;
  border: 1px solid rgba(14, 118, 109, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(145deg, #ffffff 0%, #f8faf7 58%, #eef7f2 100%);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.guide-link-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--sea));
  opacity: 0;
  transition: opacity 180ms ease;
}

.guide-link-card:hover {
  border-color: rgba(200, 148, 61, 0.36);
  box-shadow: 0 24px 58px rgba(24, 33, 29, 0.13);
  transform: translateY(-2px);
}

.guide-link-card:hover::after {
  opacity: 1;
}

.guide-link-card span {
  align-self: end;
  color: var(--sea);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.guide-link-card small {
  grid-row: 1 / 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(200, 148, 61, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
}

.guide-link-card strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
}

.guide-link-card em {
  align-self: start;
  color: var(--sea-dark);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.content-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.content-hero__actions .primary-action,
.content-hero__actions .secondary-action {
  min-width: 170px;
  margin-top: 0;
}

.destination-overview-section {
  position: relative;
  z-index: 2;
  margin-top: -38px;
  padding-top: 0;
  padding-bottom: 24px;
}

.destination-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
}

.destination-overview article,
.contact-method-grid article,
.contact-trust-grid article,
.inquiry-trust-list article,
.about-stat-list article,
.about-card-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(14, 118, 109, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8faf7);
  padding: 18px;
  box-shadow: 0 12px 28px rgba(24, 33, 29, 0.06);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.destination-overview article::before,
.contact-method-grid article::before,
.contact-trust-grid article::before,
.inquiry-trust-list article::before,
.about-stat-list article::before,
.about-card-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(14, 118, 109, 0.8), rgba(200, 148, 61, 0.72));
  opacity: 0;
  transition: opacity 160ms ease;
}

.destination-overview article:hover,
.contact-method-grid article:hover,
.contact-trust-grid article:hover,
.inquiry-trust-list article:hover,
.about-stat-list article:hover,
.about-card-grid article:hover {
  border-color: rgba(14, 118, 109, 0.24);
  box-shadow: 0 18px 42px rgba(24, 33, 29, 0.1);
  transform: translateY(-1px);
}

.destination-overview article:hover::before,
.contact-method-grid article:hover::before,
.contact-trust-grid article:hover::before,
.inquiry-trust-list article:hover::before,
.about-stat-list article:hover::before,
.about-card-grid article:hover::before {
  opacity: 1;
}

.destination-overview span,
.about-stat-list span {
  display: block;
  color: var(--sea-dark);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.destination-overview strong,
.about-stat-list strong,
.contact-method-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail-layout,
.about-story-layout,
.destination-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.62fr);
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
  max-width: 1180px;
  margin: 0 auto;
}

.contact-detail-section {
  background: linear-gradient(180deg, var(--paper), #fff 42%, #f7faf7);
}

.contact-intro {
  max-width: 620px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
}

.contact-trust-grid,
.inquiry-trust-list {
  display: grid;
  gap: 10px;
}

.contact-trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 22px 0 4px;
}

.contact-trust-grid strong,
.inquiry-trust-list strong {
  display: block;
  color: var(--sea-dark);
  font-size: 16px;
  line-height: 1.15;
}

.contact-trust-grid span,
.inquiry-trust-list span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.contact-method-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--sea-dark);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.contact-form-panel,
.about-stats-panel,
.destination-summary-panel {
  position: sticky;
  top: 78px;
}

.contact-form-panel,
.about-stats-panel,
.destination-summary-panel {
  overflow: hidden;
  border: 1px solid rgba(14, 118, 109, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 247, 0.98));
  box-shadow: var(--shadow-strong);
  padding: 24px;
}

.contact-form-panel::before,
.about-stats-panel::before,
.destination-summary-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--sea), var(--gold));
}

.contact-form-panel h2,
.about-stats-panel h2,
.destination-summary-panel h2 {
  margin: 0 0 16px;
  font-size: 26px;
  line-height: 1.12;
}

.contact-form-panel > p:not(.eyebrow) {
  margin: -6px 0 16px;
  color: var(--muted);
  font-weight: 700;
}

.inquiry-form--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.submission-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.45fr);
  gap: 28px;
  align-items: start;
}

.submission-intro-panel,
.submission-form-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(14, 118, 109, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 247, 0.98));
  box-shadow: var(--shadow-strong);
  padding: 26px;
}

.submission-intro-panel::before,
.submission-form-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--sea), var(--gold));
}

.submission-intro-panel {
  position: sticky;
  top: 78px;
}

.submission-intro-panel h2,
.submission-form-panel h2 {
  margin: 0 0 16px;
  font-size: 26px;
  line-height: 1.12;
}

.submission-intro-panel ol {
  counter-reset: submission-step;
  display: grid;
  gap: 12px;
  margin: 18px 0;
  padding: 0;
  color: var(--ink);
  font-weight: 760;
  list-style: none;
}

.submission-intro-panel li {
  counter-increment: submission-step;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.submission-intro-panel li::before {
  content: counter(submission-step, decimal-leading-zero);
  display: grid;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(14, 118, 109, 0.18);
  border-radius: 8px;
  background: #eff7f4;
  color: var(--sea-dark);
  font-size: 12px;
  font-weight: 900;
}

.submission-intro-panel p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 700;
}

.property-submission-form {
  margin-top: 18px;
}

.submission-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 0;
  border: 1px solid rgba(14, 118, 109, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #fbfcfa);
  padding: 16px;
}

.submission-checklist legend {
  padding: 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.submission-checklist label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 30px;
  border: 1px solid rgba(14, 118, 109, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font-weight: 760;
  padding: 8px 10px;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.submission-checklist label:hover {
  border-color: rgba(14, 118, 109, 0.22);
  background: #eff7f4;
  color: var(--sea-dark);
}

.submission-checklist input {
  accent-color: var(--sea);
  width: auto;
}

.about-stat-list {
  display: grid;
  gap: 10px;
}

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.about-card-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.12;
}

.about-card-grid p {
  margin: 0;
  color: var(--muted);
}

.destination-summary-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(14, 118, 109, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #fbfcfa);
}

.destination-summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.destination-summary-list li:last-child {
  border-bottom: 0;
}

.destination-summary-list span {
  color: var(--muted);
}

.destination-summary-list strong {
  text-align: right;
}

.destination-summary-panel .primary-action {
  padding: 0 18px;
}

.route-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 72px);
  max-width: 1180px;
  margin: 0 auto;
}

.route-pills,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-row {
  max-width: 1180px;
  margin: 0 auto 24px;
}

.listing-filter-panel {
  display: grid;
  gap: 14px;
  align-content: start;
  min-width: 0;
  border: 1px solid rgba(14, 118, 109, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 250, 247, 0.76));
  box-shadow: 0 16px 36px rgba(24, 33, 29, 0.06);
  padding: 16px;
}

.listing-filter-intro {
  min-width: 0;
  padding-bottom: 2px;
}

.listing-filter-intro .eyebrow {
  margin-bottom: 7px;
}

.listing-filter-intro h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.16;
}

.listing-filter-field {
  display: grid;
  gap: 7px;
}

.listing-filter-field select,
.listing-filter-field input {
  border-color: rgba(14, 118, 109, 0.16);
  background: rgba(255, 255, 255, 0.92);
}

.listing-filter-field label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.listing-filter-actions {
  display: grid;
  gap: 10px;
}

.listing-filter-actions .primary-action {
  width: 100%;
  margin-top: 0;
  padding: 0 16px;
}

.listing-filter-actions .text-link {
  justify-self: center;
}

.listing-filter-links {
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(14, 118, 109, 0.1);
  padding-top: 14px;
}

.listing-filter-group {
  display: grid;
  gap: 8px;
}

.listing-filter-group > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.listing-filter-links .route-pills {
  gap: 8px;
}

.listing-filter-links .route-pills a {
  min-height: 38px;
  padding: 7px 10px;
  font-size: 13px;
}

.route-pills a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  border: 1px solid rgba(14, 118, 109, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #fbfcfa);
  box-shadow: 0 8px 18px rgba(24, 33, 29, 0.04);
  color: var(--ink);
  padding: 8px 12px;
  font-weight: 800;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

.route-pills a:hover {
  border-color: rgba(14, 118, 109, 0.28);
  background: #eff7f4;
  box-shadow: 0 12px 26px rgba(24, 33, 29, 0.08);
  color: var(--sea-dark);
  transform: translateY(-1px);
}

.route-pills strong {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--sea-dark);
  font-size: 12px;
}

.route-pills a:hover strong {
  background: #fff;
}

.empty-state {
  max-width: 1180px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-weight: 750;
}

.inquiry-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #eef6f2, #f7faf7 58%, #fff);
}

.inquiry-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(14, 118, 109, 0), rgba(14, 118, 109, 0.2), rgba(14, 118, 109, 0));
}

.inquiry-section > * {
  position: relative;
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  max-width: 1180px;
  margin: 0 auto;
}

.inquiry-lead {
  max-width: 420px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
}

.inquiry-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 520px;
  margin-top: 22px;
}

.inquiry-flow span {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 7px;
  min-height: 76px;
  border: 1px solid rgba(14, 118, 109, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 251, 248, 0.78));
  box-shadow: 0 12px 28px rgba(24, 33, 29, 0.055);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  padding: 12px;
  text-transform: uppercase;
}

.inquiry-flow strong {
  color: var(--sea-dark);
  font-size: 24px;
  line-height: 1;
}

.inquiry-trust-list {
  max-width: 520px;
  margin-top: 22px;
}

.inquiry-trust-list article {
  border-color: rgba(14, 118, 109, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 251, 248, 0.76));
  box-shadow: 0 10px 24px rgba(24, 33, 29, 0.045);
}

.inquiry-contact {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  color: var(--sea-dark);
  font-weight: 850;
}

.inquiry-contact a {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 38px;
  border: 1px solid rgba(14, 118, 109, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0 11px;
  overflow-wrap: anywhere;
}

.inquiry-form {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
  border: 1px solid rgba(14, 118, 109, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 247, 0.98)),
    #fff;
  padding: 26px;
  box-shadow: var(--shadow-strong);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.inquiry-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--sea), var(--gold));
}

.inquiry-form:focus-within {
  border-color: rgba(14, 118, 109, 0.28);
  box-shadow: 0 24px 70px rgba(24, 33, 29, 0.13);
}

.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select {
  border-color: rgba(14, 118, 109, 0.14);
  background: rgba(251, 252, 250, 0.94);
  min-height: 46px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.inquiry-form input:hover,
.inquiry-form textarea:hover,
.inquiry-form select:hover {
  border-color: rgba(14, 118, 109, 0.28);
  background: #fff;
}

.inquiry-form textarea {
  min-height: 130px;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus,
.inquiry-form select:focus {
  border-color: rgba(14, 118, 109, 0.55);
  background: #fff;
  box-shadow:
    0 0 0 3px rgba(14, 118, 109, 0.12),
    0 10px 22px rgba(24, 33, 29, 0.055);
  outline: 0;
}

.field {
  display: grid;
  gap: 7px;
}

.field:focus-within label {
  color: var(--sea-dark);
}

.field:focus-within input,
.field:focus-within textarea,
.field:focus-within select {
  border-color: rgba(14, 118, 109, 0.55);
  background: #fff;
  box-shadow:
    0 0 0 3px rgba(14, 118, 109, 0.12),
    0 10px 22px rgba(24, 33, 29, 0.055);
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(14, 118, 109, 0.1);
  margin-top: 8px;
  padding-top: 16px;
}

.form-section-title:first-of-type {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}

.form-section-title span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(14, 118, 109, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--sea), var(--sea-dark));
  color: var(--sea-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.form-section-title strong {
  color: var(--sea-dark);
  font-size: 15px;
}

.field label,
.checkbox-field {
  font-size: 13px;
  font-weight: 800;
}

.field label {
  color: #425048;
  transition: color 160ms ease;
}

.field--full,
.checkbox-field,
.form-footer {
  grid-column: 1 / -1;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(14, 118, 109, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  color: #34413a;
  padding: 12px;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.checkbox-field:hover,
.checkbox-field:focus-within {
  border-color: rgba(14, 118, 109, 0.24);
  background: #fff;
  box-shadow: 0 10px 22px rgba(24, 33, 29, 0.045);
}

.checkbox-field input {
  accent-color: var(--sea);
  width: auto;
  margin-top: 4px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-footer {
  display: grid;
  grid-template-columns: minmax(170px, auto) minmax(0, 1fr);
  align-items: stretch;
  gap: 16px;
  border-top: 1px solid rgba(14, 118, 109, 0.1);
  margin-top: 6px;
  padding-top: 18px;
}

.form-footer .primary-action {
  min-width: 170px;
  margin-top: 0;
}

.form-footer .primary-action:disabled,
.inquiry-form.is-submitting .primary-action {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  margin: 0;
  border: 1px solid rgba(14, 118, 109, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.4;
  padding: 8px 11px;
}

.form-status::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(14, 118, 109, 0.34);
}

.form-status.is-success {
  border: 1px solid rgba(14, 118, 109, 0.22);
  border-radius: 8px;
  background: #eff7f4;
  color: var(--sea-dark);
  padding: 10px 12px;
}

.form-status.is-success::before {
  background: var(--sea);
}

.form-status.is-error {
  border: 1px solid rgba(180, 35, 24, 0.22);
  border-radius: 8px;
  background: #fff4f2;
  color: #b42318;
  padding: 10px 12px;
}

.form-status.is-error::before {
  background: #b42318;
}

.listing-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 470px;
  padding: 132px clamp(18px, 4vw, 58px) 94px;
  color: #fff;
  background-color: var(--sea-dark);
  background-image:
    linear-gradient(180deg, rgba(6, 16, 14, 0.16), rgba(6, 16, 14, 0.48)),
    linear-gradient(90deg, rgba(6, 23, 20, 0.9), rgba(9, 30, 27, 0.5), rgba(9, 30, 27, 0.1)),
    var(--listing-image);
  background-position: center;
  background-size: cover;
}

.listing-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(180deg, rgba(251, 251, 247, 0), var(--paper));
  pointer-events: none;
}

.listing-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.listing-hero h1 {
  max-width: 760px;
  font-size: 46px;
  text-shadow: 0 5px 28px rgba(6, 16, 14, 0.36);
}

.listing-hero__lead {
  max-width: 660px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  text-shadow: 0 2px 16px rgba(6, 16, 14, 0.32);
}

.listing-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 820px;
  margin-top: 24px;
}

.listing-hero__stats span {
  display: grid;
  gap: 3px;
  min-width: 132px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 24, 22, 0.34);
  backdrop-filter: blur(10px);
  padding: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.listing-hero__stats strong {
  color: #fff;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.listing-results-section {
  background:
    linear-gradient(180deg, var(--paper), #fff 42%, #f7faf7);
}

.listing-overview {
  max-width: 1180px;
  margin: -28px auto 44px;
  border-bottom: 1px solid rgba(14, 118, 109, 0.12);
  padding: 22px 0 30px;
}

.listing-overview__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
}

.listing-overview__header h2 {
  margin: 0;
  font-size: 34px;
}

.listing-overview__header .section-lead {
  max-width: 680px;
}

.listing-overview__layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.34fr) minmax(0, 0.66fr);
  align-items: start;
  gap: 22px;
}

.listing-overview__map {
  min-width: 0;
}

.listing-results-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto 18px;
  border-top: 1px solid #dfe8e2;
  padding-top: 28px;
}

.listing-results-heading h2 {
  margin: 0;
  font-size: 30px;
}

.listing-results-heading p:last-child {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-weight: 750;
  text-align: right;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.property-grid--listing {
  gap: 24px;
}

.property-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid #d7e2dc;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff, #fbfcfa);
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.property-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(14, 118, 109, 0.92), rgba(200, 148, 61, 0.82));
  opacity: 0;
  transition: opacity 180ms ease;
}

.property-card:hover {
  border-color: rgba(14, 118, 109, 0.28);
  box-shadow: 0 26px 64px rgba(24, 33, 29, 0.14);
  transform: translateY(-2px);
}

.property-card:hover::before {
  opacity: 1;
}

.property-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(14, 118, 109, 0.14), rgba(200, 148, 61, 0.16)),
    #e8eee9;
}

.property-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 16, 14, 0), rgba(6, 16, 14, 0.28));
  opacity: 0;
  transition: opacity 220ms ease;
}

.property-card:hover .property-card__image::after {
  opacity: 1;
}

.property-card__image-placeholder {
  position: relative;
  isolation: isolate;
  display: grid;
  align-content: space-between;
  justify-items: start;
  gap: 14px;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(11, 81, 76, 0.96), rgba(23, 52, 46, 0.92) 66%, rgba(200, 148, 61, 0.72) 148%);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
  padding: 22px;
}

.property-card__image-placeholder::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto -18% -34% 18%;
  height: 54%;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 244, 220, 0.14);
  transform: rotate(-8deg);
}

.property-card__placeholder-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 20px;
  font-weight: 950;
}

.property-card__placeholder-copy {
  display: grid;
  gap: 8px;
  max-width: 100%;
}

.property-card__placeholder-copy strong {
  color: #fff;
  font-size: 22px;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.property-card__placeholder-copy small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.property-card__placeholder-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 0 10px;
}

.property-card__image-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
}

.property-card__image.has-image-error picture {
  display: none;
}

.property-card__image.has-image-error .property-card__image-fallback {
  display: grid;
}

.property-card__image.has-image-error::after {
  display: none;
}

.property-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.property-card:hover .property-card__image img {
  transform: scale(1.035);
}

.property-card__body {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 20px;
}

.property-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.property-card__meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.property-card__meta-row span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.property-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
}

.property-card h2 a {
  color: var(--ink);
}

.property-card h2 a:hover {
  color: var(--sea-dark);
}

.property-card__summary {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 8px;
}

.property-card__summary span {
  display: grid;
  gap: 5px;
  min-height: 72px;
  border: 1px solid rgba(14, 118, 109, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(239, 247, 244, 0.62));
  padding: 11px 12px;
}

.property-card__summary small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.property-card__summary strong {
  align-self: end;
  color: var(--sea-dark);
  font-size: 19px;
  line-height: 1.12;
}

.property-card__location {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  min-height: 30px;
  border-radius: 999px;
  background: #fff7e8;
  color: #72521d;
  padding: 0 10px;
}

.property-card__location::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 148, 61, 0.14);
}

.property-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.property-card__facts li {
  border: 1px solid rgba(14, 118, 109, 0.08);
  border-radius: 8px;
  background: #f1f8f5;
  color: var(--sea-dark);
  font-size: 12px;
  font-weight: 850;
  padding: 6px 8px;
}

.property-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  border: 1px solid rgba(11, 81, 76, 0.16);
  border-radius: 8px;
  background: var(--sea-dark);
  box-shadow: 0 12px 26px rgba(11, 81, 76, 0.16);
  color: #fff;
  font-weight: 900;
  padding: 0 12px;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.property-card__link::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.property-card__link:hover {
  border-color: rgba(11, 81, 76, 0.24);
  background: var(--sea);
  box-shadow: 0 16px 32px rgba(11, 81, 76, 0.2);
  transform: translateY(-1px);
}

.property-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  margin-top: auto;
  padding-top: 14px;
}

.property-card__footer span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.lightbox[hidden] {
  display: none;
}

.has-lightbox {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  z-index: 20;
  inset: 0;
  display: grid;
  place-items: center;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(25, 47, 42, 0.36), rgba(6, 16, 14, 0.92)),
    rgba(6, 16, 14, 0.9);
}

.lightbox__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 12px;
  width: min(1120px, calc(100vw - 28px));
  height: min(760px, calc(100svh - 40px));
}

.lightbox__image-wrap {
  display: grid;
  gap: 12px;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px);
  padding: 10px;
}

.lightbox__panel img {
  max-height: 100%;
  width: 100%;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  object-fit: contain;
}

.lightbox__meta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 9px 12px;
}

.lightbox__counter {
  color: #f3c47e;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.lightbox__caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
  text-align: left;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.icon-button:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.lightbox__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.site-footer {
  display: grid;
  background:
    linear-gradient(135deg, rgba(14, 118, 109, 0.16), rgba(6, 16, 14, 0) 42%),
    linear-gradient(180deg, rgba(255, 244, 220, 0.08), rgba(255, 244, 220, 0)),
    #17201b;
  color: #edf5ef;
  padding: clamp(38px, 6vw, 70px) clamp(18px, 4vw, 58px) 28px;
}

.site-footer__inner {
  display: grid;
  gap: 26px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.site-footer__cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 70px rgba(6, 16, 14, 0.28);
  padding: clamp(22px, 4vw, 34px);
}

.site-footer__cta::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--sea));
}

.site-footer__cta h2 {
  max-width: 680px;
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.03;
}

.site-footer__cta p:not(.eyebrow) {
  max-width: 640px;
  margin: 12px 0 0;
  color: #c7d5cd;
  font-weight: 720;
}

.site-footer__cta .eyebrow {
  color: #ffcf7f;
}

.site-footer__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: end;
  gap: 10px;
}

.site-footer__actions .primary-action,
.site-footer__actions .secondary-action {
  min-width: 166px;
  margin-top: 0;
}

.site-footer__actions .primary-action {
  background: #fff;
  color: var(--sea-dark);
}

.site-footer__actions .secondary-action {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 86px);
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
}

.site-footer__brand {
  display: grid;
  gap: 16px;
  max-width: 600px;
}

.footer-brand {
  display: inline-block;
  width: max-content;
  color: #fff;
  font-size: 22px;
  font-weight: 950;
}

.footer-brand::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--sea));
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  color: #b8c5bd;
  font-weight: 700;
  line-height: 1.65;
}

.site-footer__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 620px;
}

.site-footer__trust span {
  display: grid;
  gap: 7px;
  min-height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #dce8e2;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
  padding: 12px;
}

.site-footer__trust strong {
  color: #ffcf7f;
  font-size: 12px;
  font-weight: 950;
}

.site-footer__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer__contact a {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 0 12px;
  color: #fff;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(128px, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
  color: #dce8e2;
  font-weight: 750;
}

.site-footer nav strong {
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer nav a {
  width: max-content;
  max-width: 100%;
  color: #c7d5cd;
  transition: color 160ms ease, transform 160ms ease;
}

.site-footer nav a:hover,
.site-footer__contact a:hover {
  color: #fff;
}

.site-footer nav a:hover {
  transform: translateX(2px);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  color: rgba(237, 245, 239, 0.68);
  font-size: 13px;
  font-weight: 780;
}

.error-state {
  display: grid;
  min-height: 100svh;
  place-content: center;
  padding: 24px;
  text-align: center;
}

.error-state h1 {
  margin: 0;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    top: 14px;
    left: 14px;
    right: 14px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 8px);
    left: 18px;
    right: 18px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(16, 35, 32, 0.96);
    box-shadow: 0 20px 50px rgba(6, 16, 14, 0.3);
    max-height: calc(100svh - 92px);
    overflow-y: auto;
    padding: 10px;
  }

  .site-header.is-menu-open .site-nav {
    display: flex;
  }

  .guide-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .guide-rail {
    position: relative;
    top: auto;
    display: block;
    overflow: hidden;
    padding: 10px;
  }

  .guide-rail__heading {
    grid-template-columns: auto 1fr;
    align-items: baseline;
    gap: 8px;
    border-bottom: 0;
    padding: 2px 4px 10px;
  }

  .guide-rail__heading strong {
    font-size: 18px;
  }

  .guide-rail__nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .guide-rail__nav::-webkit-scrollbar {
    display: none;
  }

  .guide-rail__nav a {
    grid-template-columns: 28px minmax(104px, 1fr);
    flex: 0 0 min(220px, 74vw);
    min-height: 50px;
  }

  .guide-rail__icon {
    width: 28px;
    height: 28px;
  }

  .hero,
  .detail-hero {
    padding-top: 152px;
  }

  .home-hero,
  .listing-hero,
  .content-hero {
    padding-top: 156px;
  }

  .site-nav > a,
  .nav-group summary {
    justify-content: space-between;
    min-height: 42px;
  }

  .nav-panel {
    position: static;
    min-width: 0;
    margin-top: 6px;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    transform: none;
  }

  .hero h1 {
    font-size: 42px;
  }

  .detail-hero {
    height: auto;
    min-height: 620px;
  }

  .detail-hero__layout {
    grid-template-columns: 1fr;
  }

  .detail-hero__card {
    max-width: 420px;
  }

  .detail-hero__media {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .detail-hero__media-item.is-large {
    grid-column: span 2;
  }

  .detail-nav {
    max-width: calc(100% - 28px);
  }

  .detail-fact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .property-map-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero h1 {
    font-size: 44px;
  }

  .home-hero {
    align-items: flex-start;
    height: auto;
    min-height: 0;
    padding-top: 156px;
  }

  .home-hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-hero__content {
    max-width: 720px;
  }

  .home-hero__planning {
    width: min(100%, 720px);
  }

  .home-hero__planning-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-finder-section {
    margin-top: -24px;
  }

  .home-finder {
    grid-template-columns: 1fr 1fr;
  }

  .assurance-band__inner {
    grid-template-columns: 1fr;
  }

  .assurance-band__link {
    justify-self: start;
  }

  .detail-cta-band {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .detail-cta-band__facts {
    justify-content: start;
  }

  .listing-overview {
    margin-top: -24px;
  }

  .listing-overview__layout {
    grid-template-columns: 1fr;
  }

  .listing-filter-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    box-shadow: 0 12px 28px rgba(24, 33, 29, 0.05);
  }

  .listing-filter-intro,
  .listing-filter-links,
  .listing-filter-actions {
    grid-column: 1 / -1;
  }

  .listing-filter-actions {
    grid-template-columns: minmax(180px, 220px) auto;
    align-items: center;
    justify-content: start;
  }

  .home-finder__intro {
    grid-column: 1 / -1;
  }

  .home-menu {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .destination-cta {
    grid-template-columns: 1fr;
  }

  .seo-link-section {
    grid-template-columns: 1fr;
  }

  .seo-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-menu__all {
    min-height: 86px;
  }

  .intro,
  .split-section,
  .inquiry-layout,
  .content-layout,
  .contact-detail-layout,
  .about-story-layout,
  .destination-detail-layout,
  .route-columns,
  .finder-shell,
  .finder-columns {
    grid-template-columns: 1fr;
  }

  .gallery,
  .amenity-grid,
  .why-grid,
  .property-grid,
  .content-card-grid,
    .about-card-grid,
    .guide-link-grid,
    .destination-grid,
    .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .destination-overview,
  .contact-method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form-panel,
  .about-stats-panel,
  .destination-summary-panel,
  .submission-intro-panel {
    position: static;
  }

  .submission-layout {
    grid-template-columns: 1fr;
  }

  .contact-trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 620px;
  }

  .content-hero__stats {
    max-width: 620px;
  }

  .destination-card {
    grid-template-columns: 1fr;
  }

  .destination-card__image {
    min-height: 190px;
  }

  .guide-strip__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .guide-strip__links {
    justify-content: start;
  }

  .contact-strip,
  .site-footer {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .contact-strip {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: start;
  }

  .site-footer__cta,
  .site-footer__main {
    grid-template-columns: 1fr;
  }

  .site-footer__actions {
    justify-content: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 10px;
    top: 10px;
    left: 10px;
    right: 10px;
    padding: 12px;
  }

  .brand {
    max-width: 132px;
    font-size: 14px;
    overflow-wrap: anywhere;
  }

  .lang-switch a {
    width: 34px;
  }

  .hero {
    min-height: 500px;
    padding: 144px 16px 34px;
  }

  .detail-hero {
    min-height: 0;
    padding: 156px 16px 42px;
  }

  .hero h1,
  .home-hero h1,
  .listing-hero h1,
  .content-hero h1 {
    font-size: 36px;
  }

  .content-hero {
    min-height: 360px;
    padding: 156px 16px 72px;
  }

  .content-hero__inner > p:not(.eyebrow) {
    font-size: 16px;
  }

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

  .content-hero__stats span {
    min-width: 0;
  }

  .detail-hero__actions {
    flex-direction: column;
  }

  .detail-hero__card {
    width: 100%;
    padding: 18px;
  }

  .detail-hero__media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 8px;
  }

  .detail-hero__media-item,
  .detail-hero__media-item.is-large {
    grid-column: span 1;
    min-height: 116px;
  }

  .detail-hero__lead {
    font-size: 16px;
  }

  .detail-hero__card strong {
    font-size: 30px;
  }

  .detail-nav {
    justify-content: start;
    margin-top: -18px;
    overflow-x: auto;
    padding: 8px 16px;
  }

  .detail-nav a {
    flex: 0 0 auto;
  }

  .detail-fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-panel {
    position: static;
  }

  .detail-price-summary {
    grid-template-columns: 1fr;
  }

  .gallery-item__caption {
    font-size: 12px;
  }

  .gallery-shell {
    padding: 6px;
  }

  .home-hero {
    min-height: 0;
    padding: 144px 16px 76px;
  }

  .home-hero__content::before {
    width: 54px;
    margin-bottom: 16px;
  }

  .home-hero__lead {
    font-size: 16px;
  }

  .home-hero__proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 360px;
    margin-top: 18px;
  }

  .home-hero__proof span {
    min-width: 0;
    min-height: 62px;
  }

  .home-hero__proof strong {
    font-size: 20px;
  }

  .home-hero__actions {
    flex-direction: column;
    width: min(100%, 360px);
  }

  .home-hero__actions .primary-action,
  .home-hero__actions .secondary-action {
    width: 100%;
    min-width: 0;
  }

  .home-hero__planning {
    width: 100%;
    padding: 14px;
  }

  .home-hero__planning-links {
    grid-template-columns: 1fr;
  }

  .home-hero__planning-links a {
    min-height: 44px;
  }

  .hero-meta {
    gap: 8px 14px;
    font-size: 13px;
  }

  .home-finder-section {
    margin-top: -20px;
    padding: 0 16px;
  }

  .home-finder {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .assurance-band {
    padding: 22px 16px 0;
  }

  .assurance-band__inner {
    padding: 14px;
  }

  .assurance-band__items {
    grid-template-columns: 1fr;
  }

  .assurance-band__link {
    width: 100%;
  }

  .home-finder__column a {
    min-height: 42px;
  }

  .listing-filter-panel {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .listing-overview {
    padding-bottom: 22px;
  }

  .listing-overview {
    margin-top: -18px;
  }

  .listing-overview__header,
  .listing-results-heading,
  .property-map-section--listing-overview .section__header--split {
    align-items: start;
    flex-direction: column;
  }

  .listing-results-heading p:last-child {
    max-width: none;
    text-align: left;
  }

  .listing-filter-intro {
    padding-bottom: 4px;
  }

  .listing-filter-actions {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .listing-filter-actions .text-link {
    text-align: center;
  }

  .listing-hero {
    min-height: 0;
    padding: 156px 16px 76px;
  }

  .listing-hero__lead {
    font-size: 16px;
  }

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

  .listing-hero__stats span {
    min-width: 0;
  }

  .home-finder__all {
    min-height: 88px;
  }

  .destination-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .destination-cta__actions .primary-action,
  .destination-cta__actions .text-link {
    width: 100%;
    text-align: center;
  }

  .site-footer__columns {
    grid-template-columns: 1fr;
  }

  .site-footer__trust {
    grid-template-columns: 1fr;
  }

  .site-footer__actions .primary-action,
  .site-footer__actions .secondary-action {
    width: 100%;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .section__header--split {
    align-items: start;
    flex-direction: column;
  }

  .hero__facts span {
    font-size: 13px;
  }

  .section {
    padding: 42px 16px;
  }

  .rich-text {
    font-size: 16px;
    line-height: 1.72;
  }

  .rich-text h2 {
    font-size: 26px;
  }

  .rich-text h3 {
    font-size: 21px;
  }

  .content-card__body {
    padding: 16px;
  }

  .content-card__cta {
    width: 100%;
  }

  .hero__facts {
    gap: 8px;
  }

  .detail-cta-band {
    gap: 16px;
    margin: 0 16px 8px;
    padding: 22px 16px;
  }

  .detail-cta-band h2 {
    font-size: 24px;
  }

  .detail-cta-band__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .detail-cta-band .primary-action {
    width: 100%;
  }

  .detail-hero__card-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 14px 0;
  }

  .detail-hero__card-meta span {
    display: grid;
    align-content: start;
    justify-content: stretch;
    gap: 2px;
    min-height: 58px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 8px;
  }

  .detail-hero__card .primary-action {
    min-height: 42px;
  }

  .intro h2,
  .section h2 {
    font-size: 28px;
  }

  .gallery,
  .amenity-grid,
  .why-grid,
  .property-grid,
  .property-map-list,
  .content-card-grid,
  .about-card-grid,
    .guide-link-grid,
    .destination-overview,
    .contact-method-grid,
    .contact-trust-grid,
    .destination-grid,
    .steps-grid {
    grid-template-columns: 1fr;
  }

  .content-hero__actions,
  .inquiry-form--compact {
    grid-template-columns: 1fr;
  }

  .content-hero__actions {
    flex-direction: column;
    width: min(100%, 360px);
  }

  .content-hero__actions .primary-action,
  .content-hero__actions .secondary-action {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .breadcrumbs {
    padding: 12px 16px;
  }

  .breadcrumbs ol {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .breadcrumbs ol::-webkit-scrollbar {
    display: none;
  }

  .breadcrumbs li {
    flex: 0 0 auto;
  }

  .seo-link-section {
    padding: 20px 18px 18px;
  }

  .seo-link-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    min-height: 66px;
  }

  .finder-columns > div,
  .detail-panel,
  .step-card,
  .destination-card__body {
    padding: 18px;
  }

  .guide-strip {
    padding: 0 16px 16px;
  }

  .guide-strip__inner {
    padding: 16px;
  }

  .guide-strip h2 {
    font-size: 22px;
  }

  .guide-strip__links {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }

  .guide-strip__links a {
    flex: 1 1 132px;
    min-width: 0;
  }

  .guide-hub-section,
  .guide-detail-section {
    padding-top: 36px;
  }

  .guide-main {
    gap: 22px;
  }

  .guide-rail__copy small {
    white-space: normal;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .inquiry-flow {
    grid-template-columns: 1fr;
  }

  .form-section-title {
    align-items: flex-start;
  }

  .contact-form-panel,
  .about-stats-panel,
  .destination-summary-panel,
  .submission-intro-panel,
  .submission-form-panel {
    padding: 18px;
  }

  .submission-checklist {
    grid-template-columns: 1fr;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .form-status {
    text-align: left;
  }

  .site-footer__contact {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer__contact a {
    justify-content: center;
  }

  .gallery-item--large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .property-map__canvas {
    min-height: 360px;
  }

  .property-map__label {
    min-width: 132px;
    max-width: 170px;
  }

  .lightbox__panel {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
  }

  .lightbox__meta {
    grid-template-columns: 1fr;
  }

  .icon-button {
    width: 34px;
    height: 38px;
  }
}

@media (max-width: 430px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .home-hero {
    padding-top: 192px;
  }

  .lang-switch {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .site-nav {
    top: calc(100% - 2px);
  }

  .home-hero h1,
  .listing-hero h1,
  .content-hero h1 {
    font-size: 32px;
  }

  .content-hero {
    padding-top: 184px;
  }

  .listing-hero {
    padding-top: 184px;
  }

  .detail-hero__content h1,
  .hero h1 {
    font-size: 34px;
  }

  .detail-hero {
    padding-top: 184px;
  }

  .hero-meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .detail-fact-grid,
  .detail-cta-band__facts {
    grid-template-columns: 1fr;
  }

  .property-card__meta-row,
  .property-card__footer,
  .destination-card__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .property-card__summary {
    grid-template-columns: 1fr;
  }

  .property-card__body {
    padding: 16px;
  }

  .property-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .property-card__footer span {
    order: 2;
  }

  .property-card__link {
    width: 100%;
  }

  .lightbox__panel {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    width: calc(100vw - 16px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
