:root {
  --ink: #24495a;
  --muted: rgba(36, 73, 90, 0.68);
  --teal: #6fc7de;
  --teal-deep: #42abc8;
  --mist: #eaf9fc;
  --sand: #f7fbfd;
  --paper: #fbfdff;
  --line: rgba(111, 199, 222, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  top: 10px;
  left: 50%;
  z-index: 20;
  width: min(100% - 28px, 1180px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 86px 1fr auto;
  align-items: center;
  gap: clamp(12px, 1.5vw, 22px);
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(245, 252, 253, 0.72);
  box-shadow: 0 12px 34px rgba(27, 48, 50, 0.08);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease, width 220ms ease, top 220ms ease;
}

.site-header.is-scrolled {
  top: 0;
  width: 100%;
  padding: 6px clamp(16px, 4vw, 46px);
  border-color: rgba(27, 48, 50, 0.08);
  background: rgba(245, 252, 253, 0.9);
  box-shadow: 0 12px 34px rgba(27, 48, 50, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: 74px;
  transition: width 220ms ease;
}

.site-header.is-scrolled .brand {
  width: 72px;
}

.nav-links,
.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.45vw, 22px);
}

.nav-links a,
.header-actions a,
.lang-toggle {
  position: relative;
  color: #24495a;
  font-size: 0.55rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 180ms ease, font-size 220ms ease;
}

.site-header.is-scrolled .nav-links a,
.site-header.is-scrolled .header-actions a,
.site-header.is-scrolled .lang-toggle {
  font-size: 0.54rem;
}

.lang-toggle {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  background: var(--teal);
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-item.has-dropdown::after {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  top: 100%;
  height: 12px;
}

.has-dropdown > a::before {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  min-width: 190px;
  padding: 8px;
  background: rgba(250, 254, 253, 0.96);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(27, 48, 50, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(18px);
}

.dropdown-menu a {
  display: flex;
  width: 100%;
  padding: 11px 14px;
  color: var(--ink);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.has-dropdown.is-open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.header-actions {
  justify-content: flex-end;
}

.header-actions span {
  width: 1px;
  height: 22px;
  background: rgba(28, 52, 54, 0.24);
}

.header-social {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.header-social a {
  width: 27px;
  height: 27px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(36, 73, 90, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  color: transparent;
  font-size: 0;
  letter-spacing: 0;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-social a::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 14px;
  height: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(-50%, -50%);
  transition: filter 180ms ease, transform 180ms ease;
}

.header-social a[aria-label="Instagram"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e4405f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1.1' fill='%23e4405f' stroke='none'/%3E%3C/svg%3E");
}

.header-social a[aria-label="Facebook"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231877f2'%3E%3Cpath d='M14.25 8.1h2.05V4.8c-.35-.05-1.55-.15-2.95-.15-2.92 0-4.92 1.78-4.92 5.05v2.8H5.2v3.7h3.23V24h3.95v-7.8h3.08l.49-3.7h-3.57v-2.43c0-1.07.3-1.97 1.87-1.97Z'/%3E%3C/svg%3E");
}

.header-social a[aria-label="WhatsApp"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2325d366'%3E%3Cpath d='M20.52 3.48A11.82 11.82 0 0 0 12.1 0C5.56 0 .24 5.32.24 11.86c0 2.09.55 4.14 1.59 5.94L.14 24l6.34-1.66a11.86 11.86 0 0 0 5.62 1.43h.01c6.54 0 11.86-5.32 11.86-11.86 0-3.17-1.23-6.15-3.45-8.43ZM12.1 21.77c-1.75 0-3.47-.47-4.96-1.36l-.36-.22-3.76.99 1-3.66-.24-.38a9.82 9.82 0 0 1-1.5-5.28C2.28 6.42 6.7 2 12.11 2c2.63 0 5.1 1.03 6.95 2.89a9.78 9.78 0 0 1 2.89 6.96c0 5.42-4.42 9.92-9.85 9.92Zm5.4-7.38c-.3-.15-1.75-.86-2.02-.96-.27-.1-.47-.15-.67.15-.2.3-.77.96-.95 1.16-.17.2-.35.22-.65.07-.3-.15-1.25-.46-2.39-1.47-.88-.79-1.48-1.76-1.65-2.06-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.08-.15-.67-1.61-.92-2.2-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.07-.79.37-.27.3-1.04 1.02-1.04 2.48s1.06 2.87 1.21 3.07c.15.2 2.09 3.19 5.06 4.47.71.31 1.26.49 1.69.63.71.23 1.36.2 1.87.12.57-.08 1.75-.72 2-1.41.25-.7.25-1.3.17-1.42-.08-.12-.27-.2-.57-.35Z'/%3E%3C/svg%3E");
}

.header-social a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.74);
}

.header-social a[aria-label="Instagram"]:hover {
  border-color: #e4405f;
}

.header-social a[aria-label="Facebook"]:hover {
  border-color: #1877f2;
}

.header-social a[aria-label="WhatsApp"]:hover {
  border-color: #25d366;
}

.header-social a[aria-label="Instagram"],
.footer-social a[aria-label="Instagram"] {
  border-color: rgba(228, 64, 95, 0.44);
  background: rgba(228, 64, 95, 0.1);
}

.header-social a[aria-label="Facebook"],
.footer-social a[aria-label="Facebook"] {
  border-color: rgba(24, 119, 242, 0.44);
  background: rgba(24, 119, 242, 0.1);
}

.header-social a[aria-label="WhatsApp"],
.footer-social a[aria-label="WhatsApp"] {
  border-color: rgba(37, 211, 102, 0.44);
  background: rgba(37, 211, 102, 0.1);
}

@media (max-width: 760px) {
  .blog-page .page-hero {
    min-height: 42svh;
    padding: 116px 22px 34px;
  }

  .blog-page .page-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.1rem);
  }

  .blog-index {
    gap: 22px;
    padding: 28px 14px 54px;
  }

  .blog-entry {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
    background: #fbfdff;
    box-shadow: 0 12px 32px rgba(36, 73, 90, 0.1);
  }

  .blog-entry img {
    display: block;
    width: 100%;
    height: 230px;
    min-height: 0;
    object-fit: cover;
    flex: 0 0 auto;
  }

  .blog-entry div {
    display: block;
    padding: 24px 20px 28px;
    background: #fbfdff;
  }

  .blog-entry span {
    display: block;
    margin-bottom: 10px;
    font-size: 0.62rem;
  }

  .blog-entry h2 {
    margin-bottom: 16px;
    font-size: clamp(1.9rem, 9vw, 2.6rem);
    line-height: 1.02;
  }

  .blog-entry p {
    max-width: none;
    margin: 0 0 14px;
    color: rgba(36, 73, 90, 0.78);
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .blog-facts {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 170px max(36px, calc((100vw - 1720px) / 2)) 76px;
  background:
    linear-gradient(90deg, rgba(202, 236, 255, 0.97) 0%, rgba(202, 236, 255, 0.86) 22%, rgba(202, 236, 255, 0.54) 38%, rgba(202, 236, 255, 0.16) 55%, rgba(202, 236, 255, 0) 70%),
    url("images/sections-shared-hero-legacy.webp") center right / cover no-repeat;
}

.hero-content {
  width: min(760px, 50vw);
  padding-top: 36px;
}

.kicker,
.section-label {
  margin: 0 0 22px;
  color: var(--teal);
  font-size: clamp(0.92rem, 1.25vw, 1.22rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.46em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 8.2ch;
  font-size: clamp(4.35rem, 8.35vw, 10.2rem);
  line-height: 0.88;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 6rem);
  line-height: 0.98;
}

h3 {
  font-size: clamp(1.8rem, 2.6vw, 3.1rem);
  line-height: 1;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(330px, 100%);
  margin: 16px 0 18px;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  height: 1px;
  flex: 1 1 auto;
  background: rgba(36, 121, 134, 0.72);
}

.brand-mark img {
  width: 28px;
  height: 28px;
  object-fit: cover;
  object-position: center 54%;
  transform: scale(5);
}

.hero-copy,
.intro p,
.split-copy p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.42rem);
  line-height: 1.55;
}

.outline-button,
.solid-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-width: 230px;
  min-height: 62px;
  padding: 0 24px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.outline-button {
  border: 1px solid var(--teal);
  color: var(--teal);
  background: rgba(255, 255, 255, 0.1);
}

.solid-button {
  color: white;
  background: var(--teal);
}

.section-pad {
  padding: clamp(72px, 10vw, 150px) max(24px, calc((100vw - 1500px) / 2));
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: clamp(36px, 8vw, 120px);
  align-items: end;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(320px, 36vw));
  gap: 18px;
  background: #eaf3f0;
}

.feature-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  isolation: isolate;
}

.feature-card.large {
  grid-row: span 2;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.feature-card:hover img {
  transform: scale(1.04);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 30%, rgba(3, 21, 24, 0.72));
}

.feature-card div {
  position: absolute;
  left: clamp(24px, 4vw, 54px);
  right: clamp(24px, 4vw, 54px);
  bottom: clamp(24px, 4vw, 54px);
  z-index: 2;
  color: white;
}

.feature-card span {
  display: block;
  margin-bottom: 12px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(36px, 8vw, 120px);
  align-items: center;
  background: var(--sand);
}

.about-story-section {
  position: relative;
  color: white;
  background:
    linear-gradient(90deg, rgba(5, 32, 37, 0.76), rgba(5, 32, 37, 0.42)),
    url("images/sections-about-hero-water.jpeg") center / cover no-repeat;
}

