:root {
  --ink: #15242a;
  --muted: #617077;
  --paper: #f8f6ef;
  --panel: #ffffff;
  --ocean: #0f6f8b;
  --deep: #12333d;
  --reef: #00a6b4;
  --coral: #d86f4f;
  --sand: #e8cf9b;
  --line: rgba(21, 36, 42, 0.14);
  --shadow: 0 24px 70px rgba(21, 36, 42, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Avenir, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body.gallery-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled,
.site-header.menu-open {
  color: var(--ink);
  background: rgba(248, 246, 239, 0.94);
  box-shadow: 0 10px 30px rgba(21, 36, 42, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 18px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.78;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
  font-size: 14px;
  font-weight: 800;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
}

.nav-cta {
  padding: 0 18px;
  color: var(--ink);
  background: #fff;
}

.site-header.scrolled .nav-cta,
.site-header.menu-open .nav-cta {
  color: #fff;
  background: var(--ocean);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(780px, 94vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--deep);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 31, 38, 0.74), rgba(8, 31, 38, 0.18) 58%, rgba(8, 31, 38, 0.02)),
    linear-gradient(0deg, rgba(8, 31, 38, 0.56), rgba(8, 31, 38, 0) 46%);
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 160px 0 112px;
  color: #fff;
}

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

.hero .eyebrow,
.property-band .eyebrow {
  color: #ffd078;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(54px, 9vw, 124px);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 5vw, 68px);
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero-content > p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  padding: 0 24px;
}

.button.primary {
  color: var(--ink);
  background: #fff;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.68);
  color: #fff;
}

.booking-band {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 32px));
  margin: -64px auto 0;
  scroll-margin-top: 100px;
}

