:root {
  --ink: #0a243a;
  --deep: #06243c;
  --forest: #173f58;
  --sky: #78c9ed;
  --sky-soft: #e3f5fb;
  --olive: #768758;
  --sand: #f4efe5;
  --paper: #fffaf2;
  --terracotta: #c9674a;
  --line: rgba(10, 36, 58, 0.14);
  --shadow: 0 24px 70px rgba(10, 36, 58, 0.16);
  font-family: Manrope, Arial, sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--sand); color: var(--ink); }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 120px; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; color: var(--ink); font-family: "Cormorant Garamond", Georgia, serif; font-weight: 700; line-height: 0.98; }
p { color: rgba(10, 36, 58, 0.74); line-height: 1.75; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  border: 0;
  background: linear-gradient(180deg, rgba(6, 36, 60, 0.72), rgba(6, 36, 60, 0));
  box-shadow: none;
  padding: 28px max(28px, calc((100vw - 1320px) / 2));
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(6, 36, 60, 0.94);
  box-shadow: 0 18px 52px rgba(10, 36, 58, 0.18);
  padding-top: 14px;
  padding-bottom: 14px;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 250px;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.brand img { width: 244px; filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.28)); }

.site-header nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-header nav a {
  position: relative;
  padding: 10px 0;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--terracotta);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-header nav a:hover::after,
.site-header nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px;
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 7px 8px;
}

.language-switch a.is-active {
  background: rgba(255, 255, 255, 0.92);
  color: var(--deep);
}

.header-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  padding: 14px 22px;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta, .button.primary { background: var(--terracotta); color: #fff; }
.header-cta { box-shadow: 0 18px 42px rgba(201, 103, 74, 0.26); }
.header-cta:hover, .button.primary:hover { background: #a94f36; box-shadow: 0 14px 34px rgba(169, 79, 54, 0.22); transform: translateY(-2px); }
.button.ghost { border: 1px solid rgba(10, 36, 58, 0.26); background: rgba(255, 250, 242, 0.62); color: var(--forest); }
.button.ghost:hover { background: var(--paper); transform: translateY(-2px); }
.menu-button { display: none; border: 0; background: transparent; }
.menu-button span { display: block; width: 26px; height: 2px; margin: 6px 0; background: #fff; }

.hero {
  position: relative;
  display: grid;
  min-height: 820px;
  align-items: end;
  padding: 170px max(42px, calc((100vw - 1320px) / 2)) 92px;
}

.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(244, 239, 229, 0.92) 0%, rgba(244, 239, 229, 0.72) 38%, rgba(227, 245, 251, 0.08) 74%), linear-gradient(180deg, rgba(6, 36, 60, 0.36), rgba(6, 36, 60, 0.02) 34%); content: ""; }
.hero-copy { position: relative; z-index: 1; max-width: 640px; }
.eyebrow { margin: 0 0 16px; color: var(--terracotta); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.hero h1 { max-width: 720px; font-size: clamp(2.7rem, 5vw, 5.05rem); }
.hero p { max-width: 560px; font-size: 1.08rem; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: 0 max(28px, calc((100vw - 1180px) / 2));
}

.quick-strip article { display: grid; gap: 8px; border-right: 1px solid var(--line); padding: 28px; }
.quick-strip span { color: var(--terracotta); font-weight: 900; }
.section { width: min(calc(100% - 42px), 1180px); margin: 0 auto; padding: 86px 0; }
.section-head { margin-bottom: 30px; }
.section-head h2, .page-hero h1, .property-hero h1, .experience h2 { font-size: clamp(2.15rem, 3.3vw, 3.65rem); }

.property-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.property-card { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); box-shadow: 0 16px 45px rgba(10, 36, 58, 0.08); transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.property-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.property-card:hover { border-color: rgba(120, 201, 237, 0.58); }
.property-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 260ms ease; }
.property-card:hover img { transform: scale(1.035); }
.property-card div { padding: 20px; }
.property-card span { color: var(--terracotta); font-size: 0.72rem; font-weight: 900; text-transform: uppercase; }
.property-card h3 { margin: 8px 0; font-size: 1.55rem; }
.property-card p { font-size: 0.9rem; }
.property-card ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 0; padding: 0; list-style: none; }
.property-card li, .tag-row span { border-radius: 999px; background: rgba(120, 201, 237, 0.18); color: var(--forest); font-size: 0.72rem; font-weight: 800; padding: 8px 10px; }
.property-card b { display: inline-flex; margin-top: 18px; color: var(--terracotta); font-size: 0.78rem; text-transform: uppercase; }
.page-note { max-width: 720px; font-weight: 700; }