.about-story-section .split-media {
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.about-story-section .split-copy {
  padding: clamp(28px, 5vw, 54px);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.about-story-section .split-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.about-story-section h2 {
  color: white;
}

.split-media {
  min-height: 560px;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy p {
  max-width: 610px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cta {
  position: relative;
  min-height: 74svh;
  display: grid;
  place-items: center;
  padding: 96px 24px;
  text-align: center;
  color: white;
  overflow: hidden;
}

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

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 31, 36, 0.56);
}

.cta > div {
  position: relative;
  z-index: 1;
}

.cta .kicker {
  color: #d6f5f7;
}

.cta h2 {
  max-width: 920px;
  margin-bottom: 34px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(24px, 5vw, 72px);
  background: #bfeaf6;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
}

.page-hero {
  min-height: 62svh;
  display: grid;
  align-items: end;
  padding: 150px max(24px, calc((100vw - 1500px) / 2)) 72px;
  color: white;
  background:
    linear-gradient(180deg, rgba(7, 31, 36, 0.18), rgba(7, 31, 36, 0.72)),
    var(--page-image) center / cover no-repeat;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(4rem, 10vw, 9rem);
}

.page-hero .kicker {
  color: #d6f5f7;
}

.pool-hero {
  min-height: 86svh;
  background:
    linear-gradient(90deg, rgba(7, 31, 36, 0.42) 0%, rgba(7, 31, 36, 0.2) 36%, rgba(7, 31, 36, 0.04) 68%),
    linear-gradient(180deg, rgba(7, 31, 36, 0.08), rgba(7, 31, 36, 0.34)),
    var(--page-image) center / contain no-repeat,
    #07262c;
}

.pool-hero h1 {
  max-width: 7ch;
  font-size: clamp(3.8rem, 7vw, 6.8rem);
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.pool-hero .kicker {
  margin-bottom: 14px;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
}

.piscine-page {
  background: #eaf9fc;
}

.piscine-page .site-header {
  background: rgba(245, 252, 253, 0.72);
}

.piscine-page .site-header.is-scrolled {
  background: rgba(245, 252, 253, 0.9);
}

.piscine-page .nav-links,
.piscine-page .header-actions {
  gap: clamp(14px, 1.8vw, 30px);
}

.piscine-page .nav-links a,
.piscine-page .header-actions a {
  font-size: 0.58rem;
}

.piscine-page .header-actions > a:last-child {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(27, 48, 50, 0.42);
  background: rgba(255, 255, 255, 0.72);
}

.pool-showcase-hero {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: center;
  padding: 124px max(24px, calc((100vw - 1360px) / 2)) 64px;
  background: #eaf9fc;
  overflow: hidden;
  isolation: isolate;
}

.pool-hero-panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(520px, 100%);
  min-height: auto;
  margin: 0;
  padding: clamp(26px, 4vw, 48px) clamp(28px, 4.6vw, 58px);
  color: var(--ink);
  background: rgba(245, 252, 253, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-left: 6px solid rgba(66, 171, 200, 0.72);
  border-radius: 0 42px 42px 0;
  box-shadow: 0 24px 70px rgba(36, 73, 90, 0.12);
  isolation: isolate;
  backdrop-filter: blur(5px);
}

.pool-hero-panel::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 92px;
  height: 1px;
  background: rgba(36, 73, 90, 0.4);
}

.pool-hero-panel::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 1px;
  height: 92px;
  background: rgba(36, 73, 90, 0.26);
}

.pool-hero-panel .kicker,
.pool-story-copy .kicker {
  position: relative;
  width: max-content;
  color: #24495a;
}

.pool-story-copy .kicker {
  color: #42abc8;
}

.pool-hero-panel h1 {
  max-width: 6.7ch;
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(3rem, 5vw, 6.3rem);
  line-height: 0.92;
}

.pool-hero-panel > p:not(.kicker) {
  max-width: 320px;
  margin: 0 0 34px;
  color: rgba(27, 48, 50, 0.72);
  line-height: 1.7;
}

.pool-outline-button {
  width: max-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  border: 1px solid rgba(66, 171, 200, 0.42);
  color: #24495a;
  background: linear-gradient(135deg, #d8f6fc, #bfeaf6);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pool-outline-button::after {
  content: "->";
  font-size: 0.75rem;
}

.pool-hero-photo {
  position: absolute;
  inset: 0;
  z-index: -1;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

.pool-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(245, 252, 253, 0.28), rgba(245, 252, 253, 0.06) 46%, rgba(245, 252, 253, 0));
}

.pool-hero-photo img,
.pool-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.pool-story-section {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  padding: clamp(58px, 7vw, 96px) max(24px, calc((100vw - 1120px) / 2));
  background: #eaf9fc;
}

.pool-story-copy h2 {
  max-width: 560px;
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 4.4vw, 4.8rem);
  line-height: 0.94;
}

.pool-story-copy > p:not(.kicker) {
  max-width: 500px;
  color: rgba(27, 48, 50, 0.68);
  line-height: 1.7;
}

.pool-feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 620px;
  margin-top: 46px;
}

.pool-feature-row span {
  position: relative;
  min-height: 78px;
  display: grid;
  align-items: end;
  padding-top: 38px;
  color: #31585d;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
}

.pool-feature-row span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(36, 121, 134, 0.62);
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px #eaf9fc, inset 0 0 0 7px rgba(36, 121, 134, 0.42);
}

.pool-story-image {
  position: relative;
  min-height: 430px;
  box-shadow: 0 24px 70px rgba(27, 48, 50, 0.16);
}

.pool-story-image::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  z-index: -1;
  width: 130px;
  height: 220px;
  background: #bfeaf6;
}

.pool-gallery-strip,
.pool-final-photo {
  display: grid;
  padding: 0 max(24px, calc((100vw - 1180px) / 2)) clamp(72px, 8vw, 112px);
  background: #eaf9fc;
}

.pool-gallery-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pool-gallery-strip img,
.pool-final-photo img {
  width: 100%;
  height: clamp(300px, 34vw, 520px);
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(27, 48, 50, 0.12);
}

.pool-wide-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
  align-items: stretch;
  background: #eaf9fc;
}

.pool-wide-feature > img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.pool-feature-list {
  display: grid;
  align-content: center;
  gap: 28px;
  padding: clamp(30px, 4vw, 60px);
  background: rgba(255, 255, 255, 0.62);
}

.pool-feature-list article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
}

.pool-feature-list span {
  color: #bfeaf6;
  font-size: 0.72rem;
  font-weight: 900;
}

.pool-feature-list h3 {
  margin: 0 0 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
}

.pool-feature-list p {
  margin: 0;
  color: rgba(27, 48, 50, 0.66);
  font-size: 0.82rem;
  line-height: 1.5;
}

.pool-escape-cta {
  position: relative;
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  overflow: hidden;
  background: #e7f3f6;
}

.pool-escape-cta > div {
  position: relative;
  z-index: 1;
  padding: clamp(42px, 6vw, 86px);
}

.pool-escape-cta h2 {
  max-width: 520px;
  margin: 0 0 24px;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.98;
}

.pool-escape-cta img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.pool-final-photo {
  padding-top: clamp(46px, 6vw, 78px);
}

.pool-final-photo img {
  height: clamp(320px, 42vw, 620px);
}

.restaurant-page {
  background: #f7fbfd;
}

.restaurant-hero {
  min-height: 100svh;
  padding: 0;
  background: #f7fbfd var(--page-image) center / 100% auto no-repeat;
}

@media (max-aspect-ratio: 16/10) {
  .restaurant-hero {
    min-height: 62vw;
  }
}

.restaurant-hero h1 {
  max-width: 760px;
  font-size: clamp(3.6rem, 7.4vw, 7.4rem);
}

.restaurant-intro {
  display: grid;
  grid-template-columns: minmax(0, 780px);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  justify-content: center;
  background: #eaf9fc;
}

.restaurant-intro-copy h2 {
  max-width: 620px;
  font-size: clamp(2.45rem, 4.7vw, 5.2rem);
  line-height: 0.98;
}

.restaurant-intro-copy p:not(.kicker) {
  max-width: 540px;
  color: rgba(27, 48, 50, 0.68);
  font-size: 1rem;
  line-height: 1.7;
}

.restaurant-intro-copy .home-button {
  margin-top: 12px;
}

.restaurant-intro-media {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f7fbfd;
  box-shadow: 0 24px 70px rgba(27, 48, 50, 0.14);
}

.restaurant-intro-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.restaurant-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  background: #f7fbfd;
}

.restaurant-food-gallery {
  width: min(100%, 980px);
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  align-items: stretch;
  justify-content: center;
  margin-inline: auto;
}

.restaurant-highlights article {
  background: white;
  box-shadow: 0 16px 42px rgba(27, 48, 50, 0.1);
}

.restaurant-highlights img {
  width: 100%;
  height: 320px;
  display: block;
  padding: 0;
  background: transparent;
  object-fit: cover;
}

.restaurant-highlights div {
  padding: 24px;
}

.restaurant-highlights span {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.restaurant-highlights h2 {
  font-size: clamp(1.7rem, 2.7vw, 3rem);
  line-height: 1;
}

.restaurant-highlights p {
  color: rgba(27, 48, 50, 0.66);
  line-height: 1.6;
}

.restaurant-food-gallery article:first-child img {
  height: 320px;
}

.restaurant-food-gallery article:nth-child(n + 2) img {
  object-position: center 86%;
}

.restaurant-food-gallery article:nth-child(n + 3) img {
  object-position: center 72%;
}

.beach-bar-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100svh;
  align-items: start;
  padding: 124px max(24px, calc((100vw - 1500px) / 2)) 58px;
  background:
    linear-gradient(180deg, rgba(7, 31, 36, 0.04), rgba(7, 31, 36, 0.38)),
    var(--page-image) center / cover no-repeat;
}

.beach-bar-hero::before {
  content: none;
}

