:root {
  --ink: #1f2933;
  --muted: #5d6875;
  --paper: #f5f7fa;
  --white: #ffffff;
  --sea: #0d7c86;
  --deep-sea: #07545d;
  --coral: #d86f48;
  --sand: #fff2d8;
  --mist: #e9f4f4;
  --line: #d9e1e7;
  --shadow: 0 12px 35px rgba(31, 41, 51, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  line-height: 1.45;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 70px);
  color: var(--white);
  background: var(--deep-sea);
  box-shadow: 0 3px 12px rgba(7, 84, 93, 0.2);
}

.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 300px; height: 72px; }

.nav { display: flex; gap: 8px; font-size: 14px; font-weight: 700; }
.nav a, .header-cta, .text-link, .site-footer a { text-decoration: none; }
.nav a { padding: 9px 12px; border-radius: 4px; }
.nav a:hover { background: rgba(255, 255, 255, 0.12); }
.header-cta {
  padding: 10px 14px;
  border-radius: 4px;
  color: var(--deep-sea);
  background: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 590px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--deep-sea);
}
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media {
  background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=85");
  background-position: center 45%;
  background-size: cover;
  transform: scale(1.03);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 84, 93, 0.86), rgba(7, 84, 93, 0.38) 58%, rgba(7, 84, 93, 0.08)),
    linear-gradient(180deg, rgba(31, 41, 51, 0.05), rgba(31, 41, 51, 0.56));
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  padding: 92px clamp(18px, 5vw, 70px) 130px;
  color: var(--white);
}
.eyebrow, .section-kicker {
  margin: 0 0 10px;
  color: var(--sand);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
}
.hero-copy {
  max-width: 680px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 21px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-photo-note {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: 96px;
  z-index: 2;
  width: min(330px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: var(--white);
  background: rgba(7, 84, 93, 0.76);
  backdrop-filter: blur(8px);
}
.hero-photo-note span,
.hero-photo-note strong {
  display: block;
}
.hero-photo-note span {
  color: var(--sand);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.hero-photo-note strong {
  margin-top: 6px;
  font-size: 22px;
  line-height: 1.12;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.button.primary { color: var(--white); background: var(--sea); }
.button.primary:hover { background: var(--deep-sea); }
.button.secondary, .button.outline { color: var(--deep-sea); border-color: var(--sea); background: var(--white); }
.hero .button.secondary { color: var(--white); border-color: rgba(255, 255, 255, 0.72); background: rgba(255, 255, 255, 0.12); }

.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 760px;
  margin: 28px 0 0;
  padding: 0;
}
.quick-facts div {
  min-width: 150px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
}
.quick-facts dt { font-size: 24px; font-weight: 800; }
.quick-facts dd { margin: 2px 0 0; color: rgba(255, 255, 255, 0.78); }

.direct-funnel {
  position: relative;
  z-index: 5;
  width: min(1180px, calc(100% - 36px));
  margin: -56px auto 0;
  padding: 4px;
  border-radius: 8px;
  background: var(--coral);
  box-shadow: var(--shadow);
}
.availability-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) 190px;
  gap: 4px;
}
.availability-form label {
  display: grid;
  gap: 5px;
  padding: 10px 12px;
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
}
.availability-form .button { min-height: 64px; border-radius: 4px; }
.direct-funnel p { margin: 10px 8px 2px; color: var(--white); font-size: 14px; }

.property-summary {
  width: min(1180px, calc(100% - 36px));
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 22px auto 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(31, 41, 51, 0.06);
}
.score-box {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 8px 8px 8px 0;
  color: var(--white);
  background: var(--deep-sea);
}
.score-box strong { font-size: 28px; line-height: 1; }
.score-box span { font-size: 12px; font-weight: 800; }
.property-summary h2 { margin: 0; font-size: clamp(24px, 3vw, 34px); }
.property-summary p { margin: 8px 0 0; color: var(--muted); }

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 58px 0;
}
.intro, .amenities, .trust, .rooms, .gallery, .location, .attractions, .booking { background: transparent; }
.split, .section-heading, .location, .booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 34px;
  align-items: start;
}
h2 { margin: 0; font-size: clamp(28px, 4vw, 42px); line-height: 1.12; }
.split p, .section-heading p, .location-copy p, .booking-copy p { margin: 0; color: var(--muted); font-size: 17px; }

