:root {
  --color-brand-teal: #5A9C98;
  --color-soft-teal: #3F7B78;
  --color-deep-teal: #2F6F73;
  --color-dark-ocean: #0D626B;
  --color-white: #FFFFFF;
  --color-text-dark: #083E45;
  --bg: #EEF7F6;
  --paper: var(--color-white);
  --ink: var(--color-text-dark);
  --muted: #537879;
  --line: #C7E0DE;
  --gold: var(--color-brand-teal);
  --gold-dark: var(--color-deep-teal);
  --teal: var(--color-deep-teal);
  --dark: var(--color-dark-ocean);
  --shadow: 0 24px 60px rgba(13, 98, 107, 0.14);
  --serif: "Quicksand", Arial, sans-serif;
  --sans: "Quicksand", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}

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

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

input,
select,
textarea,
button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--color-white);
  transition: background 0.25s ease, box-shadow 0.25s ease, min-height 0.25s ease;
}

.site-header.scrolled,
.site-header.menu-open {
  min-height: 74px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(13, 98, 107, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  gap: 0;
  line-height: 1;
}

.logo-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  padding: 6px;
  border-radius: 50%;
  background: var(--color-brand-teal);
  overflow: hidden;
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease;
}

.logo-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-header.scrolled .logo-brand,
.site-header.menu-open .logo-brand {
  width: 100px;
  height: 100px;
  background: var(--color-brand-teal);
}

.brand span {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: 0;
}

.brand small {
  margin-top: 7px;
  color: currentColor;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.78;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-book {
  padding: 13px 24px;
  color: var(--color-white);
  background: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.header-book:hover {
  background: var(--gold-dark);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 1px solid currentColor;
  color: currentColor;
  background: transparent;
}

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

.mobile-nav {
  position: fixed;
  top: 74px;
  right: 0;
  left: 0;
  z-index: 45;
  display: none;
  padding: 22px;
  background: var(--color-white);
  box-shadow: 0 18px 30px rgba(13, 98, 107, 0.14);
}

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

.mobile-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--color-white);
  background: var(--dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s ease, transform 4s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 98, 107, 0.82), rgba(47, 111, 115, 0.46) 48%, rgba(90, 156, 152, 0.22));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(760px, calc(100% - 40px));
  min-height: 100vh;
  margin-left: clamp(20px, 7vw, 110px);
  padding-top: 86px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--gold-dark);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.14;
}

h1 {
  max-width: 780px;
  font-size: clamp(54px, 8vw, 118px);
}

h2 {
  font-size: clamp(36px, 5vw, 64px);
}

h3 {
  font-size: 27px;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.2vw, 22px);
}

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

.btn,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.btn:hover,
button:hover {
  transform: translateY(-2px);
}

.btn.primary,
.contact-form button {
  color: var(--color-white);
  background: var(--gold);
}

.btn.primary:hover,
.contact-form button:hover {
  background: var(--gold-dark);
}

.btn.ghost {
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.contact-form label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  color: var(--ink);
  background: transparent;
  outline: 0;
}

.section {
  padding: clamp(78px, 9vw, 130px) 0;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(44px, 7vw, 90px);
  align-items: center;
}

.about p,
.location p,
.contact p,
.experience-copy p {
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  width: 46px;
  height: 1px;
  margin: 14px 0 0 14px;
  background: currentColor;
}

.image-stack {
  position: relative;
  min-height: 560px;
}