.stats-band { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; padding-top: 0; }
.stats-band article { border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(135deg, var(--paper), var(--sky-soft)); padding: 24px; }
.stats-band strong { display: block; color: var(--forest); font-family: Manrope, Arial, sans-serif; font-size: 2.35rem; font-weight: 900; line-height: 1; }
.stats-band span { display: block; margin-top: 8px; color: rgba(10, 36, 58, 0.72); font-weight: 800; }
.text-link { display: inline-flex; margin-top: 14px; color: var(--terracotta); font-weight: 900; text-transform: uppercase; }

.experience { display: grid; grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr); gap: 42px; width: min(calc(100% - 42px), 1180px); margin: 0 auto 86px; align-items: center; }
.experience-mosaic { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.experience-mosaic img { width: 100%; min-height: 190px; border-radius: 18px; object-fit: cover; box-shadow: 0 16px 45px rgba(10, 36, 58, 0.1); }
.experience-mosaic img:first-child { grid-column: span 4; grid-row: span 2; min-height: 394px; }
.experience-mosaic img:nth-child(2), .experience-mosaic img:nth-child(3) { grid-column: span 2; }
.experience-mosaic div { display: grid; grid-column: 1 / -1; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.experience-mosaic span { display: grid; min-height: 74px; place-items: center; border-radius: 16px; background: linear-gradient(135deg, var(--forest), #276d78); color: #fff; font-weight: 900; }

.page-hero, .property-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.9fr);
  gap: 44px;
  align-items: center;
  min-height: 650px;
  padding: 170px max(42px, calc((100vw - 1320px) / 2)) 84px;
}
.page-hero.compact { min-height: 560px; }
.scenic-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(244, 239, 229, 0.9), rgba(244, 239, 229, 0.68) 44%, rgba(244, 239, 229, 0.1) 78%), linear-gradient(180deg, rgba(6, 36, 60, 0.48), rgba(6, 36, 60, 0.02) 36%), var(--hero-image);
  background-position: center;
  background-size: cover;
  content: "";
}
.scenic-hero > * { position: relative; z-index: 1; }
.scenic-hero > div { max-width: 680px; }
.legal-hero {
  min-height: 440px;
  background: linear-gradient(135deg, var(--deep), #0a3150);
}
.legal-hero h1, .legal-hero p { color: #fff; }
.property-hero .button.ghost,
.hero .button.ghost,
.page-hero .button.ghost {
  border-color: rgba(10, 36, 58, 0.38);
  background: rgba(255, 250, 242, 0.62);
}
.location-hero iframe, .map-card iframe { width: 100%; min-height: 420px; border: 0; border-radius: 24px; box-shadow: var(--shadow); }

.property-detail { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 390px); gap: 28px; padding-top: 24px; }
.property-detail article, .facts, .legal-grid article, .contact-grid > *, .amenity-section, .reviews-card, .map-card, .booking-card-soft, .location-cards article, .split-section > article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 16px 45px rgba(10, 36, 58, 0.08);
  padding: 28px;
}

.property-detail h2, .amenity-section h2, .reviews-card h2, .map-card h2 { font-size: clamp(1.9rem, 3vw, 3.2rem); }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.note { border-left: 3px solid var(--terracotta); padding-left: 16px; font-weight: 700; }
.score-pill { display: inline-flex; margin: 8px 0 24px; border-radius: 999px; background: var(--sky-soft); color: var(--forest); font-weight: 900; padding: 9px 14px; }
.facts { display: grid; gap: 12px; }
.facts div, .contact-grid > * { display: grid; gap: 5px; }
.facts span, .contact-grid span { color: var(--terracotta); font-size: 0.72rem; font-weight: 900; text-transform: uppercase; }

.amenity-section { display: grid; grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr); gap: 28px; padding: 34px; }
.amenity-section ul { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin: 0; padding: 0; list-style: none; }
.amenity-section li { border-radius: 12px; background: rgba(120, 201, 237, 0.16); color: var(--forest); font-weight: 800; padding: 12px; }

.availability-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-top: 24px;
}