.amenity-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 24px; }
.amenity-grid article, .review-grid article, .attraction-grid article, .booking-form, .contact-card, .distance-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.amenity-grid article { min-height: 150px; padding: 18px; }
.icon {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  border-radius: 6px;
  background: var(--sea);
  font-size: 12px;
  font-weight: 800;
}
h3 { margin: 0 0 8px; font-size: 20px; line-height: 1.2; }
.amenity-grid p, .room-card p, .room-card li, .review-grid p, .review-grid blockquote, .review-grid cite, .attraction-grid p, .distance-list span, .proof span, .site-footer span { color: var(--muted); }

.review-grid { display: grid; grid-template-columns: 0.9fr repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 24px; }
.review-grid article { min-height: 190px; padding: 20px; }
.review-grid blockquote { margin: 14px 0; font-size: 20px; line-height: 1.28; }
.review-grid cite { font-style: normal; font-weight: 800; }
.rating-card { color: var(--white); background: var(--deep-sea) !important; }
.rating-card p { color: rgba(255, 255, 255, 0.78); }
.rating {
  display: inline-grid;
  min-width: 72px;
  min-height: 58px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 8px 8px 8px 0;
  background: var(--sea);
  font-size: 28px;
  font-weight: 800;
}
.stars {
  display: inline-flex;
  margin: 0;
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--white) !important;
  background: var(--coral);
  font-size: 13px;
  font-weight: 800;
}
.trust-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.trust-badges span {
  padding: 9px 12px;
  border: 1px solid rgba(13, 124, 134, 0.24);
  border-radius: 4px;
  color: var(--deep-sea);
  background: var(--mist);
  font-size: 14px;
  font-weight: 800;
}

.room-grid { display: grid; gap: 14px; margin-top: 24px; }
.room-card {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 240px;
  gap: 18px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(31, 41, 51, 0.05);
}
.room-card img { width: 100%; height: 100%; min-height: 210px; object-fit: cover; }
.room-details { padding: 20px 0; }
.room-details h3 { color: var(--deep-sea); text-decoration: underline; text-underline-offset: 3px; }
.room-card ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; padding: 0; list-style: none; }
.room-card li { padding: 7px 9px; border-radius: 4px; background: var(--mist); font-size: 13px; font-weight: 700; }
.room-booking {
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 20px;
  border-left: 1px solid var(--line);
  text-align: right;
}
.room-booking span { color: var(--muted); font-size: 13px; }
.room-booking strong { color: var(--ink); font-size: 18px; }

.distance-list { display: grid; gap: 10px; margin-top: 24px; }
.distance-list div { padding: 16px; border-left: 5px solid var(--coral); }
.distance-list strong, .distance-list span { display: block; }
.map-panel {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: var(--white);
  border-radius: 8px;
  background: var(--deep-sea);
  box-shadow: var(--shadow);
}
.map-panel iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-caption { position: relative; z-index: 1; width: min(100%, 360px); padding: 18px; border-radius: 8px; background: rgba(7, 84, 93, 0.9); }
.map-caption span { font-size: 13px; font-weight: 800; text-transform: uppercase; }
.map-caption strong { display: block; margin-top: 8px; font-size: 28px; line-height: 1.05; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.gallery-grid figure {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}
.gallery-main {
  grid-row: span 2;
}
.gallery-main img {
  min-height: 472px;
}
.gallery-grid figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 8px 10px;
  border-radius: 4px;
  color: var(--white);
  background: rgba(7, 84, 93, 0.88);
  font-size: 13px;
  font-weight: 800;
}

.attraction-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 24px; }
.attraction-grid article { overflow: hidden; }
.attraction-grid img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }
.attraction-grid h3, .attraction-grid p { margin-left: 18px; margin-right: 18px; }
.attraction-grid h3 { margin-top: 18px; }
.attraction-grid p { margin-bottom: 20px; }