.image-stack img {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-stack img:first-child {
  top: 0;
  right: 0;
  width: 70%;
  height: 420px;
}

.image-stack img:last-child {
  bottom: 0;
  left: 0;
  width: 58%;
  height: 360px;
  border: 10px solid var(--bg);
}

.rooms,
.contact {
  background: #e5f4f2;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

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

.room-card {
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(13, 98, 107, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.room-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.room-card img {
  height: 330px;
  object-fit: cover;
}

.room-info {
  padding: 26px;
}

.room-info span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.room-info h3 {
  margin: 10px 0 14px;
}

.room-info p {
  margin: 0;
  color: var(--muted);
}

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

.room-features li {
  display: flex;
  align-items: center;
  min-width: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.room-features .feature-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-right: 9px;
  color: var(--gold-dark);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--bg);
}

.feature-icon::before {
  width: 17px;
  height: 17px;
  content: "";
  background: var(--gold-dark);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.bed-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M2 4v16'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='M22 8v12'/%3E%3Cpath d='M6 12V7h8a4 4 0 0 1 4 4v1'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M2 4v16'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='M22 8v12'/%3E%3Cpath d='M6 12V7h8a4 4 0 0 1 4 4v1'/%3E%3C/svg%3E");
}

.ac-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M12 2v20'/%3E%3Cpath d='m17 5-5 5-5-5'/%3E%3Cpath d='m17 19-5-5-5 5'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='m5 7 5 5-5 5'/%3E%3Cpath d='m19 7-5 5 5 5'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M12 2v20'/%3E%3Cpath d='m17 5-5 5-5-5'/%3E%3Cpath d='m17 19-5-5-5 5'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='m5 7 5 5-5 5'/%3E%3Cpath d='m19 7-5 5 5 5'/%3E%3C/svg%3E");
}

.tv-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Crect x='3' y='5' width='18' height='12' rx='2'/%3E%3Cpath d='M8 21h8'/%3E%3Cpath d='M12 17v4'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Crect x='3' y='5' width='18' height='12' rx='2'/%3E%3Cpath d='M8 21h8'/%3E%3Cpath d='M12 17v4'/%3E%3C/svg%3E");
}

.fridge-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Crect x='6' y='2' width='12' height='20' rx='2'/%3E%3Cpath d='M6 10h12'/%3E%3Cpath d='M9 6h1'/%3E%3Cpath d='M9 14h1'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Crect x='6' y='2' width='12' height='20' rx='2'/%3E%3Cpath d='M6 10h12'/%3E%3Cpath d='M9 6h1'/%3E%3Cpath d='M9 14h1'/%3E%3C/svg%3E");
}

.wifi-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M5 13a10 10 0 0 1 14 0'/%3E%3Cpath d='M8.5 16.5a5 5 0 0 1 7 0'/%3E%3Cpath d='M2 9a15 15 0 0 1 20 0'/%3E%3Cpath d='M12 20h.01'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M5 13a10 10 0 0 1 14 0'/%3E%3Cpath d='M8.5 16.5a5 5 0 0 1 7 0'/%3E%3Cpath d='M2 9a15 15 0 0 1 20 0'/%3E%3Cpath d='M12 20h.01'/%3E%3C/svg%3E");
}

.bath-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M9 6 6.5 3.5a2.1 2.1 0 0 0-3 0 2.1 2.1 0 0 0 0 3L6 9'/%3E%3Cpath d='M4 13h16'/%3E%3Cpath d='M5 13v3a4 4 0 0 0 4 4h6a4 4 0 0 0 4-4v-3'/%3E%3Cpath d='M8 20v2'/%3E%3Cpath d='M16 20v2'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M9 6 6.5 3.5a2.1 2.1 0 0 0-3 0 2.1 2.1 0 0 0 0 3L6 9'/%3E%3Cpath d='M4 13h16'/%3E%3Cpath d='M5 13v3a4 4 0 0 0 4 4h6a4 4 0 0 0 4-4v-3'/%3E%3Cpath d='M8 20v2'/%3E%3Cpath d='M16 20v2'/%3E%3C/svg%3E");
}

.balcony-icon::before,
.area-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M4 21V9l8-6 8 6v12'/%3E%3Cpath d='M9 21v-8h6v8'/%3E%3Cpath d='M3 21h18'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M4 21V9l8-6 8 6v12'/%3E%3Cpath d='M9 21v-8h6v8'/%3E%3Cpath d='M3 21h18'/%3E%3C/svg%3E");
}