.beach-bar-hero > div {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 18px;
  width: max-content;
  max-width: calc(100vw - 48px);
  padding: 12px 16px;
  background: rgba(11, 52, 64, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 16px 38px rgba(7, 31, 36, 0.18);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.beach-bar-hero .kicker {
  margin: 0;
  color: #e8fbff;
  text-shadow: 0 10px 26px rgba(7, 31, 36, 0.24);
}

.beach-bar-hero h1 {
  margin: 0;
  max-width: none;
  color: white;
  font-size: clamp(1.45rem, 2.6vw, 2.9rem);
  line-height: 0.94;
  white-space: nowrap;
  text-shadow: 0 10px 28px rgba(7, 31, 36, 0.36);
}

.beach-bar-page {
  background: #f7fbfd;
}

.beach-bar-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1.22fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  background: linear-gradient(135deg, rgba(216, 246, 252, 0.58), rgba(247, 251, 253, 0.96));
}

.beach-bar-copy h2 {
  max-width: 620px;
  font-size: clamp(2.35rem, 4.6vw, 5rem);
  line-height: 0.98;
}

.beach-bar-copy p:not(.kicker) {
  max-width: 520px;
  color: rgba(36, 73, 90, 0.68);
  line-height: 1.7;
}

.beach-bar-copy .home-button {
  margin-top: 10px;
}

.beach-bar-feature {
  min-height: 480px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(36, 73, 90, 0.13);
}

.beach-bar-feature img,
.beach-bar-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beach-bar-experiences {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  background: #eaf9fc;
}

.beach-bar-card {
  min-height: 470px;
  display: grid;
  grid-template-rows: 240px 1fr;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(36, 73, 90, 0.1);
}

.beach-bar-card.large {
  grid-column: span 2;
  grid-row: span 2;
  grid-template-rows: minmax(420px, 1fr) auto;
}

.beach-bar-card.wide {
  grid-column: span 2;
}

.beach-bar-card:last-child {
  grid-column: span 2;
}

.beach-bar-card div {
  padding: clamp(22px, 3vw, 34px);
}

.beach-bar-card span {
  display: block;
  margin-bottom: 12px;
  color: #42abc8;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.beach-bar-card h2 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 2.7vw, 3rem);
  line-height: 1;
}

.beach-bar-card p {
  margin: 0;
  color: rgba(36, 73, 90, 0.66);
  line-height: 1.65;
}

.beach-bar-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(42px, 6vw, 82px) max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(36, 73, 90, 0.74), rgba(36, 73, 90, 0.28)),
    url("images/sections-beach-bar-cta.jpg") center / cover no-repeat;
  color: white;
}

.beach-bar-cta h2 {
  max-width: 720px;
  margin: 0;
  color: white;
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 0.98;
}

.beach-bar-cta .kicker {
  color: #d8f6fc;
}

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

.stay-section {
  scroll-margin-top: 110px;
}

.stay-section + .stay-section {
  padding-top: 0;
}

.section-heading {
  max-width: 980px;
  margin-bottom: clamp(34px, 5vw, 70px);
}

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

.apartment-section {
  background: var(--sand);
}

.apartment-grid {
  grid-template-columns: minmax(280px, 720px);
}

.content-card {
  min-height: 420px;
  background: white;
  overflow: hidden;
}

.content-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.content-card div {
  padding: 28px;
}

.content-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.content-card h2 {
  font-size: clamp(1.9rem, 3vw, 3.3rem);
  margin-bottom: 14px;
}

.content-card p,
.contact-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.room-card .room-price {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1.1;
}

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

.room-inclusions li {
  padding: 10px 12px;
  background: rgba(36, 121, 134, 0.08);
  color: rgba(27, 48, 50, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
}

.room-times {
  display: grid;
  gap: 8px;
  margin: 16px 0 2px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.room-times p {
  margin: 0;
}

.room-times strong {
  color: var(--ink);
}

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

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-album {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-album img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eaf9fc;
}

.gallery-album img:first-child {
  grid-column: span 2;
  grid-row: span 2;
  height: 100%;
}

.gallery-moments-block {
  background: linear-gradient(135deg, rgba(216, 246, 252, 0.48), rgba(255, 255, 255, 0.92));
}

.gallery-random-album img:nth-child(1),
.gallery-random-album img:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
  height: 100%;
}

.gallery-random-album img:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-section {
  display: grid;
  gap: 38px;
  background: #f7fbfd;
}

.gallery-page .gallery-section {
  padding-top: clamp(112px, 13vw, 168px);
}

.gallery-page .gallery-heading {
  max-width: 880px;
}

.gallery-page .gallery-room-block {
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.gallery-page .gallery-room-copy {
  max-width: 720px;
}

.gallery-page .gallery-random-album {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.gallery-page .gallery-random-album img {
  min-height: 210px;
  box-shadow: 0 14px 34px rgba(36, 73, 90, 0.08);
}

.gallery-page .gallery-random-album img:nth-child(1) {
  grid-column: span 3;
  grid-row: span 2;
  height: 100%;
}

.gallery-page .gallery-random-album img:nth-child(2) {
  grid-column: span 3;
  grid-row: auto;
  height: auto;
}

.gallery-page .gallery-random-album img:nth-child(n + 3) {
  grid-column: span 2;
  grid-row: auto;
  height: auto;
}

.gallery-heading {
  max-width: 760px;
}

.gallery-heading h2 {
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  line-height: 0.98;
}

.gallery-room-block {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(420px, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  padding: clamp(22px, 3vw, 34px);
  background: white;
  box-shadow: 0 18px 46px rgba(27, 48, 50, 0.09);
}

.gallery-room-copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-room-copy h3 {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1;
}

.gallery-room-copy p {
  color: rgba(27, 48, 50, 0.66);
  line-height: 1.65;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(30px, 7vw, 100px);
  align-items: start;
  background: var(--sand);
}

.contact-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.contact-list li {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.contact-list span {
  display: block;
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-list a {
  font-weight: 900;
}

.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-social a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(36, 121, 134, 0.34);
  color: var(--teal);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(7, 31, 36, 0.18);
}

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

.contact-form-wide {
  grid-column: 1 / -1;
}

.contact-form label {
  color: #42abc8;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(27, 48, 50, 0.18);
  background: #f7fbfd;
  color: var(--ink);
  font: inherit;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
  padding: 14px;
}

.contact-form button {
  border: 0;
  cursor: pointer;
}

.contact-page {
  min-height: 100vh;
  color: #24495a;
  background:
    linear-gradient(180deg, rgba(216, 246, 252, 0.7), rgba(111, 199, 222, 0.42)),
    url("images/sections-about-hero-water.jpeg") center top / cover fixed no-repeat;
}

.contact-page::before {
  content: none;
}

.contact-page .site-header.is-scrolled {
  background: rgba(245, 252, 253, 0.9);
}

.contact-page .page-hero {
  min-height: 56svh;
  background: transparent;
}

.contact-page .page-hero h1 {
  color: #24495a;
  text-shadow: none;
}

.contact-page .page-hero .kicker {
  color: #42abc8;
}

.contact-page .contact-panel {
  color: #24495a;
  background: rgba(245, 252, 253, 0.72);
  border-top: 1px solid rgba(111, 199, 222, 0.24);
  border-bottom: 1px solid rgba(111, 199, 222, 0.24);
  backdrop-filter: blur(12px);
}

.contact-page .contact-panel h2,
.contact-page .contact-panel .kicker {
  color: #24495a;
}

.contact-page .contact-panel p,
.contact-page .contact-list li {
  color: rgba(36, 73, 90, 0.7);
}

.contact-page .contact-list li {
  border-bottom-color: rgba(111, 199, 222, 0.24);
}

.contact-page .contact-list span {
  color: #42abc8;
}

.contact-page .contact-social a {
  border-color: rgba(111, 199, 222, 0.36);
  color: #24495a;
  background: rgba(255, 255, 255, 0.48);
}

@media (max-width: 1100px) {
  .site-header {
    width: min(100% - 36px, 1720px);
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    grid-column: 3;
  }

  .nav-links,
  .header-actions {
    display: none;
  }

  .header-actions {
    display: flex;
    grid-column: 2;
    align-items: center;
    justify-content: end;
  }

  .header-actions .header-social,
  .header-actions span,
  .header-actions > a {
    display: none;
  }

  .lang-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 12px;
    border-color: rgba(111, 199, 222, 0.3);
    background: rgba(245, 252, 253, 0.78);
    color: var(--ink);
    font-size: 0.62rem;
    white-space: nowrap;
  }

  body.menu-open .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 18px;
    background: rgba(247, 253, 253, 0.96);
    box-shadow: 0 18px 50px rgba(27, 48, 50, 0.12);
  }

  body.menu-open .nav-links a {
    padding: 14px 0;
  }

  body.menu-open .nav-item {
    display: grid;
  }

  body.menu-open .has-dropdown > a::before {
    display: none;
  }

  body.menu-open .dropdown-menu {
    position: static;
    min-width: 0;
    padding: 0 0 0 18px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    backdrop-filter: none;
  }

  body.menu-open .dropdown-menu a {
    padding: 10px 0;
    color: rgba(28, 52, 54, 0.72);
  }

  .hero-content {
    width: min(680px, 62vw);
  }

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

  .gallery-page .gallery-random-album {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gallery-page .gallery-random-album img:nth-child(1),
  .gallery-page .gallery-random-album img:nth-child(2) {
    grid-column: span 2;
  }

  .gallery-page .gallery-random-album img:nth-child(n + 3) {
    grid-column: span 2;
  }

  .pool-showcase-hero,
  .pool-story-section,
  .pool-wide-feature,
  .pool-escape-cta {
    grid-template-columns: 1fr;
  }

  .pool-hero-panel {
    min-height: auto;
    width: min(440px, calc(100% - 32px));
    margin-right: 0;
    padding: clamp(32px, 6vw, 54px);
    clip-path: none;
    border-radius: 0 70px 70px 0;
    box-shadow: 0 24px 70px rgba(36, 73, 90, 0.18);
  }

  .pool-hero-photo {
    min-height: 100%;
    margin-left: 0;
    padding: 0;
  }

  .pool-story-image {
    min-height: 420px;
  }

  .pool-wide-feature > img,
  .pool-escape-cta img {
    height: 390px;
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: min(100% - 28px, 1720px);
  }

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

  .restaurant-food-gallery article:first-child,
  .restaurant-food-gallery article:last-child {
    grid-column: auto;
  }

  .gallery-page .gallery-random-album img:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    height: auto;
  }

  .hero {
    min-height: 100svh;
    align-items: end;
    padding: 150px 18px 42px;
    background:
      linear-gradient(180deg, rgba(235, 248, 252, 0.98) 0%, rgba(235, 248, 252, 0.8) 48%, rgba(235, 248, 252, 0.18) 100%),
      url("images/sections-shared-hero-legacy.webp") center center / cover no-repeat;
  }

  .hero-content {
    width: 100%;
    padding-top: 0;
  }

  h1 {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .intro-grid,
  .split,
  .restaurant-intro,
  .feature-grid,
  .content-grid,
  .restaurant-highlights,
  .pool-gallery-strip,
  .pool-wide-feature,
  .pool-escape-cta,
  .gallery-room-block,
  .gallery-grid,
  .gallery-album,
  .contact-panel,
  .contact-form {
    grid-template-columns: 1fr;
  }

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

  .feature-grid {
    grid-template-rows: none;
  }

  .feature-card.large {
    grid-row: auto;
  }

  .split-media {
    min-height: 360px;
  }

  .restaurant-intro-media {
    min-height: 340px;
  }

  .restaurant-highlights img,
  .restaurant-food-gallery article:first-child img {
    height: auto;
    min-height: 0;
    max-height: 360px;
  }

  .piscine-page .pool-showcase-hero {
    min-height: 100svh;
    align-items: flex-end;
    overflow: hidden;
    padding: 112px 24px 56px;
    background: #071f24;
  }

  .piscine-page .pool-hero-panel {
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .piscine-page .pool-hero-panel::before,
  .piscine-page .pool-hero-panel::after,
  .piscine-page .pool-hero-panel .kicker,
  .piscine-page .pool-hero-panel > p,
  .piscine-page .pool-hero-panel .pool-outline-button {
    display: none;
  }

  .piscine-page .pool-hero-panel h1 {
    max-width: 7ch;
    margin: 0;
    color: white;
    font-size: clamp(3rem, 13vw, 4.2rem);
    line-height: 0.9;
    text-shadow: 0 18px 40px rgba(4, 24, 32, 0.38);
  }

  .piscine-page .pool-hero-photo img {
    object-position: 56% 26%;
  }

  .piscine-page .pool-hero-photo::after {
    background: transparent;
  }

  .restaurant-highlights img {
    height: 220px;
  }

  .restaurant-food-gallery article:first-child {
    grid-column: auto;
  }

  .restaurant-food-gallery article:last-child,
  .beach-bar-card:last-child {
    grid-column: auto;
  }

  .piscine-page .site-header {
    width: min(100% - 28px, 1720px);
    grid-template-columns: 1fr auto;
    padding: 8px 14px;
  }

  .pool-showcase-hero {
    min-height: 86svh;
    padding: 92px 18px 26px;
    align-items: end;
  }

  .pool-hero-panel {
    min-height: auto;
    width: min(100%, 286px);
    padding: 16px 16px 18px;
    border-radius: 12px;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(245, 252, 253, 0.18);
    box-shadow: 0 14px 34px rgba(36, 73, 90, 0.1);
    backdrop-filter: blur(2px);
  }

  .pool-hero-panel::before {
    opacity: 0;
  }

  .pool-hero-panel::after {
    background: rgba(245, 252, 253, 0.1);
  }

  .pool-hero-panel h1 {
    margin-bottom: 10px;
    font-size: clamp(2rem, 9.4vw, 2.95rem);
  }

  .pool-hero-panel > p:not(.kicker) {
    max-width: 240px;
    margin-bottom: 14px;
    font-size: 0.78rem;
    line-height: 1.38;
  }

  .pool-outline-button {
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.52rem;
  }

  .pool-hero-photo {
    min-height: 100%;
    padding: 0;
  }

  .pool-hero-photo::after {
    background: linear-gradient(180deg, rgba(245, 252, 253, 0.02), rgba(245, 252, 253, 0.05));
  }

  .pool-story-section {
    padding: 64px 20px 76px;
  }

  .pool-story-copy h2 {
    font-size: clamp(2.45rem, 12vw, 4.4rem);
  }

  .pool-feature-row {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 30px;
  }

  .pool-feature-row span {
    min-height: 56px;
    padding-top: 0;
    padding-left: 46px;
    align-items: center;
  }

  .pool-feature-row span::before {
    top: 50%;
    transform: translateY(-50%);
  }

  .pool-story-image {
    min-height: 330px;
  }

  .pool-gallery-strip {
    padding: 0 20px 64px;
  }

  .pool-gallery-strip img,
  .pool-final-photo img,
  .pool-wide-feature > img,
  .pool-escape-cta img {
    height: 260px;
  }

  .pool-escape-cta > div {
    padding: 42px 20px 28px;
  }

  .pool-final-photo {
    padding: 42px 20px 64px;
  }

  .beach-bar-hero {
    min-height: 72svh;
    padding: 88px 18px 34px;
    background:
      linear-gradient(180deg, rgba(7, 31, 36, 0.08), rgba(7, 31, 36, 0.36)),
      var(--page-image-mobile) center / cover no-repeat;
  }

  .beach-bar-hero h1 {
    font-size: clamp(0.92rem, 4.5vw, 1.25rem);
  }

  .beach-bar-hero > div {
    gap: 8px;
    max-width: calc(100vw - 28px);
    padding: 9px 11px;
  }

  .beach-bar-hero .kicker {
    font-size: 0.5rem;
    letter-spacing: 0.12em;
  }

  .beach-bar-intro,
  .beach-bar-experiences,
  .beach-bar-cta {
    grid-template-columns: 1fr;
  }

  .beach-bar-feature {
    min-height: 320px;
  }

  .beach-bar-card,
  .beach-bar-card.large,
  .beach-bar-card.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    grid-template-rows: 230px auto;
  }

  .beach-bar-cta {
    justify-items: start;
  }

  .pool-story-image::after {
    right: -12px;
    bottom: -16px;
    width: 86px;
    height: 150px;
  }

  .pool-hero {
    min-height: 74svh;
    background-size: contain;
  }

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

/* Home layout inspired by the provided reference.
   Photo slots are intentionally blank; add <img> tags in index.html comments. */
.home-page {
  position: relative;
  background: #f7fbfd;
}

.home-page h1,
.home-page h2,
.home-page h3 {
  color: var(--ink);
}

.home-page-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.home-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(116, 193, 214, 0.18), rgba(68, 162, 190, 0.16)),
    rgba(18, 106, 136, 0.08);
}

.home-page > section {
  position: relative;
  z-index: 1;
}

.image-slot {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(36, 121, 134, 0.08), rgba(255, 255, 255, 0.32)),
    #eaf9fc;
  border: 1px solid rgba(27, 48, 50, 0.08);
}

.image-slot > img,
.image-slot > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.image-slot::after {
  content: "PHOTO";
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: rgba(27, 48, 50, 0.34);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.26em;
}

.image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-slot video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.image-slot:has(img)::after,
.image-slot:has(video)::after {
  display: none;
}

.home-eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--teal);
  background: var(--teal);
  color: white;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.home-button.secondary {
  background: transparent;
  color: var(--teal);
}

.home-button.light {
  border-color: white;
  background: white;
  color: var(--teal);
}

.home-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #edf5f4;
  isolation: isolate;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(238, 250, 250, 0.97) 0%, rgba(238, 250, 250, 0.86) 24%, rgba(238, 250, 250, 0.42) 45%, rgba(238, 250, 250, 0) 64%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02));
}