.proof { width: 100%; max-width: none; padding: 22px clamp(18px, 5vw, 70px); background: var(--deep-sea); }
.proof div { width: min(1180px, 100%); display: flex; gap: 12px; align-items: center; margin: 0 auto; color: var(--white); }
.proof span { color: rgba(255, 255, 255, 0.76); }

.savings-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 14px;
  margin-top: 24px;
}
.savings-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.savings-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}
.savings-result {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px;
  border-radius: 8px;
  color: var(--white);
  background: var(--deep-sea);
  box-shadow: var(--shadow);
}
.savings-result span {
  color: var(--sand);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.savings-result strong {
  font-size: 46px;
  line-height: 1;
}
.savings-result p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}
.savings-result .button {
  justify-self: start;
  margin-top: 6px;
  background: var(--coral);
}

.booking { padding-top: 58px; }
.contact-card { margin-top: 24px; padding: 18px; color: var(--deep-sea); background: var(--sand); }
.contact-card span, .contact-card strong { display: block; }
.booking-form { display: grid; gap: 14px; padding: 22px; box-shadow: var(--shadow); }
.booking-form label { display: grid; gap: 7px; color: var(--ink); font-size: 14px; font-weight: 800; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(13, 124, 134, 0.18); border-color: var(--sea); }
.booking-form .button { width: 100%; margin-top: 4px; border: 0; }
.form-note { margin: 0; color: var(--muted); font-size: 13px; }
.form-note.is-success { color: var(--deep-sea); font-weight: 800; }

.site-footer {
  padding: 28px clamp(18px, 5vw, 70px);
  color: var(--white);
  background: var(--ink);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: min(1180px, 100%);
  margin: 0 auto;
}
.footer-brand img {
  width: 300px;
  height: 72px;
  margin-bottom: 14px;
}
.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 16px;
}
.site-footer p,
.site-footer span,
.site-footer a {
  display: block;
  margin: 0 0 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}
.site-footer a:hover {
  color: var(--sand);
}
.tiny-footer {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  color: rgba(255, 255, 255, 0.72);
  background: #141b22;
  font-size: 12px;
}
.tiny-footer a {
  color: var(--sand);
  font-weight: 800;
  text-decoration: none;
}
.tiny-footer a:hover {
  text-decoration: underline;
}

.whatsapp-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--white);
  background: #128c7e;
  box-shadow: 0 14px 35px rgba(18, 140, 126, 0.34);
  text-decoration: none;
}
.whatsapp-chat strong,
.whatsapp-chat small {
  display: block;
}
.whatsapp-chat small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}
.chat-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.18);
}

@media (max-width: 980px) {
  .nav { display: none; }
  .availability-form, .property-summary, .split, .section-heading, .location, .booking, .savings-panel, .savings-form, .amenity-grid, .review-grid, .gallery-grid, .attraction-grid { grid-template-columns: 1fr; }
  .room-card { grid-template-columns: 210px minmax(0, 1fr); }
  .room-booking { grid-column: 1 / -1; border-top: 1px solid var(--line); border-left: 0; text-align: left; }
  .gallery-main { grid-row: auto; }
  .gallery-main img { min-height: 300px; }
  .hero-photo-note { display: none; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof div { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .site-header { padding: 12px 16px; }
  .header-cta { display: none; }
  .brand img { width: 210px; height: auto; }
  .hero { min-height: 560px; }
  .hero-content { padding: 54px 18px 104px; }
  .hero h1 { font-size: 38px; }
  .hero-actions .button, .availability-form .button { width: 100%; }
  .quick-facts { display: grid; grid-template-columns: 1fr; }
  .property-summary, .section { width: calc(100% - 28px); }
  .room-card { grid-template-columns: 1fr; }
  .room-card img { min-height: 220px; }
  .room-details { padding: 18px; }
  .form-row { grid-template-columns: 1fr; }
  .map-panel { min-height: 360px; }
  .whatsapp-chat {
    right: 14px;
    bottom: 14px;
    padding: 11px 12px;
  }
  .whatsapp-chat small {
    display: none;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .tiny-footer { flex-direction: column; align-items: center; gap: 2px; }
}