.room-info a {
  display: inline-block;
  margin-top: 22px;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

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

.facility-grid article {
  min-height: 220px;
  padding: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.facility-grid article:hover {
  border-color: var(--color-brand-teal);
  box-shadow: 0 18px 42px rgba(13, 98, 107, 0.1);
  transform: translateY(-5px);
}

.facility-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 24px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(79, 179, 174, 0.08);
}

.facility-icon::before {
  width: 30px;
  height: 30px;
  content: "";
  background: var(--color-dark-ocean);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.beach-facility::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M2 20c3 0 3-2 6-2s3 2 6 2 3-2 8-2'/%3E%3Cpath d='M3 14c3 0 3-2 6-2s3 2 6 2 3-2 6-2'/%3E%3Cpath d='M12 4v8'/%3E%3Cpath d='M8 8c1-2 3-4 4-4s3 2 4 4'/%3E%3Cpath d='M5 11c2-3 5-5 7-7'/%3E%3Cpath d='M19 11c-2-3-5-5-7-7'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M2 20c3 0 3-2 6-2s3 2 6 2 3-2 8-2'/%3E%3Cpath d='M3 14c3 0 3-2 6-2s3 2 6 2 3-2 6-2'/%3E%3Cpath d='M12 4v8'/%3E%3Cpath d='M8 8c1-2 3-4 4-4s3 2 4 4'/%3E%3Cpath d='M5 11c2-3 5-5 7-7'/%3E%3Cpath d='M19 11c-2-3-5-5-7-7'/%3E%3C/svg%3E");
}

.bar-facility::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M8 22h8'/%3E%3Cpath d='M12 14v8'/%3E%3Cpath d='M5 3h14l-2 6a5 5 0 0 1-10 0L5 3z'/%3E%3Cpath d='M7 7h10'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M8 22h8'/%3E%3Cpath d='M12 14v8'/%3E%3Cpath d='M5 3h14l-2 6a5 5 0 0 1-10 0L5 3z'/%3E%3Cpath d='M7 7h10'/%3E%3C/svg%3E");
}

.food-facility::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M4 3v8'/%3E%3Cpath d='M8 3v8'/%3E%3Cpath d='M4 7h4'/%3E%3Cpath d='M6 11v10'/%3E%3Cpath d='M14 3v18'/%3E%3Cpath d='M14 3c4 2 6 5 6 9h-6'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M4 3v8'/%3E%3Cpath d='M8 3v8'/%3E%3Cpath d='M4 7h4'/%3E%3Cpath d='M6 11v10'/%3E%3Cpath d='M14 3v18'/%3E%3Cpath d='M14 3c4 2 6 5 6 9h-6'/%3E%3C/svg%3E");
}

.wifi-facility::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M5 13a10 10 0 0 1 14 0'/%3E%3Cpath d='M8.5 16.5a5 5 0 0 1 7 0'/%3E%3Cpath d='M2 9a15 15 0 0 1 20 0'/%3E%3Cpath d='M12 20h.01'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M5 13a10 10 0 0 1 14 0'/%3E%3Cpath d='M8.5 16.5a5 5 0 0 1 7 0'/%3E%3Cpath d='M2 9a15 15 0 0 1 20 0'/%3E%3Cpath d='M12 20h.01'/%3E%3C/svg%3E");
}

.ac-facility::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M12 2v20'/%3E%3Cpath d='m17 5-5 5-5-5'/%3E%3Cpath d='m17 19-5-5-5 5'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='m5 7 5 5-5 5'/%3E%3Cpath d='m19 7-5 5 5 5'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M12 2v20'/%3E%3Cpath d='m17 5-5 5-5-5'/%3E%3Cpath d='m17 19-5-5-5 5'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='m5 7 5 5-5 5'/%3E%3Cpath d='m19 7-5 5 5 5'/%3E%3C/svg%3E");
}

.surf-facility::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M3 19c3 0 3-2 6-2s3 2 6 2 3-2 6-2'/%3E%3Cpath d='M5 13c3 0 3-2 6-2s3 2 6 2 3-2 4-2'/%3E%3Cpath d='M12 3c3 4 4 8 1 14'/%3E%3Cpath d='M17 5l2-2'/%3E%3Cpath d='m19 3 2 2'/%3E%3Cpath d='M19 3v5'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M3 19c3 0 3-2 6-2s3 2 6 2 3-2 6-2'/%3E%3Cpath d='M5 13c3 0 3-2 6-2s3 2 6 2 3-2 4-2'/%3E%3Cpath d='M12 3c3 4 4 8 1 14'/%3E%3Cpath d='M17 5l2-2'/%3E%3Cpath d='m19 3 2 2'/%3E%3Cpath d='M19 3v5'/%3E%3C/svg%3E");
}

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

.experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  background: var(--color-white);
}

.experience.reverse .experience-image {
  order: 2;
}

.experience-image img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.experience-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 100px);
}

.location-card {
  padding: 42px;
  color: var(--color-white);
  background: var(--teal);
  box-shadow: var(--shadow);
}

.location-card h3 {
  margin-bottom: 20px;
}

.location-card ul {
  display: grid;
  gap: 16px;
  margin: 0 0 28px;
  padding-left: 0;
  list-style: none;
}