.home-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(44vw, 620px);
  min-height: 100svh;
  padding: 132px 0 72px clamp(38px, 4.8vw, 76px);
}

.home-hero-copy h1 {
  max-width: 7.1ch;
  font-size: clamp(4.1rem, 7vw, 7.8rem);
  line-height: 0.88;
}

.home-hero-copy h1 span {
  display: block;
}

.home-hero-copy .hero-accent {
  color: inherit;
}

.home-hero-lead,
.home-hero-sub {
  max-width: 420px;
  color: rgba(27, 48, 50, 0.66);
  font-size: clamp(0.9rem, 1.05vw, 1.08rem);
  line-height: 1.55;
}

.home-hero-lead {
  margin: 22px 0 0;
}

.home-hero-sub {
  margin: 8px 0 26px;
}

.home-hero-features {
  display: none;
}

.home-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  border: 0;
  background: #d9eef0;
}

.home-hero-media::after {
  display: none;
}

.home-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.home-about,
.home-food,
.home-location {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: center;
  padding: clamp(72px, 9vw, 130px) max(24px, calc((100vw - 1280px) / 2));
}

.home-about {
  background: rgba(225, 244, 248, 0.48);
  backdrop-filter: blur(1px);
}

.home-section-text h2,
.home-section-head h2,
.home-food-copy h2,
.home-location-copy h2 {
  max-width: 640px;
  font-size: clamp(2.5rem, 5.2vw, 5.6rem);
  line-height: 0.96;
}

.home-section-text > p:not(.home-eyebrow),
.home-food-copy p,
.home-location-copy p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.7;
}

.home-about-media {
  min-height: 430px;
}

.home-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 620px;
  margin-top: 30px;
}

.home-stats span {
  min-height: 70px;
  display: grid;
  place-items: center;
  border-top: 1px solid rgba(36, 121, 134, 0.35);
  color: #24495a;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.home-rooms,
.home-moments {
  padding: clamp(72px, 9vw, 130px) max(24px, calc((100vw - 1280px) / 2));
  background: rgba(219, 239, 244, 0.5);
  backdrop-filter: blur(1px);
}

.home-rooms {
  position: relative;
  padding-top: clamp(64px, 8vw, 110px);
  padding-bottom: clamp(64px, 8vw, 110px);
  display: grid;
  justify-items: start;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(227, 246, 247, 0.82), rgba(227, 246, 247, 0.34) 58%, rgba(227, 246, 247, 0.12)),
    rgba(219, 239, 244, 0.26);
}

.home-rooms::before {
  content: "";
  position: absolute;
  left: max(24px, calc((100vw - 1280px) / 2));
  right: max(24px, calc((100vw - 1280px) / 2));
  bottom: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(36, 121, 134, 0.42), transparent);
}

.home-section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.home-rooms .home-section-head {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin-bottom: 28px;
}

.home-rooms .home-section-head h2 {
  max-width: 11ch;
  font-size: clamp(2.6rem, 5vw, 5.55rem);
  line-height: 0.94;
}

.home-section-head.narrow {
  max-width: 520px;
}

.home-room-link {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  min-height: 188px;
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(240px, 1fr) auto auto auto;
  gap: 14px 18px;
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 24px 70px rgba(27, 48, 50, 0.12);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.home-room-link img {
  grid-row: 1 / span 2;
  width: 100%;
  height: 132px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 42px rgba(36, 73, 90, 0.16);
}

.home-room-link::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(36, 121, 134, 0.14);
  pointer-events: none;
}