.booking-widget {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.booking-widget:focus {
  outline: 0;
}

.booking-widget.booking-selected {
  border-color: rgba(255, 208, 120, 0.95);
  box-shadow: 0 28px 80px rgba(11, 46, 56, 0.28);
}

.booking-widget-copy {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 116px;
  padding: 24px;
  color: #fff;
  background: var(--deep);
}

.booking-widget-copy span {
  color: #ffd078;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.booking-widget-copy strong {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
}

.booking-widget-copy small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.nightsbridge-widget {
  display: grid;
  align-items: center;
  min-height: 116px;
  padding: 22px 24px 22px 0;
}

.nightsbridge-widget .nb_searchbox,
.nightsbridge-widget .nb_searchbox_main,
.nightsbridge-widget form {
  float: none !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.nightsbridge-widget form {
  display: grid !important;
  grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) auto !important;
  gap: 16px !important;
  align-items: end !important;
}

.nightsbridge-widget .nb_date {
  float: none !important;
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  gap: 8px !important;
  align-items: end !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nightsbridge-widget label {
  float: none !important;
  grid-column: 1 / -1 !important;
  display: block !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nightsbridge-widget input {
  float: none !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 48px !important;
  height: 48px !important;
  margin: 0 !important;
  border: 1px solid var(--line) !important;
  border-radius: 6px !important;
  padding: 0 14px !important;
  color: var(--ink);
  background: #fff !important;
  font: inherit !important;
}

.nightsbridge-widget .ui-datepicker-trigger {
  float: none !important;
  width: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  height: 48px !important;
  margin: 0 !important;
  border: 1px solid var(--line) !important;
  border-radius: 6px !important;
  color: var(--ocean);
  background: #fff !important;
  font-size: 0;
  font-weight: 900;
  cursor: pointer;
}

.nightsbridge-widget .ui-datepicker-trigger::before {
  content: "Date";
  font-size: 11px;
}

.nightsbridge-widget .ui-datepicker-trigger img {
  display: none;
}

.nightsbridge-widget .nb_submit button {
  float: none !important;
  display: inline-flex !important;
  min-height: 48px !important;
  min-width: 142px !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  border-radius: 999px !important;
  padding: 0 24px !important;
  color: #fff;
  background: var(--ocean) !important;
  font: inherit !important;
  font-weight: 900 !important;
  cursor: pointer;
}

.nightsbridge-widget .nb_warning {
  grid-column: 1 / -1 !important;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
}

.widget-fallback {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--sand);
  font-weight: 900;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(74px, 10vw, 126px) 0;
}

.intro {
  display: grid;
  gap: 28px;
  align-items: start;
  max-width: 760px;
}

.property-copy p,
.wind-stay p,
.contact p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.intro-highlight {
  position: relative;
  margin: 0;
  border-left: 5px solid var(--reef);
  border-radius: 0 8px 8px 0;
  padding: 22px 24px;
  color: var(--deep);
  background: linear-gradient(90deg, rgba(0, 166, 180, 0.16), rgba(232, 207, 155, 0.22));
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  line-height: 1.55;
  box-shadow: 0 18px 46px rgba(21, 36, 42, 0.08);
}

.booking-note {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 560px;
  margin-top: 24px;
  padding: 24px 28px;
  border-radius: 8px;
  color: var(--deep);
  background: linear-gradient(90deg, rgba(0, 166, 180, 0.11), rgba(232, 207, 155, 0.16));
  font-weight: 800;
  line-height: 1.55;
}

.booking-note-icon {
  display: grid;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 2px solid rgba(15, 111, 139, 0.28);
  border-radius: 999px;
  color: var(--ocean);
}

.booking-note-icon svg,
.contact-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.room-card {
  grid-column: span 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 46px rgba(21, 36, 42, 0.06);
}

.room-card:nth-child(4),
.room-card:nth-child(5) {
  grid-column: span 3;
}

.room-main-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 180ms ease, filter 180ms ease;
}

.room-main-photo:hover,
.unit-thumbs img:hover {
  filter: saturate(1.08) contrast(1.04);
}

.room-body {
  padding: 24px;
}

.room-kicker {
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.room-body p:not(.room-kicker) {
  color: var(--muted);
  line-height: 1.6;
}

.room-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.gallery-button,
.book-unit-button,
.phone-unit-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.gallery-button {
  color: #fff;
  background: var(--ocean);
}

.gallery-button:hover {
  background: var(--deep);
}

.book-unit-button {
  color: var(--ink);
  background: var(--sand);
}

.book-unit-button:hover {
  background: #f2dbab;
}

.phone-unit-button {
  border: 0;
  color: #fff;
  background: #17995a;
}

.phone-unit-button:hover {
  background: #0f7d47;
}

.unit-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 20px;
}

.unit-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
  background: var(--paper);
  cursor: zoom-in;
  transition: transform 180ms ease, filter 180ms ease;
}

.unit-thumbs img:hover {
  transform: translateY(-2px);
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 72px 1fr 72px;
  align-items: center;
  gap: 16px;
  padding: 72px clamp(14px, 4vw, 48px) 34px;
  color: #fff;
  background: rgba(8, 31, 38, 0.92);
  backdrop-filter: blur(12px);
}

.gallery-frame {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin: 0;
  min-width: 0;
}

.gallery-frame img {
  max-width: 100%;
  max-height: calc(100vh - 170px);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
}

.gallery-frame figcaption {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.gallery-frame strong {
  color: #fff;
}

.gallery-close,
.gallery-arrow {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.gallery-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
}

.gallery-arrow {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  font-size: 42px;
  line-height: 1;
}

.gallery-arrow.previous {
  justify-self: end;
}

.gallery-arrow.next {
  justify-self: start;
}

.property-band {
  background: var(--deep);
  color: #fff;
}

.property {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.property-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.property-gallery {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  gap: 18px;
  align-items: stretch;
}

.property-gallery img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 8px;
  object-fit: cover;
}

.property-gallery img:last-child {
  margin-top: 64px;
}

.wind-stay {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.wind-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.wind-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}

.wind-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--reef);
}