.traveler-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 600;
}

.traveler-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.traveler-icon::before {
  width: 19px;
  height: 19px;
  content: "";
  background: var(--color-white);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.surf-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M3 19c3 0 3-2 6-2s3 2 6 2 3-2 6-2'/%3E%3Cpath d='M5 13c3 0 3-2 6-2s3 2 6 2 3-2 4-2'/%3E%3Cpath d='M12 3c3 4 4 8 1 14'/%3E%3Cpath d='M8 7c2-2 5-3 8-2'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M3 19c3 0 3-2 6-2s3 2 6 2 3-2 6-2'/%3E%3Cpath d='M5 13c3 0 3-2 6-2s3 2 6 2 3-2 4-2'/%3E%3Cpath d='M12 3c3 4 4 8 1 14'/%3E%3Cpath d='M8 7c2-2 5-3 8-2'/%3E%3C/svg%3E");
}

.laptop-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Crect x='4' y='5' width='16' height='11' rx='2'/%3E%3Cpath d='M2 20h20'/%3E%3Cpath d='M8 20v-1h8v1'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Crect x='4' y='5' width='16' height='11' rx='2'/%3E%3Cpath d='M2 20h20'/%3E%3Cpath d='M8 20v-1h8v1'/%3E%3C/svg%3E");
}

.couple-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Ccircle cx='8' cy='7' r='3'/%3E%3Ccircle cx='17' cy='8' r='2.5'/%3E%3Cpath d='M3 21v-2a5 5 0 0 1 10 0v2'/%3E%3Cpath d='M14 21v-1.5a4 4 0 0 1 7 0V21'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Ccircle cx='8' cy='7' r='3'/%3E%3Ccircle cx='17' cy='8' r='2.5'/%3E%3Cpath d='M3 21v-2a5 5 0 0 1 10 0v2'/%3E%3Cpath d='M14 21v-1.5a4 4 0 0 1 7 0V21'/%3E%3C/svg%3E");
}

.family-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M4 21v-2a4 4 0 0 1 8 0v2'/%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3Cpath d='M14 21v-1.5a3.5 3.5 0 0 1 7 0V21'/%3E%3Ccircle cx='17.5' cy='10' r='2.5'/%3E%3Cpath d='M2 21h20'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M4 21v-2a4 4 0 0 1 8 0v2'/%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3Cpath d='M14 21v-1.5a3.5 3.5 0 0 1 7 0V21'/%3E%3Ccircle cx='17.5' cy='10' r='2.5'/%3E%3Cpath d='M2 21h20'/%3E%3C/svg%3E");
}

.reviews {
  padding: clamp(84px, 9vw, 130px) 0;
  color: var(--color-white);
  text-align: center;
  background:
    linear-gradient(rgba(13, 98, 107, 0.78), rgba(13, 98, 107, 0.84)),
    url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.reviews h2 {
  max-width: 780px;
  margin: 0 auto 34px;
}

.platform-mark svg {
  display: block;
  width: 24px;
  height: 24px;
}

.booking-mark svg {
  width: 28px;
  height: 28px;
}

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

.review-grid article {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  text-align: left;
}

.review-link-card {
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.review-link-card:hover {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-4px);
}

.review-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 4px;
}

.platform-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--color-dark-ocean);
  border-radius: 50%;
  background: var(--color-white);
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1;
}

.suphiri-mark {
  color: var(--color-brand-teal);
}

.stars {
  color: #C7E0DE;
  font-size: 13px;
  letter-spacing: 3px;
}

.review-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 400;
}

.review-grid span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.review-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.review-tags span {
  padding: 9px 15px;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 36px;
  background: var(--bg);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px 16px;
  border: 1px solid var(--line);
  background: var(--color-white);
}

.contact-form button {
  width: 100%;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.contact-list {
  margin-top: 26px;
}

.site-footer {
  padding: 70px 0 48px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--color-dark-ocean);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 42px;
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: 18px;
  color: var(--color-white);
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
}

.footer-btn {
  width: max-content;
  margin-top: 18px;
  color: var(--color-white);
  background: var(--gold);
}

.room-detail-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 88vh;
  padding: 140px clamp(20px, 7vw, 110px) 90px;
  color: var(--color-white);
  background-position: center;
  background-size: cover;
}