.calendar-shell {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 16px 45px rgba(10, 36, 58, 0.08);
  padding: 28px;
}

.availability-copy h2 { font-size: clamp(1.9rem, 3vw, 3.2rem); }
.availability-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  column-gap: 28px;
  align-items: end;
  padding: 0 8px 4px;
}
.availability-copy .eyebrow,
.availability-copy h2 { grid-column: 1; }
.availability-copy p:not(.eyebrow) { grid-column: 1; max-width: 820px; }
.availability-copy .calendar-legend { grid-column: 2; grid-row: 1 / span 3; align-self: center; justify-self: end; }
.calendar-legend { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 0; }
.calendar-legend span { display: inline-flex; gap: 8px; align-items: center; font-size: 0.82rem; font-weight: 900; }
.calendar-legend i { width: 14px; height: 14px; border-radius: 4px; }
.calendar-legend .available { background: #dff3d3; }
.calendar-legend .booked { background: #f4b3a8; }
.calendar-legend .manual { background: #f4b3a8; }
.calendar-loading { color: rgba(10, 36, 58, 0.68); font-weight: 800; }
.calendar-toolbar { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.calendar-toolbar small { color: rgba(10, 36, 58, 0.62); font-weight: 800; }
.calendar-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.vf-month { border: 1px solid var(--line); border-radius: 14px; background: #fffdf8; padding: 14px; }
.vf-month h3 { font-family: Manrope, Arial, sans-serif; font-size: 0.9rem; }
.weekdays, .days { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 4px; margin-top: 10px; }
.weekdays span { color: rgba(10, 36, 58, 0.52); font-size: 0.68rem; font-weight: 900; text-align: center; }
.days span, .days button { min-height: 30px; border: 0; border-radius: 8px; font: inherit; font-size: 0.78rem; font-weight: 800; }
.days button { color: var(--ink); cursor: default; transition: transform 120ms ease, box-shadow 120ms ease; }
.days button:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(10, 36, 58, 0.12); }
.days .available { background: #dff3d3; }
.days .booked, .days .reserved, .days .blocked { background: #f4b3a8; }

.gallery .section-head {
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1fr);
  gap: 34px;
  align-items: end;
}
.gallery h2 { max-width: 820px; margin-bottom: 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: var(--forest);
  cursor: zoom-in;
  padding: 0;
  box-shadow: 0 14px 32px rgba(10, 36, 58, 0.1);
}
.gallery-item img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 220ms ease, filter 220ms ease; }
.gallery-item:hover img { transform: scale(1.035); filter: saturate(1.04); }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item:first-child img { aspect-ratio: 8 / 6; }
.gallery-item span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(10, 36, 58, 0.56);
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 900;
}
.property-gallery-lead { padding-top: 18px; padding-bottom: 24px; }
.property-location-before { align-items: stretch; padding-top: 8px; }
.booking-card-soft {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}
.booking-card-soft h2 { font-size: clamp(2rem, 3vw, 3.2rem); }
.booking-card-soft p { max-width: 620px; }
.booking-card-soft .button { width: fit-content; margin-top: 18px; }

.is-lightbox-open { overflow: hidden; }
.lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 76px;
  align-items: center;
  gap: 12px;
  background: rgba(4, 24, 39, 0.92);
  backdrop-filter: blur(10px);
  padding: 26px;
}
.lightbox figure {
  display: grid;
  place-items: center;
  gap: 12px;
  min-width: 0;
  margin: 0;
}
.lightbox img {
  max-width: 100%;
  max-height: 84vh;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}
.lightbox figcaption { color: rgba(255, 255, 255, 0.78); font-weight: 900; }
.lightbox button {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  font-family: Manrope, Arial, sans-serif;
  font-weight: 900;
}
.lightbox button:hover { background: rgba(255, 255, 255, 0.2); }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
}
.lightbox-nav {
  width: 58px;
  height: 58px;
  justify-self: center;
  font-size: 3rem;
  line-height: 0.7;
}

.split-section { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr); gap: 18px; padding-top: 0; }
blockquote { margin: 24px 0 0; border-left: 3px solid var(--sky); padding-left: 18px; }
blockquote p { margin: 0; }
blockquote cite { display: block; margin-top: 10px; color: var(--terracotta); font-style: normal; font-weight: 900; }
.featured-reviews { margin-top: 8px; }
.all-reviews { margin-top: 24px; border-top: 1px solid var(--line); padding-top: 18px; }
.all-reviews > summary {
  display: inline-flex;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  padding: 12px 18px;
}
.review-list {
  display: grid;
  gap: 10px;
  max-height: 720px;
  margin-top: 18px;
  overflow: auto;
  padding-right: 8px;
}
.review-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffdf8;
  padding: 14px;
}
.review-item summary {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  font-weight: 900;
}
.review-item small {
  color: var(--terracotta);
  font-size: 0.76rem;
  white-space: nowrap;
}
.review-item p { margin: 12px 0 0; font-size: 0.92rem; }
.owner-response {
  border-left: 3px solid var(--terracotta);
  background: rgba(197, 109, 77, 0.08);
  padding: 10px 12px;
}
.review-form {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.review-form h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
}
.review-form p { margin: 0; }
.review-form label {
  display: grid;
  gap: 7px;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 900;
}
.review-form input,
.review-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
}
.review-form textarea { resize: vertical; }
.review-form .button { width: fit-content; }
.review-status {
  border-radius: 12px;
  background: rgba(120, 201, 237, 0.16);
  color: var(--forest);
  font-weight: 900;
  padding: 12px 14px;
}
.review-hidden {
  position: absolute;
  left: -9999px;
  opacity: 0;
}
.map-card iframe { margin-top: 18px; }
.location-page-body {
  background: linear-gradient(180deg, #a9bcc0 0%, #dfe5e2 48%, var(--sand) 100%);
  padding: 22px 0 8px;
}
.location-guide { display: grid; gap: 34px; }
.location-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: 36px;
  align-items: center;
}
.location-story.reverse { grid-template-columns: minmax(340px, 1fr) minmax(0, 0.9fr); }
.location-story.reverse .location-copy { order: 2; }
.location-copy,
.location-media,
.arrival-card,
.weather-card {
  border: 1px solid rgba(10, 36, 58, 0.12);
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.88);
  box-shadow: 0 18px 55px rgba(10, 36, 58, 0.12);
}
.location-copy { padding: 34px; }
.location-copy h2 { font-size: clamp(2rem, 3.5vw, 3.8rem); }
.location-copy h3 { margin: 28px 0 6px; font-size: 1.35rem; }
.location-media { overflow: hidden; margin: 0; padding: 0; }
.location-media img { width: 100%; min-height: 390px; height: 100%; object-fit: cover; }
.location-media.wide img { min-height: 440px; }
.location-list { display: grid; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; }
.location-list li {
  border-left: 3px solid var(--terracotta);
  background: rgba(255, 255, 255, 0.48);
  color: rgba(10, 36, 58, 0.78);
  font-weight: 750;
  padding: 8px 12px;
}
.arrival-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: 18px;
  align-items: stretch;
  padding-top: 20px;
}
.arrival-card,
.weather-card { padding: 28px; }
.arrival-card h2 { font-size: clamp(1.9rem, 3vw, 3.15rem); }
.arrival-card p { margin: 10px 0 0; }
.location-map-card { grid-row: span 2; }
.location-map-card iframe { min-height: 520px; }
.weather-card {
  display: grid;
  align-content: center;
  min-height: 180px;
  background: linear-gradient(135deg, var(--deep), var(--forest));
}
.weather-card span { color: var(--terracotta); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.weather-card strong { display: block; margin-top: 8px; color: #fff; font-size: 1.65rem; }
.weather-card p { margin-bottom: 0; color: rgba(255, 255, 255, 0.78); }
.location-photo-strip { display: grid; grid-template-columns: 1.25fr 0.85fr 0.85fr; gap: 18px; padding-top: 0; }
.location-photo-strip img { width: 100%; min-height: 260px; border-radius: 20px; object-fit: cover; box-shadow: 0 16px 45px rgba(10, 36, 58, 0.1); }
.location-cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; padding-top: 24px; }
.location-cards h2 { font-size: 1.55rem; }

.booking-band { margin: 0 auto 90px; width: min(calc(100% - 42px), 1180px); border-radius: 26px; background: linear-gradient(135deg, var(--deep), var(--forest)); color: #fff; padding: 44px; }
.booking-band h2, .booking-band p { color: #fff; }
.booking-band .button { background: var(--paper); color: var(--forest); }
.contact-grid, .legal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; padding-top: 24px; }
.contact-grid-rich { grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; }
.contact-grid-rich > * { padding: 24px; }
.contact-card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.contact-card::after {
  position: absolute;
  inset: auto -42px -54px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 201, 237, 0.22), rgba(120, 201, 237, 0));
  content: "";
  pointer-events: none;
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(203, 92, 67, 0.45);
  box-shadow: 0 24px 60px rgba(10, 36, 58, 0.16);
}
.contact-card.featured {
  border-color: rgba(31, 111, 76, 0.25);
  background: linear-gradient(145deg, #fffaf2 0%, #eef7ed 100%);
}
.contact-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--deep);
  color: #fff;
  box-shadow: 0 12px 26px rgba(10, 36, 58, 0.16);
}
.contact-card.featured .contact-icon {
  background: #1f6f4c;
  animation: softPulse 2.8s ease-in-out infinite;
}
.contact-icon svg,
.contact-actions svg,
.social-row svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}
.contact-card strong {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.2;
}
.contact-card em {
  color: rgba(10, 36, 58, 0.68);
  font-style: normal;
  line-height: 1.55;
}
.contact-card b {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(203, 92, 67, 0.12);
  color: var(--terracotta);
  font-size: 1.05rem;
}
.contact-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 18px;
  padding-top: 0;
}
.contact-panel,
.contact-map {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 18px 55px rgba(10, 36, 58, 0.1);
  padding: 32px;
}
.contact-panel {
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.96), rgba(255, 250, 242, 0.86)),
    radial-gradient(circle at 88% 16%, rgba(120, 201, 237, 0.24), transparent 34%);
}
.contact-panel h2 { font-size: clamp(2.2rem, 4vw, 4rem); }
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.contact-actions .button {
  display: inline-flex;
  gap: 9px;
  align-items: center;
}
.contact-actions .button svg { width: 18px; height: 18px; }
.contact-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.contact-benefits span {
  border: 1px solid rgba(10, 36, 58, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.35;
  padding: 14px;
}
.contact-benefits b {
  display: block;
  margin-bottom: 8px;
  color: var(--terracotta);
  font-size: 0.75rem;
}
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
}
.social-row small {
  width: 100%;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.social-row a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(10, 36, 58, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--forest);
  font-weight: 900;
  padding: 10px 14px;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}