.home-room-link:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 28px 80px rgba(27, 48, 50, 0.16);
}

.home-room-link span,
.home-room-link strong,
.home-room-link em {
  color: var(--teal);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.home-room-link span {
  grid-column: 2;
  color: var(--ink);
  font-size: clamp(1.5rem, 2.4vw, 2.55rem);
  letter-spacing: 0.04em;
}

.home-room-link small {
  grid-column: 2;
  max-width: 360px;
  color: rgba(27, 48, 50, 0.64);
  font-size: 0.92rem;
  line-height: 1.55;
}

.home-room-link em {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(36, 121, 134, 0.24);
  background: rgba(255, 255, 255, 0.36);
  font-style: normal;
}

.home-room-link strong {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  color: white;
  background: #42abc8;
}

.home-room-link strong::after {
  content: " ->";
}

.moment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.moment-card {
  min-height: 270px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background-color: #bfeaf6;
}

.moment-card span {
  position: relative;
  z-index: 1;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.home-explore {
  position: relative;
  padding: clamp(76px, 8vw, 118px) max(24px, calc((100vw - 1320px) / 2)) clamp(78px, 8vw, 118px);
  overflow: hidden;
  background: rgba(224, 244, 248, 0.48);
  backdrop-filter: blur(1px);
}

.home-explore::after {
  display: none;
}

.home-explore-copy,
.explore-grid,
.home-explore > .home-button {
  position: relative;
  z-index: 1;
}

.home-explore-copy {
  max-width: 760px;
  margin-bottom: 34px;
}

.home-explore-copy h2 {
  max-width: 860px;
  font-size: clamp(2.45rem, 4.4vw, 4.9rem);
  line-height: 1.05;
}

.home-explore-copy p:not(.home-eyebrow) {
  max-width: 520px;
  margin-top: 20px;
  color: rgba(27, 48, 50, 0.72);
  font-size: 0.98rem;
  line-height: 1.7;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  transform: none;
}

.explore-card {
  min-height: 430px;
  display: grid;
  grid-template-rows: 190px 1fr;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 42px rgba(27, 48, 50, 0.1);
}

.explore-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.explore-card div {
  display: grid;
  align-content: start;
  padding: 22px 20px 24px;
}

.explore-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.explore-card h3 {
  min-height: 0;
  margin-bottom: 12px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 1.6vw, 1.85rem);
  font-weight: 400;
  line-height: 1.05;
}

.explore-card p {
  margin: 0;
  color: rgba(27, 48, 50, 0.68);
  font-size: 0.9rem;
  line-height: 1.68;
}

.explore-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-explore > .home-button {
  justify-self: center;
  margin: 28px auto 0;
}

.home-food {
  grid-template-columns: minmax(360px, 1.15fr) minmax(280px, 0.85fr);
  background: #eaf9fc;
}

.home-food-media {
  min-height: 460px;
}

.home-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 16px max(16px, calc((100vw - 1280px) / 2));
  background: #f7fbfd;
}

.home-strip .image-slot {
  aspect-ratio: 4 / 3;
}

.home-booking-strip {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: clamp(54px, 7vw, 92px) 24px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(rgba(7, 64, 74, 0.36), rgba(7, 64, 74, 0.36)),
    url("images/sections-about-pool-water.jpg") center / cover no-repeat;
  backdrop-filter: blur(1px);
}

.home-booking-strip > * {
  position: relative;
  z-index: 1;
}

.home-booking-strip .home-eyebrow,
.home-booking-strip h2 {
  color: white;
  text-shadow: 0 12px 32px rgba(2, 35, 42, 0.34);
}

.home-booking-strip h2 {
  max-width: 760px;
  font-size: clamp(2.2rem, 4.6vw, 5rem);
  line-height: 1;
}

.home-booking-strip .home-button {
  margin-top: 6px;
}

.home-location {
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.76fr);
  background: #f7fbfd;
}

.home-map {
  min-height: 360px;
}

.home-cta {
  position: relative;
  min-height: 165px;
  display: grid;
  place-items: center;
  padding: 38px 24px 30px;
  overflow: hidden;
  text-align: center;
  color: white;
  background: rgba(8, 48, 54, 0.62);
  backdrop-filter: blur(1px);
}

.home-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.12));
}

.home-cta > div {
  position: relative;
  z-index: 1;
}

.home-cta h2 {
  margin-bottom: 14px;
  color: white;
  font-size: clamp(1.75rem, 2.6vw, 3rem);
}

.home-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(180px, 1.2fr) repeat(4, minmax(120px, 0.8fr));
  gap: clamp(24px, 4vw, 58px);
  padding: 42px max(24px, calc((100vw - 1180px) / 2)) 38px;
  background: linear-gradient(135deg, #d8f6fc, #bfeaf6);
  color: rgba(36, 73, 90, 0.9);
  align-items: flex-start;
}

.home-footer strong {
  display: block;
  color: #24495a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: none;
}

.footer-brand::before {
  content: "";
  display: block;
  width: 158px;
  height: 82px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    rgba(255, 255, 255, 0.62)
    url("images/sections-shared-logo-main.png") center / 124px auto no-repeat;
  box-shadow: 0 14px 30px rgba(36, 73, 90, 0.08);
  filter: contrast(1.18) saturate(1.12);
}

.home-footer p {
  max-width: 260px;
  margin: 12px 0 0;
  color: rgba(36, 73, 90, 0.68);
  line-height: 1.6;
  letter-spacing: 0;
  text-transform: none;
}