.room-detail-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 98, 107, 0.88), rgba(47, 111, 115, 0.46) 52%, rgba(90, 156, 152, 0.18)),
    linear-gradient(0deg, rgba(13, 98, 107, 0.74), rgba(13, 98, 107, 0.02) 56%);
}

.room-detail-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.room-detail-hero-content h1 {
  font-size: clamp(58px, 8vw, 112px);
}

.room-detail-hero-content p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 23px);
}

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

.room-detail-section {
  background:
    radial-gradient(circle at top left, rgba(159, 211, 205, 0.5), transparent 38%),
    var(--bg);
}

.room-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
}

.room-main-copy p {
  color: var(--muted);
  font-size: 18px;
}

.room-booking-card {
  position: sticky;
  top: 100px;
  padding: 38px;
  color: var(--color-white);
  background:
    linear-gradient(145deg, rgba(47, 111, 115, 0.95), rgba(13, 98, 107, 0.98)),
    var(--color-dark-ocean);
  box-shadow: var(--shadow);
}

.room-booking-card span {
  color: #C7E0DE;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.room-booking-card h3 {
  margin: 12px 0 14px;
}

.room-booking-card p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.75);
}

.room-feature-section {
  background: var(--color-white);
}

.luxury-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.luxury-feature-grid article {
  padding: 34px;
  border: 1px solid var(--line);
  background: #f8fcfb;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.luxury-feature-grid article:hover {
  border-color: var(--color-brand-teal);
  box-shadow: 0 18px 42px rgba(13, 98, 107, 0.1);
  transform: translateY(-5px);
}

.luxury-feature-grid .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(159, 211, 205, 0.22);
}

.luxury-feature-grid .feature-icon::before {
  width: 28px;
  height: 28px;
}

.luxury-feature-grid h3 {
  margin-bottom: 12px;
}

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

.room-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
  padding: 18px;
  background: var(--color-dark-ocean);
}

.room-gallery img {
  height: 420px;
  object-fit: cover;
}

.room-gallery img:first-child {
  height: 520px;
}

.room-cta {
  padding: clamp(84px, 10vw, 140px) 0;
  color: var(--color-white);
  text-align: center;
  background:
    linear-gradient(rgba(13, 98, 107, 0.84), rgba(13, 98, 107, 0.88)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.room-cta h2 {
  max-width: 760px;
  margin: 0 auto 28px;
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-book {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .room-grid,
  .facility-grid,
  .review-grid,
  .luxury-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .room-detail-layout,
  .room-gallery {
    grid-template-columns: 1fr;
  }

  .room-booking-card {
    position: static;
  }

  .room-gallery img,
  .room-gallery img:first-child {
    height: 360px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 74px;
    padding: 14px 20px;
  }

  .brand span {
    font-size: 28px;
  }

  .logo-brand {
    width: 58px;
    height: 58px;
    padding: 5px;
  }

  .site-header.scrolled .logo-brand,
  .site-header.menu-open .logo-brand {
    width: 54px;
    height: 54px;
  }

  .hero-content {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding-top: 74px;
  }

  h1 {
    font-size: clamp(46px, 15vw, 74px);
  }

  .hero-copy {
    font-size: 18px;
  }

  .split,
  .room-grid,
  .facility-grid,
  .experience,
  .review-grid,
  .luxury-feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .image-stack {
    min-height: auto;
  }

  .image-stack img,
  .image-stack img:first-child,
  .image-stack img:last-child {
    position: static;
    width: 100%;
    height: 320px;
    border: 0;
    margin-bottom: 18px;
  }

  .experience.reverse .experience-image {
    order: 0;
  }

  .experience-image img {
    min-height: 340px;
  }

  .experience-copy {
    padding: 48px 20px 62px;
  }

  .room-features {
    grid-template-columns: 1fr;
  }

  .location-card,
  .contact-form {
    padding: 28px;
  }

  .section {
    padding: 72px 0;
  }

  .room-detail-hero {
    min-height: 78vh;
    padding: 118px 20px 60px;
  }

  .room-detail-hero-content h1 {
    font-size: clamp(46px, 15vw, 74px);
  }

  .room-detail-section {
    padding-top: 64px;
  }

  .room-booking-card,
  .luxury-feature-grid article {
    padding: 28px;
  }

  .room-gallery {
    gap: 10px;
    padding: 10px;
  }

  .room-gallery img,
  .room-gallery img:first-child {
    height: 280px;
  }
}