.social-row a:hover { transform: translateY(-2px); background: rgba(120, 201, 237, 0.16); }
.contact-map iframe { min-height: 470px; }

@keyframes softPulse {
  0%, 100% { box-shadow: 0 12px 26px rgba(31, 111, 76, 0.16); }
  50% { box-shadow: 0 12px 26px rgba(31, 111, 76, 0.2), 0 0 0 10px rgba(31, 111, 76, 0.08); }
}

footer { display: grid; grid-template-columns: minmax(220px, 0.7fr) 1fr; gap: 40px; background: linear-gradient(135deg, var(--deep), #0a3150); color: #fff; padding: 44px max(28px, calc((100vw - 1180px) / 2)); }
footer img { width: 210px; }
footer p, footer a, footer button { color: rgba(255, 255, 255, 0.78); }
footer nav { display: flex; flex-wrap: wrap; gap: 18px; justify-content: flex-end; }
footer button { border: 0; background: transparent; cursor: pointer; font: inherit; padding: 0; }

.cookie-banner {
  position: fixed;
  z-index: 40;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  width: min(calc(100% - 36px), 780px);
  border-radius: 18px;
  background: rgba(21, 51, 45, 0.98);
  box-shadow: var(--shadow);
  color: #fff;
  padding: 18px;
}
.cookie-banner h2, .cookie-banner p { margin: 0; color: #fff; }
.cookie-banner p { font-size: 0.82rem; }
.cookie-copy { display: grid; gap: 7px; }
.cookie-copy a { color: #fff; font-size: 0.82rem; font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.cookie-banner button { border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 999px; background: transparent; color: #fff; cursor: pointer; font-weight: 900; padding: 12px 16px; }
.cookie-banner button[data-cookie-accept],
.cookie-banner button[data-cookie-save] { border-color: transparent; background: var(--paper); color: var(--forest); }
.cookie-preferences {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 12px;
}
.cookie-preferences[hidden] { display: none; }
.cookie-preferences label { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; color: #fff; }
.cookie-preferences input { margin-top: 4px; }
.cookie-preferences strong { display: block; color: #fff; }
.cookie-preferences span { color: rgba(255, 255, 255, 0.78); font-size: 0.82rem; }

@media (max-width: 1120px) {
  .site-header { gap: 14px; }
  .site-header nav { gap: 14px; font-size: 0.72rem; }
  .brand { min-width: 210px; }
  .brand img { width: 184px; }
}

@media (max-width: 1020px) {
  .property-grid, .quick-strip, .stats-band, .location-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid-rich { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .experience, .property-hero, .property-detail, .amenity-section, .availability-section, .split-section, .contact-showcase, .page-hero, .location-story, .location-story.reverse, .arrival-section { grid-template-columns: 1fr; }
  .availability-copy { grid-template-columns: 1fr; }
  .availability-copy .eyebrow,
  .availability-copy h2,
  .availability-copy p:not(.eyebrow),
  .availability-copy .calendar-legend { grid-column: 1; grid-row: auto; justify-self: start; }
  .location-story.reverse .location-copy { order: 0; }
  .location-map-card { grid-row: auto; }
  .amenity-section ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .site-header {
    top: 12px;
    right: 12px;
    left: 12px;
    grid-template-columns: auto auto;
    width: auto;
    border-radius: 24px;
    background: rgba(6, 36, 60, 0.9);
    padding: 10px 14px;
    backdrop-filter: blur(18px);
  }
  .brand { min-width: 0; padding: 0; }
  .brand img { width: 150px; }
  .menu-button { display: block; justify-self: end; }
  .site-header nav {
    position: fixed;
    top: 82px;
    right: 12px;
    left: 12px;
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(6, 36, 60, 0.96);
    box-shadow: var(--shadow);
    color: #fff;
    padding: 18px;
  }
  .site-header nav.is-open { display: grid; }
  .header-cta { display: none; }
  .header-tools {
    grid-column: 1 / -1;
    justify-content: flex-end;
    width: 100%;
  }
  .language-switch a { min-width: 31px; padding: 6px 7px; }
  .hero, .page-hero, .property-hero { min-height: auto; padding: 120px 22px 48px; }
  .hero { min-height: 680px; }
  .hero::after {
    background: linear-gradient(90deg, rgba(244, 239, 229, 0.96) 0%, rgba(244, 239, 229, 0.9) 58%, rgba(244, 239, 229, 0.35) 100%), linear-gradient(180deg, rgba(6, 36, 60, 0.28), rgba(6, 36, 60, 0.02) 34%);
  }
  .hero-copy { max-width: 340px; }
  .hero h1 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .property-grid, .quick-strip, .stats-band, .experience-mosaic div, .gallery-grid, .amenity-section ul, .calendar-grid, .location-cards, .location-photo-strip, .contact-grid, .contact-grid-rich, .contact-benefits, .legal-grid, footer { grid-template-columns: 1fr; }
  .experience-mosaic, .gallery .section-head { grid-template-columns: 1fr; }
  .experience-mosaic img, .experience-mosaic img:first-child, .experience-mosaic img:nth-child(2), .experience-mosaic img:nth-child(3) { grid-column: auto; grid-row: auto; min-height: 240px; }
  .quick-strip article { border-right: 0; border-bottom: 1px solid var(--line); }
  .section { width: calc(100% - 32px); padding: 58px 0; }
  .location-copy, .arrival-card, .weather-card { padding: 22px; }
  .location-media img, .location-media.wide img { min-height: 260px; }
  .location-map-card iframe { min-height: 360px; }
  .gallery-item:first-child { grid-column: auto; grid-row: auto; }
  .lightbox {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    padding: 18px;
  }
  .lightbox img { max-height: 74vh; }
  .lightbox-prev { position: fixed; left: 16px; bottom: 20px; }
  .lightbox-next { position: fixed; right: 16px; bottom: 20px; }
  .lightbox-nav { width: 52px; height: 52px; font-size: 2.4rem; }
  .contact-panel, .contact-map { padding: 24px; }
  .contact-actions .button { width: 100%; justify-content: center; }
  .contact-map iframe { min-height: 360px; }
  .location-hero iframe, .map-card iframe { min-height: 320px; }
  footer nav { justify-content: flex-start; }
  .cookie-banner { grid-template-columns: 1fr; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions button { flex: 1 1 140px; }
}