.home-footer h3 {
  margin: 0 0 14px;
  color: #24495a;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-column,
.footer-social {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-column a,
.footer-column span,
.footer-social a {
  color: rgba(36, 73, 90, 0.72);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-transform: none;
}

.footer-social div {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 30px;
  height: 30px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(36, 73, 90, 0.28);
  border-radius: 50%;
  font-size: 0;
  font-weight: 900;
  line-height: 1;
  overflow: hidden;
  color: transparent;
}

.footer-social a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  display: block;
  background: rgba(255, 255, 255, 0.84);
  transform: translate(-50%, -50%);
}

.footer-social a[aria-label="Instagram"]::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='20' x='2' y='2' rx='5' ry='5'/%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'/%3E%3Cline x1='17.5' x2='17.51' y1='6.5' y2='6.5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='20' x='2' y='2' rx='5' ry='5'/%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'/%3E%3Cline x1='17.5' x2='17.51' y1='6.5' y2='6.5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.footer-social a[aria-label="Facebook"]::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M15.12 8.5H17V5.25A24.9 24.9 0 0 0 14.26 5c-2.71 0-4.57 1.66-4.57 4.7v2.8H6.62v3.63h3.07V24h3.76v-7.87h2.94l.47-3.63h-3.41V10.06c0-1.05.28-1.56 1.67-1.56Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M15.12 8.5H17V5.25A24.9 24.9 0 0 0 14.26 5c-2.71 0-4.57 1.66-4.57 4.7v2.8H6.62v3.63h3.07V24h3.76v-7.87h2.94l.47-3.63h-3.41V10.06c0-1.05.28-1.56 1.67-1.56Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.footer-social a[aria-label="WhatsApp"]::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M20.52 3.48A11.82 11.82 0 0 0 12.1 0C5.56 0 .24 5.32.24 11.86c0 2.09.55 4.14 1.59 5.94L.14 24l6.34-1.66a11.86 11.86 0 0 0 5.62 1.43h.01c6.54 0 11.86-5.32 11.86-11.86 0-3.17-1.23-6.15-3.45-8.43ZM12.1 21.77c-1.75 0-3.47-.47-4.96-1.36l-.36-.22-3.76.99 1-3.66-.24-.38a9.82 9.82 0 0 1-1.5-5.28C2.28 6.42 6.7 2 12.11 2c2.63 0 5.1 1.03 6.95 2.89a9.78 9.78 0 0 1 2.89 6.96c0 5.42-4.42 9.92-9.85 9.92Zm5.4-7.38c-.3-.15-1.75-.86-2.02-.96-.27-.1-.47-.15-.67.15-.2.3-.77.96-.95 1.16-.17.2-.35.22-.65.07-.3-.15-1.25-.46-2.39-1.47-.88-.79-1.48-1.76-1.65-2.06-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.08-.15-.67-1.61-.92-2.2-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.07-.79.37-.27.3-1.04 1.02-1.04 2.48s1.06 2.87 1.21 3.07c.15.2 2.09 3.19 5.06 4.47.71.31 1.26.49 1.69.63.71.23 1.36.2 1.87.12.57-.08 1.75-.72 2-1.41.25-.7.25-1.3.17-1.42-.08-.12-.27-.2-.57-.35Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M20.52 3.48A11.82 11.82 0 0 0 12.1 0C5.56 0 .24 5.32.24 11.86c0 2.09.55 4.14 1.59 5.94L.14 24l6.34-1.66a11.86 11.86 0 0 0 5.62 1.43h.01c6.54 0 11.86-5.32 11.86-11.86 0-3.17-1.23-6.15-3.45-8.43ZM12.1 21.77c-1.75 0-3.47-.47-4.96-1.36l-.36-.22-3.76.99 1-3.66-.24-.38a9.82 9.82 0 0 1-1.5-5.28C2.28 6.42 6.7 2 12.11 2c2.63 0 5.1 1.03 6.95 2.89a9.78 9.78 0 0 1 2.89 6.96c0 5.42-4.42 9.92-9.85 9.92Zm5.4-7.38c-.3-.15-1.75-.86-2.02-.96-.27-.1-.47-.15-.67.15-.2.3-.77.96-.95 1.16-.17.2-.35.22-.65.07-.3-.15-1.25-.46-2.39-1.47-.88-.79-1.48-1.76-1.65-2.06-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.08-.15-.67-1.61-.92-2.2-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.07-.79.37-.27.3-1.04 1.02-1.04 2.48s1.06 2.87 1.21 3.07c.15.2 2.09 3.19 5.06 4.47.71.31 1.26.49 1.69.63.71.23 1.36.2 1.87.12.57-.08 1.75-.72 2-1.41.25-.7.25-1.3.17-1.42-.08-.12-.27-.2-.57-.35Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.footer-social a::before {
  width: 17px;
  height: 17px;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer-social a[aria-label="Instagram"]::before,
.footer-social a[aria-label="Facebook"]::before,
.footer-social a[aria-label="WhatsApp"]::before {
  -webkit-mask: none;
  mask: none;
}

.footer-social a[aria-label="Instagram"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2324495a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1.1' fill='%2324495a' stroke='none'/%3E%3C/svg%3E");
}

.footer-social a[aria-label="Facebook"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2324495a'%3E%3Cpath d='M14.25 8.1h2.05V4.8c-.35-.05-1.55-.15-2.95-.15-2.92 0-4.92 1.78-4.92 5.05v2.8H5.2v3.7h3.23V24h3.95v-7.8h3.08l.49-3.7h-3.57v-2.43c0-1.07.3-1.97 1.87-1.97Z'/%3E%3C/svg%3E");
}

.footer-social a[aria-label="WhatsApp"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2324495a'%3E%3Cpath d='M20.52 3.48A11.82 11.82 0 0 0 12.1 0C5.56 0 .24 5.32.24 11.86c0 2.09.55 4.14 1.59 5.94L.14 24l6.34-1.66a11.86 11.86 0 0 0 5.62 1.43h.01c6.54 0 11.86-5.32 11.86-11.86 0-3.17-1.23-6.15-3.45-8.43ZM12.1 21.77c-1.75 0-3.47-.47-4.96-1.36l-.36-.22-3.76.99 1-3.66-.24-.38a9.82 9.82 0 0 1-1.5-5.28C2.28 6.42 6.7 2 12.11 2c2.63 0 5.1 1.03 6.95 2.89a9.78 9.78 0 0 1 2.89 6.96c0 5.42-4.42 9.92-9.85 9.92Zm5.4-7.38c-.3-.15-1.75-.86-2.02-.96-.27-.1-.47-.15-.67.15-.2.3-.77.96-.95 1.16-.17.2-.35.22-.65.07-.3-.15-1.25-.46-2.39-1.47-.88-.79-1.48-1.76-1.65-2.06-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.08-.15-.67-1.61-.92-2.2-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.07-.79.37-.27.3-1.04 1.02-1.04 2.48s1.06 2.87 1.21 3.07c.15.2 2.09 3.19 5.06 4.47.71.31 1.26.49 1.69.63.71.23 1.36.2 1.87.12.57-.08 1.75-.72 2-1.41.25-.7.25-1.3.17-1.42-.08-.12-.27-.2-.57-.35Z'/%3E%3C/svg%3E");
}

.footer-social a {
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.footer-social a::before {
  transition: filter 180ms ease, transform 180ms ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(36, 73, 90, 0.14);
}

.footer-social a:hover::before {
  transform: translate(-50%, -50%) scale(1.08);
}

.footer-social a[aria-label="Instagram"]:hover {
  border-color: #e4405f;
}

.footer-social a[aria-label="Instagram"]:hover::before {
  filter: brightness(0) saturate(100%) invert(36%) sepia(92%) saturate(1876%) hue-rotate(319deg) brightness(92%) contrast(93%);
}

.footer-social a[aria-label="Facebook"]:hover {
  border-color: #1877f2;
}

.footer-social a[aria-label="Facebook"]:hover::before {
  filter: brightness(0) saturate(100%) invert(39%) sepia(99%) saturate(2419%) hue-rotate(200deg) brightness(96%) contrast(97%);
}

.footer-social a[aria-label="WhatsApp"]:hover {
  border-color: #25d366;
}

.footer-social a[aria-label="WhatsApp"]:hover::before {
  filter: brightness(0) saturate(100%) invert(62%) sepia(71%) saturate(545%) hue-rotate(86deg) brightness(91%) contrast(91%);
}

.footer-social a[aria-label="Instagram"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e4405f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1.1' fill='%23e4405f' stroke='none'/%3E%3C/svg%3E");
}

.footer-social a[aria-label="Facebook"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231877f2'%3E%3Cpath d='M14.25 8.1h2.05V4.8c-.35-.05-1.55-.15-2.95-.15-2.92 0-4.92 1.78-4.92 5.05v2.8H5.2v3.7h3.23V24h3.95v-7.8h3.08l.49-3.7h-3.57v-2.43c0-1.07.3-1.97 1.87-1.97Z'/%3E%3C/svg%3E");
}

.footer-social a[aria-label="WhatsApp"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2325d366'%3E%3Cpath d='M20.52 3.48A11.82 11.82 0 0 0 12.1 0C5.56 0 .24 5.32.24 11.86c0 2.09.55 4.14 1.59 5.94L.14 24l6.34-1.66a11.86 11.86 0 0 0 5.62 1.43h.01c6.54 0 11.86-5.32 11.86-11.86 0-3.17-1.23-6.15-3.45-8.43ZM12.1 21.77c-1.75 0-3.47-.47-4.96-1.36l-.36-.22-3.76.99 1-3.66-.24-.38a9.82 9.82 0 0 1-1.5-5.28C2.28 6.42 6.7 2 12.11 2c2.63 0 5.1 1.03 6.95 2.89a9.78 9.78 0 0 1 2.89 6.96c0 5.42-4.42 9.92-9.85 9.92Zm5.4-7.38c-.3-.15-1.75-.86-2.02-.96-.27-.1-.47-.15-.67.15-.2.3-.77.96-.95 1.16-.17.2-.35.22-.65.07-.3-.15-1.25-.46-2.39-1.47-.88-.79-1.48-1.76-1.65-2.06-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.08-.15-.67-1.61-.92-2.2-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.07-.79.37-.27.3-1.04 1.02-1.04 2.48s1.06 2.87 1.21 3.07c.15.2 2.09 3.19 5.06 4.47.71.31 1.26.49 1.69.63.71.23 1.36.2 1.87.12.57-.08 1.75-.72 2-1.41.25-.7.25-1.3.17-1.42-.08-.12-.27-.2-.57-.35Z'/%3E%3C/svg%3E");
}

.blog-page {
  background: #f7fbfd;
}

.blog-hero {
  min-height: 58svh;
}

.blog-index {
  display: grid;
  gap: 28px;
  background: #eaf9fc;
}

.blog-entry {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
  padding: clamp(18px, 2vw, 26px);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(27, 48, 50, 0.08);
}

.blog-entry img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.blog-entry div {
  display: grid;
  align-content: center;
  padding: clamp(20px, 3vw, 46px);
}

.blog-entry span {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.blog-entry h2 {
  max-width: 680px;
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.98;
}

.blog-entry p {
  max-width: 720px;
  color: rgba(27, 48, 50, 0.68);
  font-size: 1rem;
  line-height: 1.8;
}

.blog-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.blog-facts li {
  padding: 14px;
  border: 1px solid rgba(36, 121, 134, 0.18);
  background: rgba(36, 121, 134, 0.06);
  color: rgba(27, 48, 50, 0.74);
  font-size: 0.88rem;
  line-height: 1.4;
}

.blog-facts span {
  display: block;
  margin: 0 0 6px;
  color: var(--teal);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .home-about,
  .home-food,
  .home-location {
    grid-template-columns: 1fr;
  }

  .home-hero-copy {
    width: min(620px, 62vw);
    padding-top: 130px;
  }

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

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

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

@media (max-width: 760px) {
  .home-hero-copy {
    width: 100%;
    padding: 118px 20px 44px;
  }

  .home-hero-copy h1 {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .home-about-media,
  .home-food-media,
  .home-map {
    min-height: 320px;
  }

  .home-about,
  .home-food,
  .home-location,
  .home-rooms,
  .home-moments,
  .home-explore {
    padding: 64px 20px;
  }

  .home-stats,
  .moment-grid,
  .explore-grid,
  .gallery-album,
  .home-strip {
    grid-template-columns: 1fr;
  }

  .gallery-album img:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .home-rooms .home-section-head {
    margin-bottom: 20px;
  }

  .home-room-link {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .home-room-link img {
    grid-row: auto;
    height: 190px;
  }

  .home-room-link span,
  .home-room-link small {
    grid-column: auto;
  }

  .home-room-link em,
  .home-room-link strong {
    width: 100%;
    justify-content: center;
  }

  .explore-grid {
    transform: none;
  }

  .explore-card {
    min-height: 0;
    grid-template-rows: 190px auto;
  }

  .home-cta {
    min-height: 190px;
    padding: 46px 20px 34px;
  }

  .home-footer {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 32px 20px 30px;
    text-align: center;
    justify-items: center;
  }

  .home-footer .footer-column,
  .home-footer .footer-social {
    display: none;
  }

  .home-footer .footer-column:nth-of-type(4) {
    display: grid;
    justify-items: center;
    gap: 8px;
  }

  .home-footer .footer-brand::before {
    margin: 0 auto;
  }

  .home-footer .footer-brand strong,
  .home-footer .footer-brand p {
    display: none;
  }

  .blog-entry {
    grid-template-columns: 1fr;
  }

  .blog-entry img {
    min-height: 220px;
  }

  .blog-facts {
    grid-template-columns: 1fr;
  }
}

/* Book Now page */
.book-page {
  background: #f7fbfd;
}

.book-page .site-header {
  width: min(100% - 42px, 1320px);
  grid-template-columns: 104px 1fr auto;
  padding: 8px 18px;
}

.book-page .brand {
  width: 86px;
}

.book-page .nav-links,
.book-page .header-actions {
  gap: clamp(16px, 2vw, 30px);
}

.book-page .nav-links a,
.book-page .header-actions a {
  font-size: 0.58rem;
}

.book-page .header-actions > a:last-child {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  color: #24495a;
  background: linear-gradient(135deg, #d8f6fc, #bfeaf6);
}

.book-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 0;
  overflow: hidden;
  background: #f7fbfd var(--book-image) center / 100% auto no-repeat;
}

@media (max-aspect-ratio: 16/10) {
  .book-hero {
    min-height: 62vw;
  }
}

.book-hero-glass {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  justify-self: center;
  padding: clamp(18px, 2.8vw, 30px) clamp(26px, 5vw, 70px);
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(239, 251, 252, 0.28);
  box-shadow: 0 24px 80px rgba(4, 38, 44, 0.22);
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 5.6rem);
  line-height: 1;
  text-align: center;
  backdrop-filter: blur(16px);
}

.book-eyebrow {
  margin: 0 0 12px;
  color: #42abc8;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.book-stay-cta .book-eyebrow {
  color: #d7f4f4;
}

.book-hotel,
.book-apartment {
  padding: 58px max(22px, calc((100vw - 1120px) / 2));
}

.book-page[data-book-view="hotel"] .book-apartment,
.book-page[data-book-view="apartamente"] .book-hotel {
  display: none;
}

.book-section-heading {
  max-width: 530px;
  margin: 0 auto 36px;
}

.book-section-heading.centered {
  text-align: center;
}

.book-section-heading h2,
.book-apartment-copy h2,
.book-stay-cta h2 {
  color: var(--ink);
  font-size: clamp(2.25rem, 4vw, 4.25rem);
  line-height: 1;
}

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

.book-deluxe {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(520px, 1.28fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 28px;
}

.book-deluxe-intro,
.book-deluxe-card {
  background: white;
  box-shadow: 0 14px 34px rgba(27, 48, 50, 0.1);
}

.book-deluxe-intro {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3.5vw, 38px);
}

.book-deluxe-intro h3 {
  font-size: clamp(2.2rem, 4vw, 4.7rem);
  line-height: 0.96;
}

.book-deluxe-intro > p:not(.book-eyebrow):not(.book-price) {
  color: rgba(27, 48, 50, 0.64);
  line-height: 1.65;
}

.book-deluxe-intro .book-inclusions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.book-deluxe-intro .book-detail-link {
  margin-top: auto;
  padding-top: 26px;
}

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

.book-deluxe-card {
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
  overflow: hidden;
}

.book-room-carousel {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: #dfe9e8;
}

.book-room-carousel img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.carousel-arrow {
  position: absolute;
  bottom: 14px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: rgba(244, 252, 253, 0.78);
  box-shadow: 0 8px 22px rgba(36, 73, 90, 0.14);
  backdrop-filter: blur(12px);
  color: white;
  cursor: pointer;
  font-size: 0;
  line-height: 1;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.carousel-arrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #24495a;
  border-right: 2px solid #24495a;
}

.carousel-arrow.prev::before {
  transform: rotate(-135deg);
  margin-left: 3px;
}

.carousel-arrow.next::before {
  transform: rotate(45deg);
  margin-right: 3px;
}

.carousel-arrow:hover {
  background: white;
  box-shadow: 0 12px 28px rgba(36, 73, 90, 0.18);
  transform: translateY(-2px);
}

.carousel-arrow.prev {
  right: 58px;
}

.carousel-arrow.next {
  right: 16px;
}

.carousel-count {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 7px 11px;
  color: #24495a;
  background: rgba(244, 252, 253, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.book-deluxe-card div {
  padding: 20px;
}

.book-deluxe-card .book-room-carousel {
  padding: 0;
}

.book-deluxe-card span {
  display: block;
  margin-bottom: 9px;
  color: #42abc8;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.book-deluxe-card h4 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1;
}

.book-deluxe-card p {
  margin: 10px 0 0;
  color: rgba(27, 48, 50, 0.64);
  font-size: 0.82rem;
  line-height: 1.55;
}

.book-standard-grid {
  grid-template-columns: minmax(0, 1fr);
}

.book-room-card,
.book-apartment-card {
  background: white;
  box-shadow: 0 14px 34px rgba(27, 48, 50, 0.1);
}

.book-room-card > img,
.book-apartment-card > img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.book-room-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(135px, 0.72fr);
  gap: 20px;
  padding: 22px;
}

.book-room-body span {
  display: block;
  margin-bottom: 8px;
  color: #42abc8;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.book-room-body h3 {
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  line-height: 1;
}

.book-price {
  margin: 6px 0 12px;
  color: #42abc8;
  font-size: 1.18rem;
  font-weight: 900;
}

.book-room-body p {
  margin: 10px 0 0;
  color: rgba(27, 48, 50, 0.64);
  font-size: 0.86rem;
  line-height: 1.55;
}

.book-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: #42abc8;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.book-detail-link::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}

.book-inclusions {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.book-inclusions li {
  position: relative;
  padding-left: 24px;
  color: rgba(27, 48, 50, 0.7);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
}

.book-inclusions li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.08rem;
  width: 13px;
  height: 13px;
  border: 1px solid rgba(36, 121, 134, 0.48);
  background: rgba(36, 121, 134, 0.08);
}

.book-apartment {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(26px, 3vw, 46px);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(135deg, rgba(245, 252, 253, 0.95), rgba(216, 246, 252, 0.82)),
    #f7fbfd;
}

.book-apartment::before {
  content: "";
  position: absolute;
  inset: auto -12vw -18vw auto;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(36, 121, 134, 0.12);
  border-radius: 50%;
}

.book-apartment-copy {
  position: relative;
  z-index: 1;
  max-width: 540px;
}

.book-apartment-copy h2 {
  max-width: 490px;
}

.book-apartment-copy p:not(.book-eyebrow) {
  color: rgba(27, 48, 50, 0.65);
  line-height: 1.65;
}

.book-apartment-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
}

.book-apartment-highlights span {
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(36, 121, 134, 0.22);
  background: rgba(255, 255, 255, 0.52);
  color: #42abc8;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.book-apartment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 30px;
}

.book-apartment-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  min-width: 0;
  overflow: hidden;
  background: white;
  box-shadow: 0 24px 70px rgba(27, 48, 50, 0.14);
}

.book-apartment-media {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.book-apartment-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-apartment-media span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  color: white;
  background: rgba(7, 83, 91, 0.82);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.book-apartment-media.apartment-coming-soon {
  min-height: 500px;
  display: grid;
  place-items: center;
  padding: clamp(24px, 3vw, 44px);
  background:
    linear-gradient(135deg, rgba(216, 246, 252, 0.82), rgba(255, 255, 255, 0.86)),
    repeating-linear-gradient(135deg, rgba(66, 171, 200, 0.08) 0 1px, transparent 1px 22px);
}

.book-apartment-media.apartment-coming-soon > div {
  display: grid;
  gap: 14px;
  width: min(100%, 500px);
  min-width: 0;
  padding-inline: 10px;
  text-align: center;
}

.book-apartment-media.apartment-coming-soon span {
  position: static;
  max-width: 100%;
  width: max-content;
  justify-self: center;
  color: #24495a;
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

.book-apartment-media.apartment-coming-soon strong {
  max-width: 100%;
  color: #24495a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 3.4vw, 3.8rem);
  font-weight: 400;
  line-height: 1;
  white-space: normal;
  overflow-wrap: normal;
}

.book-apartment-media.apartment-coming-soon small {
  max-width: 36ch;
  justify-self: center;
  color: rgba(36, 73, 90, 0.68);
  font-size: 0.9rem;
  line-height: 1.6;
}

.book-apartment-card .book-room-body {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  gap: 22px;
  min-width: 0;
  padding: clamp(28px, 3vw, 44px);
  background: white;
}

.book-apartment-card .book-room-body span {
  color: #24495a;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  overflow-wrap: normal;
  word-break: normal;
}

.book-apartment-card .book-room-body h3 {
  max-width: 100%;
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 2.35vw, 2.65rem);
  line-height: 1.04;
  overflow-wrap: normal;
}

.book-apartment-card .book-room-body p {
  max-width: 32ch;
  color: rgba(36, 73, 90, 0.68);
  line-height: 1.6;
  overflow-wrap: normal;
}

.book-apartment-card .book-inclusions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.book-apartment-card .book-inclusions li {
  color: rgba(36, 73, 90, 0.82);
  font-size: 0.78rem;
  line-height: 1.35;
  white-space: normal;
}

.book-stay-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 36px max(22px, calc((100vw - 1120px) / 2));
  color: #24495a;
  background:
    linear-gradient(rgba(216, 246, 252, 0.9), rgba(191, 234, 246, 0.88)),
    url("images/sections-shared-footer-cta.jpg") center / cover no-repeat;
}

.book-stay-cta h2 {
  max-width: 520px;
  color: #24495a;
}

.book-footer {
  background: #bfeaf6;
}

@media (max-width: 1100px) {
  .book-page .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .book-deluxe,
  .book-deluxe-grid,
  .book-room-grid,
  .book-apartment,
  .book-apartment-card,
  .book-stay-cta {
    grid-template-columns: 1fr;
  }

  .book-apartment-media.apartment-coming-soon {
    min-height: 360px;
  }

  .book-stay-cta {
    justify-items: start;
  }
}

@media (max-width: 760px) {
  .book-hero {
    min-height: 62vw;
    padding: 0;
    background: #f7fbfd var(--book-image) center / 100% auto no-repeat;
  }

  .book-hero-glass {
    padding: 18px 20px;
    font-size: clamp(2rem, 12vw, 4rem);
  }

  .book-hotel,
  .book-apartment {
    padding: 54px 20px;
  }

  .book-deluxe-intro .book-inclusions,
  .book-apartment-highlights,
  .book-room-grid,
  .book-room-body {
    grid-template-columns: 1fr;
  }

  .book-deluxe-card {
    grid-template-rows: 220px auto;
  }

  .book-room-carousel,
  .book-room-carousel img {
    min-height: 220px;
  }

  .book-apartment-card {
    box-shadow: 0 18px 44px rgba(27, 48, 50, 0.12);
  }

  .book-apartment-actions {
    align-items: flex-start;
  }

  .book-apartment-card .book-inclusions {
    grid-template-columns: 1fr;
  }

  .book-apartment-media {
    min-height: 260px;
  }

  .book-room-card > img,
  .book-apartment-media img {
    height: 220px;
  }
}

/* About Us editorial page */
.about-page {
  min-height: 100vh;
  color: #24495a;
  background:
    linear-gradient(180deg, rgba(216, 246, 252, 0.66), rgba(111, 199, 222, 0.42)),
    url("images/sections-about-hero-water.jpeg") center top / cover fixed no-repeat;
}

.about-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.22), transparent 26%),
    linear-gradient(180deg, rgba(111, 199, 222, 0.28), rgba(66, 171, 200, 0.18));
  opacity: 1;
  pointer-events: none;
}

.about-page .site-header.is-scrolled {
  background: rgba(245, 252, 253, 0.9);
}

.about-main {
  width: min(100% - 42px, 1180px);
  margin: 0 auto;
  padding-top: 118px;
}

.about-eyebrow {
  margin: 0 0 12px;
  color: #42abc8;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.about-hero,
.about-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.82fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}

.about-hero {
  min-height: 670px;
  padding: 44px 0 72px;
}

.about-hero-copy h1 {
  max-width: 7.2ch;
  color: #24495a;
  font-size: clamp(4.3rem, 8vw, 8.4rem);
  line-height: 0.9;
}

.about-hero-copy p:not(.about-eyebrow) {
  max-width: 430px;
  color: rgba(36, 73, 90, 0.68);
  line-height: 1.7;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 18px;
  padding: 0 22px;
  border-radius: 999px;
  color: #24495a;
  background: linear-gradient(135deg, #d8f6fc, #bfeaf6);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-hero-card,
.about-story figure {
  margin: 0;
  overflow: hidden;
  box-shadow: 0 26px 80px rgba(36, 73, 90, 0.14);
}

.about-hero-card {
  width: min(420px, 100%);
  justify-self: center;
  transform: translateY(28px);
}

.about-hero-card img,
.about-story img,
.about-mini-grid img,
.about-landscape-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-card img {
  aspect-ratio: 4 / 5.1;
}

.about-story {
  padding: 42px 0 76px;
}

.about-story figure {
  min-height: 340px;
  width: min(460px, 100%);
  justify-self: center;
}

.about-glass-panel {
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(111, 199, 222, 0.22);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 70px rgba(36, 73, 90, 0.12);
  backdrop-filter: blur(14px);
}

.about-glass-panel h2,
.about-section-head h2,
.about-ready h2 {
  color: #24495a;
  font-size: clamp(2.2rem, 4.6vw, 5rem);
  line-height: 0.98;
}

.about-glass-panel p:not(.about-eyebrow),
.about-ready p {
  color: rgba(36, 73, 90, 0.68);
  line-height: 1.7;
}

.about-believe,
.about-day,
.about-soul,
.about-ready {
  padding: clamp(52px, 7vw, 92px) 0;
  text-align: center;
}

.about-section-head {
  max-width: 680px;
  margin: 0 auto 32px;
}

.about-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.about-value-grid article {
  min-height: 150px;
  padding: 24px 18px;
  border: 1px solid rgba(111, 199, 222, 0.24);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(10px);
}

.about-value-grid span {
  color: #42abc8;
  font-size: 0.7rem;
  font-weight: 900;
}

.about-value-grid h3 {
  margin: 12px 0 10px;
  color: #24495a;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  font-weight: 900;
}

.about-value-grid p {
  margin: 0;
  color: rgba(36, 73, 90, 0.66);
  font-size: 0.82rem;
  line-height: 1.55;
}

.about-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}

.about-mini-grid img {
  aspect-ratio: 4 / 3;
  box-shadow: 0 18px 50px rgba(36, 73, 90, 0.14);
}

.about-landscape-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 880px;
  margin: 0 auto 8px;
}

.about-landscape-grid img {
  aspect-ratio: 16 / 10;
  box-shadow: 0 18px 50px rgba(36, 73, 90, 0.14);
}

.about-ready {
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 110px;
}

.about-ready h2 {
  max-width: 620px;
  margin: 0 auto;
}

.about-footer {
  background: #bfeaf6;
}

@media (max-width: 980px) {
  .about-hero,
  .about-story {
    grid-template-columns: 1fr;
  }

  .about-hero {
    min-height: 0;
  }

  .about-hero-card {
    transform: none;
  }

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

@media (max-width: 680px) {
  .about-main {
    width: min(100% - 32px, 1180px);
    padding-top: 108px;
  }

  .about-hero-copy h1 {
    font-size: clamp(3.9rem, 17vw, 5.7rem);
  }

  .about-value-grid,
  .about-mini-grid,
  .about-landscape-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header,
  .book-page .site-header,
  .piscine-page .site-header {
    top: 14px;
    width: calc(100% - 36px);
    min-height: 36px;
    display: flex;
    grid-template-columns: none;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    gap: 8px;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-header.is-scrolled,
  .book-page .site-header.is-scrolled,
  .piscine-page .site-header.is-scrolled {
    top: 8px;
    width: calc(100% - 28px);
    min-height: 40px;
    padding: 3px 4px;
    border: 1px solid rgba(111, 199, 222, 0.2);
    background: rgba(245, 252, 253, 0.78);
    box-shadow: 0 10px 30px rgba(36, 73, 90, 0.08);
    backdrop-filter: blur(12px);
  }

  .brand,
  .book-page .brand,
  .site-header.is-scrolled .brand {
    width: 56px;
    margin-right: auto;
  }

  .menu-toggle {
    flex: 0 0 36px;
    order: 3;
    width: 36px;
    height: 36px;
    padding: 8px;
    border-color: rgba(111, 199, 222, 0.28);
    background: rgba(245, 252, 253, 0.72);
  }

  .menu-toggle span {
    height: 2px;
    margin: 3px 0;
  }

  .header-actions {
    position: static;
    flex: 0 0 auto;
    order: 2;
    display: flex;
    align-items: center;
    gap: 0;
  }

  .lang-toggle {
    width: 70px;
    min-height: 36px;
    padding: 0 8px;
    border: 1px solid rgba(111, 199, 222, 0.28);
    background: rgba(245, 252, 253, 0.68);
    box-shadow: 0 8px 18px rgba(36, 73, 90, 0.06);
    color: #24495a;
    font-size: 0.5rem;
    letter-spacing: 0.12em;
  }

  .home-site .brand {
    width: 64px;
  }

  .home-site .menu-toggle,
  .home-site .lang-toggle {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.08);
    color: white;
    box-shadow: none;
  }

  .home-site .menu-toggle span {
    background: white;
  }

  body.menu-open .nav-links {
    top: calc(100% + 10px);
    padding: 10px 16px;
    border: 1px solid rgba(111, 199, 222, 0.24);
    background: rgba(247, 253, 253, 0.96);
  }

  body.menu-open .nav-links a {
    padding: 10px 0;
    font-size: 0.62rem;
  }

  .home-hero {
    min-height: 100svh;
    align-items: stretch;
    background: #061d27;
  }

  .home-hero::before {
    background: transparent;
  }

  .home-hero-copy {
    width: 100%;
    min-height: 100svh;
    justify-content: center;
    padding: 118px 23px 78px;
  }

  .home-hero-copy h1 {
    position: relative;
    isolation: isolate;
    max-width: 5.9ch;
    transform: translateY(-88px);
    color: white;
    font-size: clamp(3.8rem, 16vw, 5.15rem);
    line-height: 0.86;
    text-shadow: 0 12px 32px rgba(2, 24, 34, 0.52);
  }

  .home-hero-copy h1::before {
    content: "";
    position: absolute;
    inset: -18px -20px -8px -18px;
    z-index: -1;
    background: linear-gradient(90deg, rgba(4, 24, 32, 0.72), rgba(4, 24, 32, 0.34) 72%, transparent);
    filter: blur(4px);
  }

  .home-hero-copy .hero-accent {
    color: #81d8ef;
  }

  .home-hero-copy h1::after {
    content: "";
    display: block;
    width: 74px;
    height: 12px;
    margin: 14px 0 0;
    background:
      linear-gradient(90deg, transparent 0 18px, rgba(111, 199, 222, 0.82) 18px 56px, transparent 56px 100%),
      radial-gradient(circle at center, rgba(111, 199, 222, 0.92) 0 2px, transparent 3px);
    background-size: 74px 1px, 12px 12px;
    background-position: center, center;
    background-repeat: no-repeat;
  }

  .home-hero-lead,
  .home-hero-sub,
  .home-hero-features,
  .home-hero-copy .home-button {
    display: none;
  }

  .home-hero-lead,
  .home-hero-sub {
    max-width: 310px;
    color: white;
    text-shadow: 0 12px 28px rgba(2, 24, 34, 0.24);
  }

  .home-hero-lead {
    margin: 17px 0 0;
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .home-hero-sub {
    max-width: 285px;
    margin: 10px 0 22px;
    font-size: 0.68rem;
    line-height: 1.45;
  }

  .home-hero-features {
    gap: 18px;
    align-items: flex-end;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.92);
  }

  .home-hero-features span {
    position: relative;
    display: grid;
    gap: 7px;
    min-width: 54px;
    font-size: 0.58rem;
    line-height: 1.12;
    text-align: center;
    text-shadow: 0 8px 18px rgba(2, 24, 34, 0.28);
  }

  .home-hero-features span::before {
    content: "";
    justify-self: center;
    width: 23px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-top: 0;
  }

  .home-hero-features .feature-pool::before {
    height: 20px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.78);
    background:
      radial-gradient(circle, rgba(255, 255, 255, 0.78) 0 1px, transparent 2px) 2px 4px / 6px 6px repeat-x,
      linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)) center 12px / 18px 1px no-repeat;
  }

  .home-hero-features .feature-restaurant::before {
    border-radius: 12px 12px 2px 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.72);
  }

  .home-hero-features .feature-stay::before {
    width: 28px;
    height: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 2px;
  }

  .home-hero-copy .home-button {
    width: min(100%, 148px);
    min-height: 50px;
    padding: 0 13px;
    justify-content: space-between;
    border-color: #8fd3eb;
    background: #8fd3eb;
    color: white;
    font-size: 0.66rem;
  }

  .home-hero-copy .home-button::after {
    content: "->";
    margin-left: 14px;
    font-size: 0.9rem;
  }

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

  .home-about {
    background: linear-gradient(180deg, rgba(47, 147, 174, 0.46), rgba(31, 125, 154, 0.5));
    backdrop-filter: blur(1px);
  }

  .home-about .home-eyebrow,
  .home-about h2,
  .home-about .home-section-text > p:not(.home-eyebrow),
  .home-about .home-stats span {
    color: white;
    text-shadow: 0 10px 24px rgba(20, 80, 96, 0.2);
  }

  .home-about .home-stats span {
    border-top-color: rgba(255, 255, 255, 0.42);
  }

  .book-hero {
    min-height: 48vw;
  }
}
