:root {
  color-scheme: light;
  --page: #f5f7f3;
  --surface: #ffffff;
  --ink: #082c35;
  --muted: #52666b;
  --line: rgba(8, 44, 53, 0.18);
  --ocean: #006f7d;
  --ocean-deep: #073c48;
  --pool: #23b8cf;
  --sun: #ffd447;
  --coral: #ff6854;
  --white: #ffffff;
  --display: "Bricolage Grotesque", sans-serif;
  --body: "DM Sans", sans-serif;
  --header-height: 78px;
  --edge: 20px;
  --max: 1440px;
  --content-max: calc(var(--max) - (var(--edge) * 2));
  --grid-gutter: max(var(--edge), calc((100vw - var(--content-max)) / 2));
  --ease: 240ms ease;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --page: #071d23;
  --surface: #0d2b33;
  --ink: #f1f8f6;
  --muted: #b4c4c5;
  --line: rgba(241, 248, 246, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.lightbox-open,
body.video-modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

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

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

button {
  border: 0;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.98;
}

::selection {
  background: var(--sun);
  color: #082c35;
}

:focus-visible {
  outline: 2px solid var(--sun);
  outline-offset: 2px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  background: var(--sun);
  color: #082c35;
  padding: 10px 14px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  transition: background var(--ease), color var(--ease), box-shadow var(--ease);
}

.site-header.is-scrolled {
  background: color-mix(in srgb, var(--page) 94%, transparent);
  box-shadow: 0 1px 0 var(--line);
  color: var(--ink);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.header-shell {
  width: min(100%, var(--max));
  height: 100%;
  margin: 0 auto;
  padding: 8px var(--edge);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
}

.brand {
  width: 102px;
  height: 56px;
  overflow: hidden;
  flex: 0 0 auto;
}

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

.desktop-nav {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
}

.language-switch a {
  opacity: 0.58;
  transition: opacity var(--ease);
}

.language-switch a[aria-current="true"],
.language-switch a:hover {
  opacity: 1;
}

.icon-button,
.menu-button,
.menu-close {
  width: 42px;
  height: 42px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.icon-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.theme-icon--moon {
  display: none;
}

html[data-theme="dark"] .theme-icon--sun {
  display: none;
}

html[data-theme="dark"] .theme-icon--moon {
  display: block;
}

.header-map {
  display: none;
}

.menu-button {
  position: relative;
  border-color: currentColor;
}

.menu-button span {
  position: absolute;
  width: 16px;
  height: 1.5px;
  background: currentColor;
}

.menu-button span:first-child {
  transform: translateY(-3px);
}

.menu-button span:last-child {
  transform: translateY(3px);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu {
  position: fixed;
  z-index: 300;
  inset: 0;
  background: var(--ocean-deep);
  color: var(--white);
}

.mobile-menu__panel {
  min-height: 100%;
  padding: 24px var(--edge) max(24px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
}

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.mobile-menu__brand {
  width: 116px;
  height: 64px;
  display: block;
  flex: 0 0 auto;
}

.mobile-menu__brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu-close {
  border-color: rgba(255, 255, 255, 0.6);
}

.menu-close span,
.menu-close span::after {
  width: 18px;
  height: 1.5px;
  display: block;
  background: currentColor;
  transform: rotate(45deg);
}

.menu-close span::after {
  content: "";
  transform: rotate(90deg);
}

.mobile-nav {
  margin: 44px 0;
  display: flex;
  flex-direction: column;
}

.mobile-nav a {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--display);
  font-size: 32px;
  font-weight: 650;
  line-height: 1.08;
}

.mobile-nav a[aria-current="page"] {
  color: var(--sun);
}

.mobile-menu__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.action {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--ease), background var(--ease), color var(--ease);
}

.action svg,
.header-map svg,
.section-head a svg,
.experience-list svg,
.menu-categories svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.action:hover {
  transform: translateY(-2px);
}

.action--sun {
  background: var(--sun);
  color: #082c35;
}

.action--glass {
  border-color: rgba(255, 255, 255, 0.66);
  background: rgba(0, 0, 0, 0.18);
  color: var(--white);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.action--glass svg {
  fill: currentColor;
}

.action--ocean {
  background: var(--ocean);
  color: var(--white);
}

.action--whatsapp {
  background: #25d366;
  color: #062f1a;
}

.action--whatsapp:hover {
  background: #20bd5a;
}

.action--whatsapp svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.visual-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #083542;
  color: var(--white);
}

.visual-hero--home {
  min-height: calc(100svh - 24px);
}

.visual-hero--page {
  min-height: 620px;
  height: 78svh;
  max-height: 860px;
}

.visual-hero__image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-hero--home .visual-hero__image {
  object-position: 58% center;
}

.visual-hero--about .visual-hero__image {
  object-position: center 50%;
  filter: blur(1.2px) brightness(0.94) saturate(0.9);
  transform: scale(1.012);
}

.visual-hero--menu .visual-hero__image,
.visual-hero--contact .visual-hero__image {
  object-position: 60% center;
}

.visual-hero--services .visual-hero__image,
.visual-hero--gallery .visual-hero__image {
  object-position: center 54%;
}

.visual-hero__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: rgba(2, 27, 34, 0.44);
}

.hero-shell {
  width: min(100%, var(--max));
  min-height: inherit;
  height: 100%;
  margin: 0 auto;
  padding: calc(var(--header-height) + 70px) var(--edge) 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.visual-hero--page .hero-shell {
  padding-bottom: 62px;
}

.visual-hero--page .visual-hero__shade {
  background: rgba(2, 27, 34, 0.5);
}

.visual-hero--about .visual-hero__shade {
  background: rgba(2, 27, 34, 0.4);
}

.hero-copy {
  width: min(100%, 960px);
}

.hero-kicker,
.section-kicker {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-kicker {
  margin-bottom: 18px;
}

.hero-copy h1 {
  max-width: 900px;
  font-size: 58px;
  line-height: 0.9;
}

.hero-copy h1 em {
  color: var(--sun);
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 5px;
  text-underline-offset: 8px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-rail {
  margin-top: 48px;
  padding-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
}

.hero-rail a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-rail > a:first-child > span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero-rail svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.hero-rail__socials {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero-rail__socials a:last-child svg {
  fill: currentColor;
  stroke: none;
}

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

.video-modal {
  position: fixed;
  z-index: 700;
  inset: 0;
  padding: 20px;
  display: grid;
  place-items: center;
  background: rgba(1, 19, 24, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.video-modal__dialog {
  width: min(1120px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #031920;
  color: var(--white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.video-modal__bar {
  min-height: 60px;
  padding: 0 14px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
}

.video-modal__close {
  position: relative;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.video-modal__close::before,
.video-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}

.video-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.video-modal__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.word-band {
  padding: 40px var(--grid-gutter);
  display: grid;
  gap: 4px;
  background: var(--sun);
  color: #082c35;
}

.word-band p {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  font-family: var(--display);
  font-size: 44px;
  font-weight: 800;
  line-height: 0.94;
}

.visual-section,
.gallery-page {
  padding: 84px var(--edge);
  container-type: inline-size;
}

.section-head {
  width: min(100%, var(--content-max));
  margin: 0 auto 38px;
  display: grid;
  align-items: end;
  gap: 14px;
}

.section-head h2 {
  max-width: 760px;
  font-size: 46px;
}

.section-head > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  border-bottom: 1px solid currentColor;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
}

.photo-grid {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.photo {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #0c3b46;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.photo-grid--showcase .photo:nth-child(n + 4) {
  display: none;
}

.photo-grid--large .photo {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.photo span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  background: rgba(2, 27, 34, 0.72);
  color: var(--white);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
}

.photo i {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(2, 27, 34, 0.32);
  color: var(--white);
  font-family: var(--display);
  font-size: 23px;
  font-style: normal;
}

.photo:hover img {
  transform: scale(1.035);
}

.experience-band {
  padding: 80px var(--grid-gutter);
  background: var(--sun);
  color: #082c35;
}

.experience-intro,
.experience-list {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.experience-intro h2 {
  margin-top: 10px;
  font-size: 48px;
}

.experience-list {
  margin-top: 44px;
  border-top: 2px solid currentColor;
}

.experience-list a {
  min-height: 82px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(8, 44, 53, 0.38);
}

.experience-list span {
  font-size: 12px;
  font-weight: 700;
}

.experience-list strong {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
}

.amenity-grid {
  width: 100%;
  margin: 44px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 22px;
  border-top: 2px solid currentColor;
  list-style: none;
}

.amenity-item {
  min-width: 0;
  min-height: 92px;
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid rgba(8, 44, 53, 0.34);
  font-family: var(--display);
  transition: transform var(--ease);
}

a.amenity-item:hover {
  transform: translateX(4px);
}

.amenity-item__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.amenity-item__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.amenity-item strong {
  min-width: 0;
  font-size: 18px;
  line-height: 1.08;
}

.menu-scene,
.image-slogan {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  color: var(--white);
}

.menu-scene > img,
.image-slogan > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-scene__shade,
.image-slogan > div {
  position: absolute;
  inset: 0;
  background: rgba(1, 26, 33, 0.45);
}

.menu-scene__copy {
  position: relative;
  width: min(100%, var(--max));
  min-height: 700px;
  margin: 0 auto;
  padding: 80px var(--edge);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.menu-scene__copy h2 {
  width: min(100%, 760px);
  margin-top: 14px;
  font-size: 54px;
}

.menu-scene__words {
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.menu-scene__words span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
}

.reviews-location {
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.76);
  --line: rgba(255, 255, 255, 0.24);
  min-height: 500px;
  padding: 72px var(--edge) 72px var(--grid-gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ocean);
  color: var(--ink);
}

.reviews-location .section-kicker {
  color: var(--sun);
}

.reviews-location h2 {
  max-width: 620px;
  margin-top: 12px;
  font-size: 48px;
}

.reviews-stars {
  display: flex;
  gap: 5px;
  color: var(--sun);
}

.reviews-location .reviews-stars {
  margin-top: 28px;
}

.reviews-stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.reviews-location__prompt {
  max-width: 460px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
}

.reviews-location__actions {
  margin-top: 26px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 22px;
}

.reviews-location__all {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
}

.reviews-location__all svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform var(--ease);
}

.reviews-location__all:hover svg {
  transform: translateX(3px);
}

.reviews-location > .reviews-score {
  margin-top: 30px;
}

.reviews-location .review-grid {
  display: block;
  overflow: visible;
}

.reviews-location .review-grid:empty {
  display: none;
}

.reviews-location .review-card {
  min-height: 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  border-left: 0;
}

.reviews-location .review-card > p {
  margin-top: 18px;
  -webkit-line-clamp: 3;
}

.reviews-location .review-card > time {
  padding-top: 16px;
}

.reviews-score {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.reviews-score strong {
  font-family: var(--display);
  font-size: 42px;
  line-height: 0.9;
}

.reviews-score span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.review-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 84vw);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
}

.review-card {
  min-height: 260px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  border-left: 1px solid var(--line);
  background: transparent;
}

.review-card:first-child {
  border-left: 0;
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  border-radius: 50%;
  background: var(--sun);
  color: #082c35;
  font-family: var(--display);
  font-weight: 800;
}

.review-card__author {
  min-width: 0;
}

.review-card__author > a,
.review-card__author > strong {
  display: block;
  overflow: hidden;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-card__stars {
  display: block;
  margin-top: 2px;
  color: #f7b500;
  font-size: 15px;
  line-height: 1;
}

.review-card > p {
  margin-top: 24px;
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.review-card > time {
  margin-top: auto;
  padding-top: 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.reviews-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.location-band {
  display: grid;
  background: var(--surface);
}

.location-copy {
  padding: 78px var(--edge) 78px var(--grid-gutter);
}

.location-copy h2 {
  max-width: 660px;
  margin-top: 12px;
  font-size: 46px;
}

.location-copy > p:not(.section-kicker) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
}

.location-links {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.location-links > a:not(.action) {
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.map-frame {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: #061d24;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  filter: invert(92%) hue-rotate(180deg) saturate(0.72) brightness(0.78) contrast(1.16);
}

.map-direction {
  position: absolute;
  z-index: 2;
  bottom: 82px;
  right: 20px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.final-line {
  padding: 64px var(--grid-gutter);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  background: var(--coral);
  color: #1b272a;
}

.social-band {
  padding: 64px var(--grid-gutter);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  background: var(--sun);
  color: #082c35;
}

.social-band h2 {
  max-width: 760px;
  font-size: 46px;
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-actions a {
  min-height: 52px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(8, 44, 53, 0.72);
  border-radius: 2px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  transition: background-color var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
}

.social-actions a:hover {
  transform: translateY(-2px);
}

.social-actions a[data-network="instagram"]:hover,
.social-actions a[data-network="instagram"]:focus-visible {
  border-color: #dd2a7b;
  background: linear-gradient(135deg, #f58529, #dd2a7b 55%, #8134af);
  color: var(--white);
}

.social-actions a[data-network="facebook"]:hover,
.social-actions a[data-network="facebook"]:focus-visible {
  border-color: #1877f2;
  background: #1877f2;
  color: var(--white);
}

.social-actions svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-actions a[data-network="facebook"] svg:first-child {
  fill: currentColor;
  stroke: none;
}

.final-line h2 {
  max-width: 930px;
  font-family: var(--display);
  font-size: 46px;
  font-weight: 800;
  line-height: 0.98;
}

.site-footer {
  padding: 0 var(--edge) 24px;
  border-top: 4px solid var(--sun);
  background: #052f39;
  color: var(--white);
}

.footer-cta,
.footer-main,
.footer-bottom {
  width: min(100%, var(--content-max));
  margin: 0 auto;
}

.footer-cta {
  padding: 58px 0 46px;
  display: grid;
  align-items: end;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-cta .section-kicker {
  color: var(--sun);
}

.footer-cta h2 {
  max-width: 760px;
  margin-top: 14px;
  font-size: 48px;
  line-height: 0.98;
}

.footer-cta .action {
  width: max-content;
}

.footer-main {
  padding: 42px 0;
  display: grid;
  gap: 38px;
}

.footer-brand {
  display: none;
}

.brand--footer {
  display: block;
  width: 144px;
  height: 78px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}

.footer-nav a {
  width: max-content;
  border-bottom: 1px solid transparent;
  font-weight: 600;
}

.footer-nav a:hover {
  border-color: currentColor;
}

.footer-connect,
.footer-contact {
  display: grid;
  gap: 18px;
}

.footer-contact a {
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-contact span {
  color: var(--sun);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-contact strong {
  font-size: 16px;
}

.footer-bottom {
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-legal a {
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease), color var(--ease);
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  border-color: currentColor;
  color: var(--white);
}

.legal-hero {
  padding: calc(var(--header-height) + 68px) var(--grid-gutter) 72px;
  background: var(--ocean-deep);
  color: var(--white);
}

.legal-hero__inner {
  width: min(100%, 980px);
}

.legal-hero .section-kicker {
  color: var(--sun);
}

.legal-hero h1 {
  max-width: 900px;
  margin-top: 16px;
  font-size: 48px;
  line-height: 0.98;
}

.legal-hero__inner > p:last-child {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.legal-document {
  padding: 58px var(--grid-gutter) 96px;
  background: var(--page);
}

.legal-document__inner {
  width: min(100%, 920px);
}

.legal-document__meta {
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.legal-section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.legal-section:first-of-type {
  border-top: 0;
}

.legal-section h2 {
  margin-bottom: 16px;
  font-size: 28px;
  line-height: 1.08;
}

.legal-section p,
.legal-section li {
  max-width: 78ch;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.legal-section p + p {
  margin-top: 14px;
}

.legal-section ul {
  margin: 18px 0 0;
  padding-left: 22px;
}

.legal-section li + li {
  margin-top: 9px;
}

.legal-section a {
  color: var(--ocean);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.statement {
  padding: 100px var(--edge);
  text-align: center;
}

.statement h2 {
  max-width: 900px;
  margin: 16px auto 0;
  font-size: 52px;
}

.statement > p:last-child {
  margin-top: 18px;
  color: var(--muted);
  font-size: 21px;
  font-weight: 600;
}

.story-split {
  display: grid;
  background: var(--surface);
}

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

.story-split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
  transform: none;
}

.story-split > div {
  padding: 80px var(--edge);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.story-split h2 {
  margin-top: 14px;
  font-size: 48px;
}

.story-split > div > p:not(.section-kicker) {
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 18px;
}

.menu-categories {
  padding: 90px var(--edge);
}

.menu-categories > p,
.menu-categories > div,
.menu-categories > .action {
  width: min(100%, var(--content-max));
  margin-right: auto;
  margin-left: auto;
}

.menu-categories > p {
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
}

.menu-categories > div {
  border-top: 2px solid currentColor;
}

.menu-categories > div > a {
  min-height: 130px;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
}

.menu-categories h2 {
  font-size: 42px;
}

.menu-categories > .action {
  width: max-content;
  margin-top: 34px;
  margin-left: max(0px, calc((100% - var(--content-max)) / 2));
}

.image-slogan {
  min-height: 620px;
}

.image-slogan h2 {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 90px var(--edge);
  display: flex;
  align-items: flex-end;
  min-height: 620px;
  font-size: 50px;
}

.services-list {
  padding: 82px var(--grid-gutter);
  background: var(--surface);
}

.services-list__intro,
.facility-catalog {
  width: min(100%, var(--content-max));
  margin: 0 auto;
}

.services-list__intro {
  margin-bottom: 44px;
  display: grid;
  gap: 22px;
}

.services-list__intro h2 {
  max-width: 760px;
  margin-top: 10px;
  font-size: 48px;
}

.services-list__intro > p {
  max-width: 430px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.facility-catalog {
  padding: 0;
  border-top: 2px solid currentColor;
  list-style: none;
}

.facility-card {
  min-height: 142px;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 30px 54px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.facility-card__number {
  align-self: start;
  padding-top: 5px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 600;
}

.facility-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sun);
  color: #082c35;
}

.facility-card:nth-child(3n + 2) .facility-card__icon {
  background: var(--pool);
}

.facility-card:nth-child(3n) .facility-card__icon {
  background: var(--coral);
}

.facility-card__icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.facility-card h3 {
  font-size: 25px;
  line-height: 1.02;
}

.facility-card p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.facility-scene {
  display: grid;
  background: var(--sun);
  color: #082c35;
}

.facility-scene figure {
  min-height: 370px;
  overflow: hidden;
}

.facility-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.facility-scene__copy {
  min-height: 430px;
  padding: 72px var(--grid-gutter);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.facility-scene__copy h2 {
  margin-top: 16px;
  font-size: 54px;
}

.facility-scene__copy > p:last-child {
  margin-top: 26px;
  font-size: 18px;
  font-weight: 700;
}

.gallery-page .section-head {
  margin-bottom: 42px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  z-index: 500;
  inset: 0;
  padding: 70px 18px 26px;
  display: grid;
  place-items: center;
  background: rgba(1, 19, 24, 0.96);
  color: var(--white);
}

.lightbox__figure {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  display: grid;
  gap: 12px;
}

.lightbox__image {
  max-width: 100%;
  max-height: 74vh;
  object-fit: contain;
}

.lightbox__caption {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.lightbox__close {
  top: 16px;
  right: 16px;
}

.lightbox__close span,
.lightbox__close span::after {
  width: 18px;
  height: 1.5px;
  display: block;
  background: currentColor;
  transform: rotate(45deg);
}

.lightbox__close span::after {
  content: "";
  transform: rotate(90deg);
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__nav::before {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.lightbox__nav--prev {
  left: 12px;
}

.lightbox__nav--prev::before {
  transform: rotate(-135deg);
}

.lightbox__nav--next {
  right: 12px;
}

.lightbox__nav--next::before {
  transform: rotate(45deg);
}

@container (min-width: 760px) {
  .photo-grid--showcase {
    grid-template-columns: 1.35fr 0.85fr;
    grid-template-rows: 300px 410px;
  }

  .photo-grid--showcase .photo {
    aspect-ratio: auto;
  }

  .photo-grid--showcase .photo:nth-child(1) {
    grid-row: 1 / 3;
  }

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

@media (max-width: 719px) {
  .visual-hero--page .visual-hero__image {
    object-position: center;
  }

  .visual-section,
  .gallery-page {
    padding-right: var(--edge);
    padding-left: var(--edge);
  }

  .visual-section .section-head,
  .gallery-page .section-head,
  .photo-grid {
    width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .photo-grid .photo,
  .photo-grid .photo img {
    width: 100%;
    max-width: 100%;
  }

  .photo-grid .photo img {
    object-position: center;
  }
}

@media (min-width: 720px) {
  :root {
    --edge: 40px;
    --header-height: 86px;
  }

  .brand {
    width: 116px;
    height: 64px;
  }

  .header-map {
    min-height: 42px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid currentColor;
    font-family: var(--display);
    font-size: 12px;
    font-weight: 700;
  }

  .legal-hero {
    padding-top: calc(var(--header-height) + 92px);
    padding-bottom: 96px;
  }

  .legal-hero h1 {
    font-size: 76px;
  }

  .legal-document {
    padding-top: 76px;
    padding-bottom: 130px;
  }

  .legal-section {
    padding: 42px 0;
  }

  .legal-section h2 {
    font-size: 34px;
  }

  .hero-copy h1 {
    font-size: 84px;
  }

  .visual-hero--page .hero-copy h1 {
    max-width: 1050px;
    font-size: 76px;
  }

  .hero-shell {
    padding-bottom: 46px;
  }

  .word-band {
    padding-top: 54px;
    padding-bottom: 54px;
    grid-template-columns: repeat(3, 1fr);
  }

  .word-band p {
    font-size: 58px;
  }

  .section-head {
    grid-template-columns: 1fr auto;
  }

  .section-head .section-kicker {
    grid-column: 1 / -1;
  }

  .section-head h2,
  .experience-intro h2,
  .location-copy h2,
  .final-line h2 {
    font-size: 64px;
  }

  .experience-band {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(400px, 1.22fr);
    gap: 70px;
  }

  .experience-intro,
  .experience-list {
    width: 100%;
  }

  .experience-list {
    margin-top: 0;
  }

  .experience-band > .amenity-grid {
    margin-top: 0;
  }

  .experience-list strong {
    font-size: 36px;
  }

  .services-list__intro {
    margin-bottom: 58px;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: end;
    gap: 60px;
  }

  .services-list__intro h2 {
    font-size: 64px;
  }

  .services-list__intro > p {
    padding-bottom: 6px;
    font-size: 20px;
  }

  .facility-catalog {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 1px solid var(--line);
  }

  .facility-card {
    min-height: 230px;
    padding: 26px;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr auto;
    align-items: start;
    gap: 12px 20px;
    border-right: 1px solid var(--line);
  }

  .facility-card__number {
    padding-top: 0;
  }

  .facility-card__icon {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .facility-card > div {
    grid-column: 1 / -1;
    align-self: end;
  }

  .facility-card h3 {
    font-size: 30px;
  }

  .facility-card p {
    max-width: 240px;
    font-size: 15px;
  }

  .facility-scene {
    grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  }

  .facility-scene figure,
  .facility-scene__copy {
    min-height: 620px;
  }

  .facility-scene__copy {
    padding: 80px clamp(48px, 5vw, 96px);
  }

  .facility-scene__copy h2 {
    font-size: 72px;
  }

  .menu-scene__copy h2 {
    font-size: 72px;
  }

  .reviews-location {
    min-height: 620px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .reviews-location h2 {
    font-size: 64px;
  }

  .review-grid {
    grid-auto-flow: initial;
    grid-auto-columns: initial;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
  }

  .location-band {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .location-copy {
    padding: 96px var(--edge) 96px var(--grid-gutter);
    align-self: center;
  }

  .map-frame {
    min-height: 620px;
  }

  .final-line {
    min-height: 220px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .social-band {
    min-height: 220px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .social-band h2 {
    font-size: 64px;
  }

  .footer-cta {
    padding-top: 72px;
    padding-bottom: 58px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 56px;
  }

  .footer-cta h2 {
    font-size: 68px;
  }

  .footer-main {
    padding-top: 52px;
    padding-bottom: 52px;
    grid-template-columns: 160px minmax(0, 1fr);
    align-items: start;
    gap: 48px;
  }

  .footer-brand {
    display: block;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
  }

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

  .footer-connect {
    grid-column: 1 / -1;
  }

  .statement h2 {
    font-size: 70px;
  }

  .story-split {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .story-split figure {
    min-height: 740px;
  }

  .story-split h2 {
    font-size: 62px;
  }

  .menu-categories > div > a {
    min-height: 170px;
  }

  .menu-categories h2 {
    font-size: 66px;
  }

  .image-slogan h2 {
    font-size: 72px;
  }

}

@media (min-width: 1120px) {
  :root {
    --edge: 56px;
  }

  .footer-main {
    grid-template-columns: minmax(150px, 0.65fr) minmax(240px, 1fr) minmax(320px, 1.2fr);
    gap: 64px;
  }

  .footer-connect {
    grid-column: auto;
  }

  .header-shell {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }

  .desktop-nav a {
    position: relative;
    padding: 8px 0;
    font-family: var(--display);
    font-size: 14px;
    font-weight: 700;
  }

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

  .desktop-nav a:hover::after,
  .desktop-nav a[aria-current="page"]::after {
    transform: scaleX(1);
  }

  .menu-button {
    display: none;
  }

  .hero-copy h1 {
    font-size: 108px;
  }

  .visual-hero--page .hero-copy h1 {
    font-size: 98px;
  }

  .word-band p {
    font-size: 76px;
  }

  .visual-section,
  .gallery-page,
  .experience-band,
  .menu-categories,
  .services-list {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .services-list__intro h2 {
    font-size: 76px;
  }

  .facility-catalog {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .facility-card {
    min-height: 270px;
    padding: 30px;
  }

  .facility-card h3 {
    font-size: 32px;
  }

  .facility-scene {
    grid-template-columns: minmax(0, 1.35fr) minmax(380px, 0.65fr);
  }

  .facility-scene figure,
  .facility-scene__copy {
    min-height: 700px;
  }

  .facility-scene__copy h2 {
    font-size: clamp(68px, 5vw, 84px);
  }

  .section-head h2,
  .experience-intro h2,
  .location-copy h2,
  .final-line h2 {
    font-size: 76px;
  }

  .social-band h2 {
    font-size: 76px;
  }

  .menu-scene,
  .menu-scene__copy {
    min-height: 780px;
  }

  .menu-scene__copy h2 {
    font-size: 88px;
  }

  .reviews-location h2 {
    font-size: 68px;
  }

  .statement {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .statement h2 {
    font-size: 86px;
  }

  .story-split h2 {
    font-size: 74px;
  }

}

@media (max-width: 420px) {
  .hero-copy h1 {
    font-size: 50px;
  }

  .visual-hero--page .hero-copy h1 {
    font-size: 48px;
  }

  .hero-actions .action {
    width: 100%;
  }

  .theme-button {
    display: none;
  }

  .word-band p {
    font-size: 40px;
  }

  .hero-rail__socials span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .hero-rail__socials {
    gap: 14px;
  }

  .video-modal {
    padding: 10px;
  }

  .section-head h2,
  .experience-intro h2,
  .location-copy h2,
  .final-line h2,
  .statement h2,
  .story-split h2,
  .menu-scene__copy h2,
  .image-slogan h2 {
    font-size: 42px;
  }

  .lightbox__nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