.experience-photo img {
  width: 100%;
  max-height: 520px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.spots-section {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(248, 246, 239, 0.94)),
    var(--paper);
}

.spots {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.spots-intro {
  position: sticky;
  top: 116px;
}

.spots-intro p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

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

.spot-card {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(21, 36, 42, 0.07);
}

.spot-card h3 {
  margin: 12px 0 12px;
  color: var(--deep);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.spot-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.spot-card small {
  display: block;
  margin-top: 18px;
  color: var(--deep);
  font-weight: 800;
  line-height: 1.45;
}

.spot-distance {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  padding: 0 13px;
  color: #fff;
  background: var(--ocean);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-spot,
.airport-card {
  grid-column: span 2;
}

.primary-spot {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(18, 51, 61, 0.92), rgba(15, 111, 139, 0.82)),
    url("assets/optimized/hero-beach-garden.jpg") center / cover;
}

.primary-spot h3,
.primary-spot p,
.primary-spot small {
  color: #fff;
}

.primary-spot .spot-distance {
  color: var(--deep);
  background: var(--sand);
}

.airport-card {
  min-height: auto;
}

.seo-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.seo-strip .section {
  padding-top: clamp(46px, 6vw, 76px);
  padding-bottom: clamp(46px, 6vw, 76px);
}

.search-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.search-terms span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--deep);
  background: var(--paper);
  font-size: 14px;
  font-weight: 900;
}

.quote-band {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

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

.quote-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 31, 38, 0.7), rgba(8, 31, 38, 0.12) 65%);
}

.quote-band div {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 clamp(58px, 8vw, 96px);
}

blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.08;
}

.faq {
  padding-top: clamp(74px, 10vw, 112px);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.faq-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
}

.contact-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(21, 36, 42, 0.08);
}

.contact-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -42px;
  width: 52%;
  height: 96px;
  pointer-events: none;
  opacity: 0.18;
  background:
    radial-gradient(60% 120% at 50% 0%, transparent 46%, var(--ocean) 48%, transparent 52%),
    radial-gradient(75% 120% at 50% 14%, transparent 47%, var(--ocean) 49%, transparent 53%);
  background-size: 160px 58px, 190px 64px;
}

.contact-card-title {
  margin: 0 0 18px;
  color: var(--deep);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-card-title::after {
  content: "";
  display: block;
  width: 240px;
  max-width: 100%;
  height: 2px;
  margin-top: 14px;
  background: rgba(168, 140, 78, 0.55);
}

.contact-method,
address.contact-method a {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(21, 36, 42, 0.11);
  color: var(--deep);
}

.contact-card-title + .contact-method {
  border-top: 0;
}

.contact-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 999px;
  color: var(--deep);
  background: rgba(15, 111, 139, 0.11);
}

.contact-detail {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.contact-detail strong {
  color: var(--deep);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.contact-detail small {
  color: rgba(21, 36, 42, 0.74);
  font-size: clamp(16px, 1.6vw, 21px);
  line-height: 1.35;
}

.contact-method.whatsapp-contact .contact-detail strong {
  color: #128c4b;
}

address {
  color: var(--muted);
  font-style: normal;
  line-height: 1.6;
}

address a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

address.contact-method {
  display: block;
  padding: 0;
  border-top: 0;
}

address.contact-method a {
  text-decoration: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer a {
  color: var(--ocean);
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  color: #fff;
  background: #17995a;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(12, 87, 52, 0.32);
}

.whatsapp-float:hover {
  background: #0f7d47;
}

@media (max-width: 960px) {
  .room-card,
  .room-card:nth-child(4),
  .room-card:nth-child(5) {
    grid-column: span 3;
  }

  .property,
  .wind-stay,
  .spots {
    grid-template-columns: 1fr;
  }

  .spots-intro {
    position: static;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .nav-cta {
    margin-top: 8px;
    color: #fff;
    background: var(--ocean);
  }

  .booking-widget,
  .intro,
  .contact {
    grid-template-columns: 1fr;
  }

  .booking-widget-copy {
    min-height: auto;
    padding: 20px;
  }

  .nightsbridge-widget {
    padding: 20px;
  }

  .nightsbridge-widget form {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .brand {
    gap: 10px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 86svh;
  }

  .hero img {
    object-position: 58% center;
  }

  .hero-content {
    width: min(100% - 28px, 1120px);
    padding: 118px 0 78px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .hero-content > p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.45;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
    margin-top: 28px;
  }

  .button {
    width: 100%;
    min-height: 44px;
  }

  .booking-band {
    width: min(1120px, calc(100% - 20px));
    margin-top: -24px;
    scroll-margin-top: 76px;
  }

  .booking-widget {
    border-radius: 8px;
  }

  .booking-widget-copy {
    gap: 6px;
    padding: 18px;
  }

  .booking-widget-copy strong {
    font-size: 20px;
  }

  .booking-widget-copy small {
    font-size: 12px;
  }

  .nightsbridge-widget {
    padding: 18px;
  }

  .nightsbridge-widget form {
    gap: 14px !important;
  }

  .nightsbridge-widget input,
  .nightsbridge-widget .ui-datepicker-trigger,
  .nightsbridge-widget .nb_submit button {
    min-height: 46px !important;
    height: 46px !important;
  }

  .spots-grid {
    grid-template-columns: 1fr;
  }

  .primary-spot,
  .airport-card {
    grid-column: auto;
  }

  .spot-card {
    min-height: auto;
    padding: 22px;
  }

  .booking-note {
    align-items: flex-start;
    padding: 20px;
  }

  .booking-note-icon {
    width: 48px;
    height: 48px;
  }

  .contact-card {
    padding: 24px 20px;
  }

  .contact-card-title {
    font-size: 15px;
    letter-spacing: 0.18em;
  }

  .contact-method,
  address.contact-method a {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    padding: 18px 0;
  }

  .contact-icon {
    width: 52px;
    height: 52px;
  }

  .contact-icon svg {
    width: 24px;
    height: 24px;
  }

  .contact-detail strong {
    font-size: clamp(21px, 7vw, 28px);
  }

  .contact-detail small {
    font-size: 15px;
  }

  .room-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .room-card,
  .room-card:nth-child(4),
  .room-card:nth-child(5) {
    grid-column: auto;
  }

  .room-body {
    padding: 18px;
  }

  .room-body h3 {
    font-size: 21px;
  }

  .room-actions {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.85fr;
    gap: 7px;
  }

  .gallery-button,
  .book-unit-button,
  .phone-unit-button {
    width: 100%;
    min-height: 42px;
    padding: 0 10px;
    font-size: 13px;
    white-space: nowrap;
  }

  .unit-thumbs {
    gap: 6px;
    margin-top: 16px;
  }

  .section {
    width: min(1120px, calc(100% - 28px));
    padding: 64px 0;
  }

  .intro-highlight {
    padding: 18px;
    font-size: 17px;
  }

  .property-gallery {
    grid-template-columns: 1fr;
  }

  .property-gallery img {
    min-height: 260px;
  }

  .property-gallery img:last-child {
    margin-top: 0;
  }

  .quote-band {
    min-height: 520px;
  }

  .gallery-modal {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    gap: 12px;
    padding: 74px 16px 24px;
  }

  .gallery-frame {
    grid-column: 1 / -1;
  }

  .gallery-frame img {
    max-height: calc(100vh - 210px);
  }

  .gallery-arrow {
    width: 100%;
    height: 50px;
    border-radius: 8px;
    font-size: 32px;
  }

  .gallery-arrow.previous,
  .gallery-arrow.next {
    justify-self: stretch;
  }

  .site-footer {
    display: grid;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    min-height: 44px;
    padding: 0 16px;
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .room-actions {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-button {
    grid-column: 1 / -1;
  }

  .hero-content {
    padding-bottom: 70px;
  }
}
