:root {
  --hm-ink: #071c2f;
  --hm-ink-2: #28445a;
  --hm-sea: #006c9a;
  --hm-sea-dark: #073053;
  --hm-leaf: #4c8a2f;
  --hm-leaf-dark: #256138;
  --hm-gold: #dca544;
  --hm-gold-soft: #f2d17a;
  --hm-coral: #c95e3f;
  --hm-paper: #f7f0df;
  --hm-sand: #fffaf0;
  --hm-mist: #deead6;
  --hm-line: rgba(7, 28, 47, 0.12);
  --hm-shadow: 0 24px 70px rgba(7, 48, 83, 0.2);
  --hm-radius: 10px;
}

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

html {
  scroll-behavior: smooth;
}

.hm-v2 {
  margin: 0;
  background:
    radial-gradient(circle at 8% 4%, rgba(0, 108, 154, 0.14), transparent 30rem),
    radial-gradient(circle at 90% 12%, rgba(220, 165, 68, 0.14), transparent 24rem),
    linear-gradient(180deg, var(--hm-paper), var(--hm-sand));
  color: var(--hm-ink);
  font-family: Georgia, "Times New Roman", serif;
  overflow-x: hidden;
}

.hm-v2 a {
  color: inherit;
  text-decoration: none;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms ease, opacity 220ms ease;
}

.hm-v2 img,
.hm-v2 iframe {
  max-width: 100%;
}

.hm-shell {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.hm-skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--hm-ink);
  color: #fff;
}

.hm-skip:focus {
  top: 1rem;
}

.hm-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: linear-gradient(180deg, rgba(4, 24, 24, 0.52), rgba(4, 24, 24, 0));
  border-bottom: 1px solid transparent;
  color: #fff;
  transition: background 260ms ease, box-shadow 260ms ease, border-color 260ms ease, color 260ms ease;
}

.hm-header.is-scrolled {
  background: rgba(255, 250, 240, 0.78);
  border-color: rgba(7, 48, 83, 0.12);
  box-shadow: 0 18px 46px rgba(7, 48, 83, 0.14);
  color: var(--hm-ink);
  backdrop-filter: blur(18px);
}

.hm-header.is-scrolled .hm-nav {
  min-height: 72px;
}

.hm-header.is-scrolled .hm-brand img {
  width: 68px;
}

.hm-header.is-scrolled .hm-topbar {
  background: rgba(7, 48, 83, 0.9);
}

.hm-topbar {
  background: rgba(7, 28, 47, 0.34);
  color: rgba(255, 250, 240, 0.88);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.86rem;
  backdrop-filter: blur(14px);
}

.hm-topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hm-topbar a,
.hm-topbar span,
.hm-language button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hm-topbar strong {
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.hm-language {
  margin: 0;
}

.hm-language button {
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0.35rem 0.75rem;
  font: inherit;
  cursor: pointer;
}

.hm-nav {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  transition: min-height 260ms ease;
}

.hm-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.hm-brand img {
  width: 84px;
  height: auto;
  object-fit: contain;
  border-radius: 999px;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.28));
  transition: width 260ms ease, filter 260ms ease;
}

.hm-brand span {
  display: grid;
  line-height: 1.05;
}

.hm-brand strong {
  font-size: 1.1rem;
}

.hm-brand small,
.hm-section-head span,
.hm-card__eyebrow,
.hm-kicker {
  color: var(--hm-sea);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hm-header:not(.is-scrolled) .hm-brand small {
  color: rgba(255, 250, 240, 0.78);
}

.hm-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.35rem);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
}

.hm-menu a {
  position: relative;
  padding: 0.35rem 0;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.28);
}

.hm-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2rem;
  height: 2px;
  background: var(--hm-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.hm-menu a:hover {
  color: var(--hm-gold-soft);
}

.hm-menu a:hover::after {
  transform: scaleX(1);
}

.hm-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--hm-line);
  border-radius: 50%;
  background: var(--hm-sand);
  cursor: pointer;
}

.hm-menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: var(--hm-ink);
}

.hm-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.1rem;
  border: 0;
  border-radius: 999px;
  background: var(--hm-gold);
  color: #17221c;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(214, 160, 74, 0.28);
}

.hm-button:hover {
  color: #17221c;
  transform: translateY(-2px);
}

.hm-button--ghost {
  border: 1px solid rgba(255, 250, 240, 0.72);
  background: rgba(255, 250, 240, 0.08);
  color: #fff;
  box-shadow: none;
}

.hm-button--nav {
  min-height: 42px;
  padding-inline: 1rem;
  background: #fff;
  color: var(--hm-sea-dark);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.hm-header.is-scrolled .hm-button--nav {
  background: var(--hm-gold);
  color: #17221c;
  box-shadow: 0 14px 32px rgba(214, 160, 74, 0.28);
}

.hm-hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: end;
  overflow: hidden;
  background-color: var(--hm-sea-dark);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.hm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-image) center / cover no-repeat;
  transform: scale(1.04);
  animation: hmHeroBreath 18s ease-in-out infinite alternate;
}

.hm-hero::after,
.hm-page-hero::after,
.hm-image-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 19, 24, 0.82), rgba(3, 19, 24, 0.24) 58%, rgba(3, 19, 24, 0.16)),
    linear-gradient(180deg, rgba(3, 19, 24, 0.28), rgba(3, 19, 24, 0.78));
}

.hm-hero__content {
  position: relative;
  z-index: 2;
  padding-block: 12.5rem 3.8rem;
}

.hm-hero__crest {
  position: absolute;
  z-index: 3;
  top: 7.2rem;
  left: 50%;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.34);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.18);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.hm-hero__crest img {
  width: 82px;
  height: auto;
  object-fit: contain;
}

.hm-hero h1,
.hm-page-hero h1 {
  max-width: 860px;
  margin: 0.45rem 0 1rem;
  font-size: clamp(3.2rem, 7rem, 7rem);
  line-height: 0.92;
  text-wrap: balance;
}

.hm-hero__slogan {
  margin-top: -0.35rem;
  font-size: clamp(1.7rem, 2.55rem, 2.55rem);
  font-style: italic;
}

.hm-hero p,
.hm-page-hero p {
  max-width: 640px;
  color: rgba(255, 250, 240, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.65;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
}

.hm-hero__actions,
.hm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.hm-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.4rem;
}

.hm-hero__stats span,
.hm-hero__stats a {
  min-width: 130px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 250, 240, 0.26);
  border-radius: var(--hm-radius);
  background: rgba(255, 250, 240, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
}

.hm-hero__stats strong {
  display: block;
  font-size: 1.45rem;
}

.hm-page-hero {
  position: relative;
  min-height: clamp(390px, 56dvh, 600px);
  display: flex;
  align-items: end;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.hm-page-hero__content {
  position: relative;
  z-index: 1;
  padding-block: 7rem 4.5rem;
}

.hm-page-hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.8rem);
}

.hm-section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.hm-section--mist {
  background: var(--hm-mist);
}

.hm-section--dark {
  background: var(--hm-sea-dark);
  color: var(--hm-sand);
}

.hm-section-head {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.hm-section-head--split {
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  align-items: end;
  gap: clamp(1.5rem, 5vw, 4rem);
}

.hm-section-head h2,
.hm-location h2,
.hm-footer__booking strong {
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 4.8rem);
  line-height: 0.98;
  text-wrap: balance;
}

.hm-section-head p,
.hm-card p,
.hm-copy {
  color: var(--hm-ink-2);
  font-size: 1.05rem;
  line-height: 1.72;
}

.hm-section--dark .hm-section-head p,
.hm-section--dark .hm-copy,
.hm-footer p {
  color: rgba(255, 250, 240, 0.78);
}

.hm-grid {
  display: grid;
  gap: 1.15rem;
}

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

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

.hm-editorial-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.hm-card,
.hm-media-card,
.hm-review-card,
.hm-form-panel,
.hm-booking-panel,
.hm-cms {
  border-radius: var(--hm-radius);
  background: rgba(255, 250, 240, 0.92);
  box-shadow: var(--hm-shadow);
}

.hm-media-card {
  overflow: hidden;
}

.hm-media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  transition: transform 650ms ease;
}

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

.hm-card__body,
.hm-media-card__body,
.hm-review-card,
.hm-form-panel,
.hm-booking-panel,
.hm-cms {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.hm-media-card h3,
.hm-card h3,
.hm-review-card h3 {
  margin: 0.35rem 0 0.65rem;
  color: var(--hm-ink);
  font-size: 1.42rem;
}

.hm-price {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(8, 112, 111, 0.12);
  color: var(--hm-sea);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 900;
}

.hm-image-link {
  position: relative;
  min-height: 330px;
  display: block;
  overflow: hidden;
  border-radius: var(--hm-radius);
  color: #fff;
  box-shadow: var(--hm-shadow);
}

.hm-image-link img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  display: block;
  object-fit: cover;
  transition: transform 650ms ease;
}

.hm-image-link:hover img {
  transform: scale(1.05);
}

.hm-image-link span {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 1;
  font-size: 1.35rem;
  font-weight: 800;
}

.hm-list {
  display: grid;
  gap: 1rem;
}

.hm-list-item {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr auto;
  gap: 1.15rem;
  align-items: center;
  padding: 0.9rem;
  border-radius: var(--hm-radius);
  background: rgba(255, 250, 240, 0.92);
  box-shadow: var(--hm-shadow);
}

.hm-list-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--hm-radius) - 2px);
}

.hm-cms {
  color: var(--hm-ink-2);
  line-height: 1.78;
}

.hm-cms img {
  height: auto;
  border-radius: var(--hm-radius);
}

.hm-form-panel .form-control,
.hm-v2 .form-control {
  min-height: 54px;
  border: 1px solid var(--hm-line);
  border-radius: 8px;
  background: #fff;
  color: var(--hm-ink);
}

.hm-form-panel textarea.form-control,
.hm-v2 textarea.form-control {
  min-height: 160px;
}

.hm-booking-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.hm-booking-panel {
  position: sticky;
  top: 128px;
  background:
    linear-gradient(135deg, rgba(7, 63, 66, 0.96), rgba(8, 112, 111, 0.92));
  color: #fff;
}

.hm-booking-panel p {
  color: rgba(255, 250, 240, 0.82);
  line-height: 1.7;
}

.hm-phone-list {
  display: grid;
  gap: 0.7rem;
  margin-block: 1.4rem;
}

.hm-phone-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.08);
  color: #fff;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.hm-score-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.3rem, 4vw, 2.5rem);
  border-radius: var(--hm-radius);
  background: var(--hm-sand);
  box-shadow: var(--hm-shadow);
}

.hm-score-number {
  display: grid;
  align-content: center;
  min-height: 220px;
  padding: 1.2rem;
  border-radius: var(--hm-radius);
  background: linear-gradient(135deg, var(--hm-sea), var(--hm-sea-dark));
  color: #fff;
}

.hm-score-number strong {
  display: block;
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.9;
}

.hm-score-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.85rem;
}

.hm-score-track {
  height: 9px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(8, 112, 111, 0.12);
}

.hm-score-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--hm-gold), var(--hm-sea));
}

.hm-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  background: rgba(8, 112, 111, 0.12);
  color: var(--hm-sea);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 900;
}

.hm-pagination {
  margin-top: 2rem;
  overflow-x: clip;
}

.hm-pagination nav,
.hm-pagination ul.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
}

.hm-pagination .page-link {
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  color: var(--hm-ink);
  background: var(--hm-sand);
  box-shadow: 0 10px 26px rgba(7, 63, 66, 0.12);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  padding: 0.7rem 0.85rem;
  white-space: nowrap;
}

.hm-pagination .page-link svg {
  width: 16px;
  height: 16px;
}

.hm-pagination .page-item.disabled .page-link {
  color: rgba(7, 28, 47, 0.38);
  background: rgba(255, 250, 240, 0.7);
  box-shadow: none;
}

.hm-pagination .page-item.active .page-link {
  background: var(--hm-sea);
  color: #fff;
}

.hm-map-panel,
.hm-video-panel {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--hm-radius);
  background: var(--hm-sea-dark);
  box-shadow: var(--hm-shadow);
}

.hm-video-panel {
  aspect-ratio: 16 / 9;
  min-height: min(760px, 82dvh);
}

.hm-map-panel iframe,
.hm-video-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.hm-location {
  padding-block: clamp(4rem, 8vw, 7rem);
  background:
    linear-gradient(90deg, rgba(8, 112, 111, 0.08), transparent 42%),
    var(--hm-sand);
}

.hm-location__grid {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.9fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.hm-contact-stack {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 800;
}

.hm-contact-stack i {
  color: var(--hm-sea);
}

.hm-footer {
  background: linear-gradient(180deg, #12322f, #0c201d);
  color: rgba(255, 250, 240, 0.82);
  padding-block: 3.5rem 1.3rem;
}

.hm-footer__booking {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: var(--hm-radius);
  background: rgba(255, 250, 240, 0.08);
}

.hm-footer__booking span {
  display: block;
  color: var(--hm-gold);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 900;
}

.hm-footer__booking strong {
  display: block;
  color: #fff;
  font-size: clamp(1.65rem, 4vw, 2.6rem);
}

.hm-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1fr 1.25fr;
  gap: 2rem;
}

.hm-footer__grid > * {
  min-width: 0;
}

.hm-footer h3 {
  color: #fff;
  font-size: 1rem;
}

.hm-footer a {
  display: block;
  color: rgba(255, 250, 240, 0.78);
  margin-bottom: 0.45rem;
  overflow-wrap: anywhere;
}

.hm-footer a:hover {
  color: var(--hm-gold);
}

.hm-trust-badges {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.hm-trust-badges img {
  width: auto;
  max-height: 82px;
  object-fit: contain;
  border-radius: 8px;
}

.hm-weather {
  width: 100%;
  max-width: 100%;
  min-height: 126px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--hm-ink);
}

.hm-weather > div,
.hm-weather iframe {
  width: 100% !important;
  max-width: 100% !important;
}

.hm-weather a {
  color: var(--hm-sea);
  padding: 1rem;
}

.hm-footer__bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 250, 240, 0.12);
  font-size: 0.86rem;
}

.hm-empty {
  padding: 2rem;
  border-radius: var(--hm-radius);
  background: var(--hm-sand);
  box-shadow: var(--hm-shadow);
}

.hm-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.hm-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hm-hero [data-reveal],
.hm-hero .hm-reveal {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.hm-header .hm-button--nav {
  color: var(--hm-sea-dark);
}

:focus-visible {
  outline: 3px solid var(--hm-gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hm-hero::before,
  .hm-hero__video,
  .hm-reel__frame,
  .hm-reel__frame img {
    animation: none !important;
  }

  .hm-hero__video {
    display: none;
  }
}

@media (max-width: 1080px) {
  .hm-menu-toggle {
    display: inline-block;
    justify-self: end;
  }

  .hm-nav {
    grid-template-columns: auto 1fr auto;
  }

  .hm-menu {
    position: fixed;
    inset: 128px 0 auto 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 1rem;
    background: rgba(255, 250, 240, 0.98);
    color: var(--hm-ink);
    border-bottom: 1px solid var(--hm-line);
    box-shadow: var(--hm-shadow);
    transform: translateY(-130%);
    transition: transform 260ms ease;
  }

  .hm-menu.is-open {
    transform: translateY(0);
  }

  .hm-menu a {
    padding: 0.8rem 0.2rem;
    border-bottom: 1px solid var(--hm-line);
    text-shadow: none;
  }
}

@media (max-width: 900px) {
  .hm-grid--2,
  .hm-grid--3,
  .hm-editorial-grid,
  .hm-section-head--split,
  .hm-booking-layout,
  .hm-score-panel,
  .hm-location__grid,
  .hm-footer__grid {
    grid-template-columns: 1fr;
  }

  .hm-list-item {
    grid-template-columns: 1fr;
  }

  .hm-booking-panel {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .hm-shell {
    width: min(100% - 22px, 1180px);
  }

  .hm-topbar__inner,
  .hm-footer__booking,
  .hm-footer__bottom {
    align-items: flex-start;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .hm-topbar__inner > span,
  .hm-brand small,
  .hm-button--nav {
    display: none;
  }

  .hm-brand img {
    width: 68px;
  }

  .hm-hero,
  .hm-page-hero {
    min-height: 540px;
  }

  .hm-hero__content,
  .hm-page-hero__content {
    padding-block: 6.5rem 3.5rem;
  }

  .hm-score-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
}

.hm-hero__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.hm-hero__metrics span,
.hm-trust-list span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.1);
  color: rgba(255, 250, 240, 0.88);
}

.hm-hero__metrics strong {
  color: #fff;
}

.hm-hero-booking {
  width: min(970px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: center;
  gap: 0;
  margin-top: 1.6rem;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.42);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.94);
  color: var(--hm-ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.hm-hero-booking > div {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.7rem;
  align-items: center;
  padding: 0.85rem 1.15rem;
  border-right: 1px solid rgba(7, 48, 83, 0.12);
  font-family: "Trebuchet MS", Verdana, sans-serif;
}

.hm-hero-booking i {
  grid-row: span 2;
  color: var(--hm-sea);
  font-size: 1.35rem;
}

.hm-hero-booking span {
  color: var(--hm-ink-2);
  font-size: 0.8rem;
}

.hm-hero-booking strong {
  color: var(--hm-ink);
  font-size: 0.95rem;
}

.hm-hero-booking > a {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.55rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  background: var(--hm-coral);
  color: #fff;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 900;
  white-space: nowrap;
}

.hm-hero-booking > a:hover {
  background: var(--hm-sea-dark);
  color: #fff;
}

.hm-split-feature,
.hm-detail-layout,
.hm-location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.hm-detail-layout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
}

.hm-stack {
  display: grid;
  gap: 1rem;
}

.hm-list-item > i {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(8, 112, 111, 0.12);
  color: var(--hm-sea);
  font-size: 1.6rem;
}

.hm-social-embed {
  min-height: 340px;
  padding: 1rem;
  border-radius: var(--hm-radius);
  background: var(--hm-sand);
  box-shadow: var(--hm-shadow);
  overflow: hidden;
}

.hm-trust-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.hm-form {
  display: grid;
  gap: 1rem;
}

.hm-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--hm-ink);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
}

.hm-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hm-form input,
.hm-form select,
.hm-form textarea {
  width: 100%;
  border: 1px solid var(--hm-line);
  border-radius: 8px;
  background: #fff;
  color: var(--hm-ink);
  font: inherit;
  font-weight: 500;
  padding: 0.85rem 1rem;
  outline: 0;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.hm-form input::placeholder,
.hm-form textarea::placeholder {
  color: #98a39f;
  font-weight: 400;
  opacity: 1;
}

.hm-form input:focus::placeholder,
.hm-form textarea:focus::placeholder {
  color: #b0b9b5;
}

.hm-form input:focus,
.hm-form select:focus,
.hm-form textarea:focus {
  border-color: var(--hm-sea);
  box-shadow: 0 0 0 4px rgba(8, 112, 111, 0.14);
}

.hm-rating-control {
  display: grid;
  grid-template-columns: minmax(120px, 0.3fr) 1fr 42px;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--hm-line);
}

.hm-rating-control output,
.hm-score-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  background: rgba(8, 112, 111, 0.12);
  color: var(--hm-sea);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.hm-review-card {
  overflow: hidden;
  display: grid;
  gap: 0;
  padding: 0;
}

.hm-review-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hm-review-card > div {
  padding: 1.25rem;
}

.hm-review-card small {
  display: block;
  color: var(--hm-ink-2);
  margin-bottom: 0.8rem;
}

.hm-modal-card {
  border: 0;
  border-radius: var(--hm-radius);
  overflow: hidden;
}

.hm-modal-card .modal-body {
  padding: 0;
}

.hm-modal-card img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

.hm-modal-copy {
  padding: 1.5rem;
}

.hm-certificate-view {
  display: grid;
  place-items: center;
}

.hm-certificate-view img,
.hm-media-card__image--contain img {
  max-width: 100%;
  object-fit: contain;
  background: #fff;
}

.hm-video-panel--tour {
  min-height: min(780px, 82dvh);
}

.hm-actions--inline {
  margin-top: 1.5rem;
}

.hm-event-card {
  max-width: 980px;
  margin-inline: auto;
}

@media (max-width: 900px) {
  .hm-split-feature,
  .hm-detail-layout,
  .hm-location-grid {
    grid-template-columns: 1fr;
  }

  .hm-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hm-rating-control {
    grid-template-columns: 1fr;
  }
}

.hm-section--arrival {
  position: relative;
  overflow: hidden;
}

.hm-section--arrival::before {
  content: "";
  position: absolute;
  inset: 10% auto auto -8rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 165, 68, 0.22), transparent 68%);
  pointer-events: none;
}

.hm-photo-stack {
  position: relative;
  min-height: 520px;
}

.hm-photo-stack figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--hm-radius);
  box-shadow: var(--hm-shadow);
}

.hm-photo-stack img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hm-photo-stack__main {
  height: 470px;
}

.hm-photo-stack__small {
  position: absolute;
  right: -1.4rem;
  bottom: 0;
  width: min(48%, 340px);
  height: 270px;
  border: 8px solid var(--hm-sand);
}

.hm-list--experience {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hm-list--experience .hm-list-item {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.hm-section--pacific,
.hm-section--gallery-index {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 48, 83, 0.96), rgba(0, 108, 154, 0.88)),
    var(--hm-sea-dark);
  color: #fff;
}

.hm-section--pacific::before,
.hm-section--gallery-index::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(242, 209, 122, 0.2), transparent 24rem),
    linear-gradient(115deg, transparent 0 62%, rgba(76, 138, 47, 0.22) 62% 100%);
  pointer-events: none;
}

.hm-section--pacific .hm-shell,
.hm-section--gallery-index .hm-shell {
  position: relative;
  z-index: 1;
}

.hm-section--pacific .hm-section-head p,
.hm-section--gallery-index .hm-section-head p {
  color: rgba(255, 250, 240, 0.78);
}

.hm-gallery-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
}

.hm-gallery-feature,
.hm-gallery-tile,
.hm-album-photo {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--hm-radius);
  color: #fff;
  background: var(--hm-sea-dark);
  box-shadow: var(--hm-shadow);
}

.hm-gallery-feature {
  min-height: 680px;
  padding: clamp(1.3rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hm-gallery-feature img,
.hm-gallery-tile img,
.hm-album-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  transition: transform 750ms ease, filter 320ms ease;
}

.hm-gallery-feature::after,
.hm-gallery-tile::after,
.hm-album-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 22%, rgba(7, 28, 47, 0.78));
}

.hm-gallery-feature > span,
.hm-gallery-feature > strong,
.hm-gallery-feature > small,
.hm-gallery-tile span {
  position: relative;
  z-index: 1;
}

.hm-gallery-feature strong {
  max-width: 11ch;
  margin-top: 0.3rem;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.9;
  text-wrap: balance;
}

.hm-gallery-feature small {
  margin-top: 1rem;
  color: rgba(255, 250, 240, 0.82);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 900;
}

.hm-gallery-river,
.hm-gallery-magazine,
.hm-album-grid {
  display: grid;
  gap: 1rem;
}

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

.hm-gallery-tile {
  min-height: 320px;
}

.hm-gallery-tile:nth-child(2n) {
  min-height: 390px;
}

.hm-gallery-tile span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  font-size: 1.18rem;
  font-weight: 900;
  text-wrap: balance;
}

.hm-gallery-feature:hover img,
.hm-gallery-tile:hover img,
.hm-album-photo:hover img {
  transform: scale(1.055);
  filter: saturate(1.08);
}

.hm-section-action {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.hm-gallery-magazine {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
}

.hm-gallery-magazine .hm-gallery-tile {
  min-height: 360px;
}

.hm-gallery-tile--wide {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 740px;
}

.hm-section--album {
  background:
    radial-gradient(circle at 12% 4%, rgba(0, 108, 154, 0.12), transparent 28rem),
    var(--hm-paper);
}

.hm-album-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
}

.hm-album-photo {
  min-height: 300px;
}

.hm-album-photo span,
.hm-lightbox-link span {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 250, 240, 0.34);
  border-radius: 999px;
  background: rgba(7, 48, 83, 0.58);
  color: #fff;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.lightboxOverlay {
  background: #061827;
  opacity: 0.92;
}

.lightbox .lb-image {
  border: 0;
  border-radius: var(--hm-radius);
}

.lb-data .lb-caption,
.lb-data .lb-number {
  color: rgba(255, 250, 240, 0.86);
  font-family: "Trebuchet MS", Verdana, sans-serif;
}

.lb-data .lb-close {
  opacity: 0.9;
}

.hm-album-photo--large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 620px;
}

.hm-section--reel {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.64), rgba(222, 234, 214, 0.72)),
    var(--hm-mist);
}

.hm-reel {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.5rem, 4.5rem, 4.5rem);
  align-items: center;
}

.hm-reel__story h2 {
  max-width: 560px;
  margin: 0.45rem 0 1rem;
  font-size: clamp(2.35rem, 4.5rem, 4.5rem);
  line-height: 0.98;
  text-wrap: balance;
}

.hm-reel__story p {
  max-width: 570px;
  color: var(--hm-ink-2);
  line-height: 1.78;
}

.hm-reel__stage {
  position: relative;
  min-height: 590px;
  isolation: isolate;
}

.hm-reel__stage::before {
  content: "";
  position: absolute;
  inset: 11% 5% 8% 10%;
  border-radius: 999px;
  background: rgba(0, 108, 154, 0.18);
  filter: blur(34px);
}

.hm-reel__frame {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 250, 240, 0.56);
  border-radius: 14px;
  background: var(--hm-sea-dark);
  box-shadow: 0 24px 70px rgba(7, 48, 83, 0.22);
  animation: hmReelFloat 9s ease-in-out infinite alternate;
}

.hm-reel__frame:nth-child(1) {
  inset: 0 15% 24% 0;
  z-index: 3;
}

.hm-reel__frame:nth-child(2) {
  inset: 12% 0 0 52%;
  z-index: 4;
  animation-delay: -1.8s;
}

.hm-reel__frame:nth-child(3) {
  inset: 54% 42% 0 6%;
  z-index: 5;
  animation-delay: -3.2s;
}

.hm-reel__frame:nth-child(4) {
  inset: 3% 2% 58% 62%;
  z-index: 2;
  animation-delay: -4.4s;
}

.hm-reel__frame:nth-child(5) {
  inset: 67% 8% 2% 48%;
  z-index: 6;
  animation-delay: -5.6s;
}

.hm-reel__frame img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  animation: hmPhotoDrift 13s ease-in-out infinite alternate;
}

.hm-reel__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 28, 47, 0), rgba(7, 28, 47, 0.58));
}

.hm-reel__frame figcaption {
  position: absolute;
  z-index: 1;
  left: 0.85rem;
  bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.9);
  color: var(--hm-sea-dark);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
}

.hm-reel__play {
  position: absolute;
  z-index: 7;
  left: 50%;
  top: 48%;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 54px;
  padding: 0.55rem 1rem 0.55rem 0.55rem;
  border: 1px solid rgba(255, 250, 240, 0.6);
  border-radius: 999px;
  background: rgba(7, 48, 83, 0.68);
  color: #fff;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 900;
  backdrop-filter: blur(14px);
  transform: translate(-50%, -50%);
}

.hm-reel__play i {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--hm-gold);
  color: #17221c;
}

.hm-album-showcase {
  position: relative;
}

.hm-album-showcase__controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.hm-album-showcase__controls button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.12);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform 220ms ease, background 220ms ease, opacity 220ms ease;
}

.hm-album-showcase__controls button:hover {
  background: var(--hm-gold);
  color: #17221c;
  transform: translateY(-2px);
}

.hm-album-showcase__controls button:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.hm-album-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 39%);
  gap: clamp(1rem, 1.6rem, 1.6rem);
  overflow-x: auto;
  padding: 0.2rem 0.2rem 1.2rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.hm-album-track::-webkit-scrollbar {
  height: 8px;
}

.hm-album-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.34);
}

.hm-album-slide {
  position: relative;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 1.35rem;
  border-radius: 14px;
  color: #fff;
  background: var(--hm-sea-dark);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
  scroll-snap-align: start;
}

.hm-album-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 108%;
  object-fit: cover;
  transition: transform 720ms ease, filter 320ms ease;
}

.hm-album-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 28, 47, 0.02), rgba(7, 28, 47, 0.84)),
    linear-gradient(90deg, rgba(7, 28, 47, 0.5), transparent);
}

.hm-album-slide > span,
.hm-album-slide > strong,
.hm-album-slide > small {
  position: relative;
  z-index: 1;
}

.hm-album-slide > span {
  color: var(--hm-gold-soft);
}

.hm-album-slide strong {
  max-width: 12ch;
  margin-top: 0.35rem;
  font-size: clamp(2.4rem, 4rem, 4rem);
  line-height: 0.95;
  text-wrap: balance;
}

.hm-album-slide small {
  margin-top: 1rem;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 900;
}

.hm-album-slide:hover img {
  filter: saturate(1.08);
  transform: scale(1.055);
}

.hm-album-feature {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  margin-top: 1.35rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 14px;
  background: rgba(255, 250, 240, 0.12);
  color: #fff;
  backdrop-filter: blur(10px);
}

.hm-album-feature span,
.hm-album-feature small {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 900;
}

.hm-album-feature span {
  color: var(--hm-gold-soft);
}

@keyframes hmHeroBreath {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.4%, -1%, 0);
  }
}

@keyframes hmReelFloat {
  from {
    transform: translate3d(0, 0, 0) rotate(-0.6deg);
  }
  to {
    transform: translate3d(0.5rem, -0.7rem, 0) rotate(0.6deg);
  }
}

@keyframes hmPhotoDrift {
  from {
    transform: scale(1.03) translateY(0);
  }
  to {
    transform: scale(1.11) translateY(-4%);
  }
}

@media (max-width: 980px) {
  .hm-list--experience,
  .hm-gallery-editorial,
  .hm-gallery-magazine,
  .hm-album-grid,
  .hm-reel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hm-gallery-feature {
    min-height: 560px;
  }

  .hm-hero-booking {
    grid-template-columns: 1fr 1fr;
    border-radius: 18px;
  }

  .hm-hero-booking > div:nth-child(2) {
    border-right: 0;
  }

  .hm-hero-booking > a {
    grid-column: span 2;
    margin: 0.3rem;
  }

  .hm-reel__stage {
    min-height: 520px;
  }

  .hm-album-track {
    grid-auto-columns: minmax(280px, 62%);
  }
}

@media (max-width: 640px) {
  .hm-photo-stack {
    min-height: auto;
  }

  .hm-photo-stack__main {
    height: 360px;
  }

  .hm-photo-stack__small {
    position: relative;
    right: auto;
    width: 82%;
    height: 220px;
    margin: -3.5rem 0 0 auto;
  }

  .hm-hero__crest {
    display: none;
  }

  .hm-hero,
  .hm-page-hero {
    min-height: 680px;
  }

  .hm-hero__content,
  .hm-page-hero__content {
    padding-block: 9rem 3.5rem;
  }

  .hm-hero h1 {
    max-width: 8ch;
    font-size: 5.2rem;
    line-height: 0.96;
  }

  .hm-hero__slogan {
    font-size: 1.65rem;
  }

  .hm-hero-booking,
  .hm-reel,
  .hm-album-feature {
    grid-template-columns: 1fr;
  }

  .hm-hero-booking > div {
    border-right: 0;
    border-bottom: 1px solid rgba(7, 48, 83, 0.12);
  }

  .hm-hero-booking > a {
    grid-column: auto;
  }

  .hm-reel__stage {
    min-height: 620px;
  }

  .hm-reel__frame:nth-child(1) {
    inset: 0 0 52% 0;
  }

  .hm-reel__frame:nth-child(2) {
    inset: 25% 0 27% 36%;
  }

  .hm-reel__frame:nth-child(3) {
    inset: 54% 40% 0 0;
  }

  .hm-reel__frame:nth-child(4) {
    inset: 10% 55% 52% 0;
  }

  .hm-reel__frame:nth-child(5) {
    inset: 68% 0 0 44%;
  }

  .hm-reel__play {
    top: 50%;
  }

  .hm-album-track {
    grid-auto-columns: minmax(260px, 88%);
  }

  .hm-album-slide {
    min-height: 430px;
  }

  .hm-list--experience,
  .hm-gallery-editorial,
  .hm-gallery-river,
  .hm-gallery-magazine,
  .hm-album-grid {
    grid-template-columns: 1fr;
  }

  .hm-gallery-feature,
  .hm-gallery-tile--wide,
  .hm-album-photo--large {
    grid-column: auto;
    grid-row: auto;
    min-height: 420px;
  }

  .hm-gallery-tile,
  .hm-album-photo {
    min-height: 310px;
  }

  .hm-pagination {
    margin-inline: -0.25rem;
  }

  .hm-pagination ul.pagination {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0.25rem 0.25rem 0.65rem;
    scrollbar-width: thin;
  }

  .hm-pagination .page-link {
    min-width: 38px;
    min-height: 38px;
    padding: 0.55rem 0.7rem;
    font-size: 0.84rem;
  }
}

/* V5 home refinements inspired by JS Hotels structure, adapted to Maguipi. */
.hm-header {
  background: linear-gradient(180deg, rgba(4, 24, 24, 0.46), rgba(4, 24, 24, 0));
}

.hm-topbar {
  background: rgba(7, 28, 47, 0.22);
}

.hm-topbar__inner {
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.hm-topbar__phone {
  justify-self: center;
  min-height: 44px;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.12);
  backdrop-filter: blur(14px);
}

.hm-language {
  justify-self: end;
}

.hm-language button,
.hm-menu-toggle--desktop {
  min-height: 44px;
  border-color: rgba(255, 250, 240, 0.38);
  background: rgba(255, 250, 240, 0.92);
  color: var(--hm-sea-dark);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.hm-menu-toggle--desktop {
  justify-self: start;
  width: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  position: relative;
  padding: 0.55rem 1rem;
  padding-left: 3rem;
  border-radius: 999px;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 900;
  color: var(--hm-sea-dark);
}

.hm-menu-toggle--desktop span,
.hm-menu-toggle--mobile span {
  margin: 0;
}

.hm-menu-toggle--desktop strong {
  font-size: 0.95rem;
}

.hm-menu-toggle--desktop span {
  position: absolute;
  left: 1rem;
  width: 22px;
}

.hm-menu-toggle--desktop span:nth-child(1) {
  transform: translateY(-7px);
}

.hm-menu-toggle--desktop span:nth-child(2) {
  transform: translateY(0);
}

.hm-menu-toggle--desktop span:nth-child(3) {
  transform: translateY(7px);
}

.hm-nav {
  min-height: 104px;
  grid-template-columns: 1fr auto 1fr;
  position: relative;
}

.hm-header.is-scrolled .hm-nav {
  min-height: 82px;
}

.hm-brand {
  justify-self: center;
}

.hm-brand img {
  width: 116px;
  border-radius: 0;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.3));
}

.hm-header.is-scrolled .hm-brand img {
  width: 92px;
}

.hm-menu {
  position: fixed;
  left: max(1rem, calc((100vw - 1180px) / 2));
  top: 72px;
  width: min(390px, calc(100vw - 2rem));
  display: grid;
  justify-content: stretch;
  align-content: start;
  gap: 0;
  padding: 1rem;
  border: 1px solid rgba(255, 250, 240, 0.3);
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.96);
  color: var(--hm-ink);
  box-shadow: 0 30px 80px rgba(7, 28, 47, 0.28);
  backdrop-filter: blur(20px);
  transform: translateY(-1rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.hm-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.hm-menu a {
  padding: 0.95rem 0.85rem;
  border-bottom: 1px solid var(--hm-line);
  color: var(--hm-ink);
  text-shadow: none;
}

.hm-menu a:last-child {
  border-bottom: 0;
}

.hm-menu a:hover {
  color: var(--hm-sea);
  transform: translateX(4px);
}

.hm-menu a::after {
  display: none;
}

.hm-button--nav {
  position: absolute;
  right: 0;
  justify-self: end;
  min-height: 52px;
  padding-inline: 1.35rem;
}

.hm-hero::before {
  z-index: 0;
  background: var(--hero-image) center / cover no-repeat;
  transform: none;
  animation: none;
}

.hm-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
  object-fit: cover;
  object-position: center 48%;
  transition: opacity 700ms ease;
}

.hm-hero__video.is-playing {
  opacity: 1;
}

.hm-hero__content {
  width: min(1180px, calc(100% - 32px));
  display: grid;
  justify-items: start;
  padding-block: 13rem 7.8rem;
}

.hm-hero__metrics {
  margin-bottom: 5.4rem;
}

.hm-hero-booking {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  width: min(1080px, calc(100vw - 3rem));
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(180px, auto);
  transform: translateX(-50%);
}

.hm-hero .hm-hero-booking {
  transform: translateX(-50%);
}

.hm-hero-booking > a {
  width: calc(100% - 0.7rem);
  margin: 0.35rem;
  text-align: center;
}

.hm-album-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
}

.hm-album-showcase__controls {
  grid-column: 2;
  align-self: start;
  margin: 0;
}

.hm-album-track {
  grid-column: 1 / -1;
  grid-auto-columns: minmax(420px, 52%);
  padding-bottom: 1.5rem;
}

.hm-album-slide {
  min-height: 620px;
  border-radius: 20px;
}

.hm-album-slide strong {
  max-width: 10ch;
  font-size: clamp(2.4rem, 3.6rem, 3.6rem);
  overflow-wrap: break-word;
}

.hm-album-feature {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(720px, 100%);
}

@media (max-width: 1080px) {
  .hm-topbar__inner {
    grid-template-columns: auto 1fr auto;
  }

  .hm-topbar__phone span {
    display: none;
  }

  .hm-menu-toggle--desktop {
    display: inline-flex;
  }

  .hm-menu-toggle--mobile {
    display: none;
  }

  .hm-menu {
    inset: 66px auto auto 1rem;
    width: min(390px, calc(100vw - 2rem));
  }
}

@media (max-width: 760px) {
  .hm-topbar__inner {
    min-height: 52px;
    gap: 0.5rem;
  }

  .hm-menu {
    inset: 58px 1rem auto 1rem;
    width: auto;
  }

  .hm-menu-toggle--desktop strong,
  .hm-topbar__phone span,
  .hm-topbar__phone strong {
    display: none;
  }

  .hm-menu-toggle--desktop,
  .hm-topbar__phone,
  .hm-language button {
    width: 44px;
    min-width: 44px;
    padding: 0;
    justify-content: center;
  }

  .hm-menu-toggle--desktop {
    gap: 0;
    padding-left: 0;
  }

  .hm-menu-toggle--desktop span {
    left: 11px;
  }

  .hm-nav {
    min-height: 84px;
    grid-template-columns: 1fr auto 1fr;
  }

  .hm-brand img {
    width: 96px;
  }

  .hm-button--nav {
    display: inline-flex;
    min-height: 44px;
    padding-inline: 0.9rem;
    font-size: 0.86rem;
  }

  .hm-hero {
    min-height: 780px;
  }

  .hm-hero__video {
    object-position: 56% center;
  }

  .hm-hero__content {
    padding-block: 10.8rem 17rem;
  }

  .hm-hero__metrics {
    margin-bottom: 1rem;
  }

  .hm-hero h1 {
    max-width: 8.5ch;
    font-size: 4.7rem;
  }

  .hm-hero-booking {
    bottom: 1rem;
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .hm-hero-booking > div {
    min-height: 58px;
  }

  .hm-hero-booking > a {
    min-height: 54px;
  }

  .hm-album-track {
    grid-auto-columns: minmax(270px, 86%);
  }

  .hm-album-slide {
    min-height: 470px;
  }

  .hm-album-slide strong {
    font-size: 2.65rem;
  }
}

/* V6 floating header, medium booking fixes, footer polish and lightweight particles. */
.hm-header {
  background: transparent;
  border-bottom: 0;
  pointer-events: none;
}

.hm-header.is-scrolled {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hm-header.is-hidden {
  transform: translateY(-118%);
}

.hm-header,
.hm-topbar,
.hm-nav,
.hm-brand,
.hm-topbar__inner,
.hm-topbar__phone,
.hm-language,
.hm-menu-toggle--desktop {
  transition: transform 260ms ease, opacity 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.hm-topbar,
.hm-nav {
  pointer-events: none;
}

.hm-topbar {
  background: transparent;
  backdrop-filter: none;
}

.hm-topbar__inner {
  min-height: 72px;
  pointer-events: none;
}

.hm-menu-toggle--desktop,
.hm-topbar__phone,
.hm-language,
.hm-language button,
.hm-brand,
.hm-menu,
.hm-button--nav {
  pointer-events: auto;
}

.hm-menu-toggle--desktop {
  background: rgba(255, 250, 240, 0.96);
  color: var(--hm-sea-dark);
  border-color: rgba(255, 250, 240, 0.56);
}

.hm-menu-toggle--desktop strong {
  color: var(--hm-sea-dark);
  text-shadow: none;
}

.hm-menu-toggle--desktop span {
  background: var(--hm-sea-dark);
}

.hm-topbar__phone,
.hm-language button {
  background: rgba(255, 250, 240, 0.94);
  color: var(--hm-sea-dark);
  border-color: rgba(255, 250, 240, 0.5);
}

.hm-topbar__phone strong,
.hm-topbar__phone i {
  color: var(--hm-sea-dark);
}

.hm-nav {
  min-height: 0;
  position: absolute;
  inset: 70px 0 auto;
}

.hm-brand {
  position: absolute;
  left: 50%;
  top: 0;
  display: grid;
  width: 132px;
  height: 92px;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.16);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
}

.hm-brand img,
.hm-header.is-scrolled .hm-brand img {
  width: 96px;
}

.hm-button--nav {
  display: none;
}

.hm-header.is-scrolled .hm-topbar__inner {
  transform: translateY(0);
}

.hm-header.is-scrolled .hm-brand {
  transform: translateX(-50%) translateY(-0.35rem) scale(0.92);
}

.hm-hero__content,
.hm-hero__crest,
.hm-hero-booking {
  z-index: 2;
}

.hm-hero__crest {
  display: none;
}

.hm-hero-booking > a {
  justify-self: stretch;
}

.hm-footer {
  padding-top: clamp(4rem, 7vw, 6rem);
}

.hm-footer__grid {
  align-items: start;
}

.hm-footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hm-footer-phone i {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.1);
  color: var(--hm-gold-soft);
}

@media (min-width: 761px) and (max-width: 1180px) {
  .hm-hero {
    min-height: min(780px, 100dvh);
  }

  .hm-hero__content {
    padding-block: 11rem 15rem;
  }

  .hm-hero__metrics {
    margin-bottom: 1rem;
  }

  .hm-hero-booking {
    width: min(1070px, calc(100vw - 3rem));
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-radius: 24px;
  }

  .hm-hero-booking > div:nth-child(3) {
    border-right: 0;
  }

  .hm-hero-booking > a {
    grid-column: 1 / -1;
    width: min(560px, calc(100% - 1rem));
    justify-self: center;
    margin: 0.35rem 0 0.55rem;
  }

  .hm-topbar__phone span {
    display: none;
  }
}

@media (max-width: 760px) {
  .hm-topbar__inner {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .hm-nav {
    inset: 62px 0 auto;
  }

  .hm-brand {
    width: 112px;
    height: 76px;
  }

  .hm-brand img,
  .hm-header.is-scrolled .hm-brand img {
    width: 82px;
  }

  .hm-hero {
    min-height: 820px;
  }

  .hm-hero__content {
    padding-block: 10rem 18rem;
  }

  .hm-hero-booking > a {
    width: calc(100% - 1rem);
    justify-self: center;
  }
}

/* V7 single-row floating header and JS Hotels-style menu panel. */
.hm-topbar__inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(140px, 1fr) auto minmax(260px, 1fr);
  gap: 1rem;
  align-items: center;
}

.hm-header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  pointer-events: auto;
}

.hm-nav {
  position: static;
  inset: auto;
  min-height: 0;
  width: auto;
  pointer-events: none;
}

.hm-brand {
  position: static;
  left: auto;
  top: auto;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(242, 209, 122, 0.5);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 250, 240, 0.98) 0 52%, rgba(255, 250, 240, 0.8) 53% 100%);
  box-shadow: 0 18px 46px rgba(7, 28, 47, 0.2), inset 0 0 0 7px rgba(255, 250, 240, 0.2);
  transform: none;
  overflow: hidden;
}

.hm-header.is-scrolled .hm-brand {
  transform: none;
}

.hm-brand img,
.hm-header.is-scrolled .hm-brand img {
  width: 68px;
  max-height: 68px;
  object-fit: contain;
}

.hm-header-actions .hm-topbar__phone {
  display: none;
}

.hm-phone-menu {
  position: relative;
  z-index: 95;
}

.hm-phone-menu__trigger,
.hm-language button {
  min-height: 46px;
  border: 1px solid rgba(7, 48, 83, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.94);
  color: var(--hm-ink);
  box-shadow: 0 12px 34px rgba(7, 28, 47, 0.13);
}

.hm-phone-menu__trigger {
  display: inline-grid;
  grid-template-columns: auto auto auto auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 0.62rem 0.42rem 0.9rem;
  cursor: pointer;
}

.hm-phone-menu__trigger > i:first-child {
  color: #1f9d55;
  font-size: 1.15rem;
}

.hm-phone-menu__trigger span {
  color: rgba(7, 48, 83, 0.76);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.hm-phone-menu__trigger strong {
  color: var(--hm-sea-dark);
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.hm-phone-menu__trigger > i:last-child {
  color: rgba(7, 48, 83, 0.7);
  transition: transform 180ms ease;
}

.hm-phone-menu.is-open .hm-phone-menu__trigger > i:last-child {
  transform: rotate(180deg);
}

.hm-phone-menu__list {
  position: absolute;
  right: 0;
  top: calc(100% + 0.65rem);
  width: min(260px, calc(100vw - 2rem));
  display: grid;
  gap: 0.35rem;
  padding: 0.65rem;
  border: 1px solid rgba(7, 48, 83, 0.12);
  border-radius: 16px;
  background: rgba(255, 250, 240, 0.98);
  box-shadow: 0 26px 70px rgba(7, 28, 47, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.35rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.hm-phone-menu.is-open .hm-phone-menu__list {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hm-phone-menu__list a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.68rem 0.75rem;
  border-radius: 12px;
  color: var(--hm-ink);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.hm-phone-menu__list a:hover {
  background: rgba(0, 108, 154, 0.1);
  color: var(--hm-sea-dark);
}

.hm-language button {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding-inline: 0.9rem;
  color: var(--hm-sea-dark);
  font-weight: 900;
}

.hm-language button i {
  font-size: 1.05rem;
  color: var(--hm-jungle);
}

.hm-menu {
  position: fixed;
  inset: 1.5rem;
  z-index: 80;
  width: auto;
  max-width: none;
  min-height: min(700px, calc(100dvh - 3rem));
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(360px, 0.52fr);
  align-items: stretch;
  gap: clamp(1rem, 4vw, 4rem);
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(255, 250, 240, 0.54);
  border-radius: 10px;
  background: rgba(255, 250, 240, 0.98);
  color: var(--hm-ink);
  box-shadow: 0 34px 100px rgba(7, 28, 47, 0.32);
  backdrop-filter: none;
  transform: translateY(1rem) scale(0.985);
}

.hm-v2.hm-menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(7, 28, 47, 0.48);
  backdrop-filter: none;
}

.hm-menu.is-open {
  transform: translateY(0) scale(1);
}

.hm-menu-close {
  position: relative;
  grid-column: 1;
  justify-self: start;
  align-self: start;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.2rem 0.65rem 3.8rem;
  border: 1px solid rgba(7, 48, 83, 0.22);
  border-radius: 999px;
  background: var(--hm-sea-dark);
  color: #fff;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
}

.hm-menu-close span {
  position: absolute;
  width: 30px;
  height: 3px;
  margin-left: -2.4rem;
  border-radius: 999px;
  background: #fff;
}

.hm-menu-close span:nth-child(1) {
  transform: rotate(28deg);
}

.hm-menu-close span:nth-child(2) {
  transform: rotate(-28deg);
}

.hm-menu__links {
  grid-column: 1;
  display: grid;
  gap: 0.35rem;
  align-content: start;
  margin-top: 1.2rem;
}

.hm-menu__links a,
.hm-menu .hm-menu__links a {
  padding: 0.45rem 0;
  border-bottom: 0;
  color: var(--hm-ink);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.hm-menu__links a:hover {
  color: var(--hm-coral);
  transform: translateX(8px);
}

.hm-menu__meta {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1rem;
  overflow: hidden;
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 108, 154, 0.08), transparent 24rem),
    rgba(255, 255, 255, 0.24);
}

.hm-menu__meta img {
  width: min(420px, 76%);
  height: auto;
  opacity: 0.78;
  filter: drop-shadow(0 18px 40px rgba(7, 28, 47, 0.16));
}

.hm-menu__meta a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(7, 48, 83, 0.9);
  color: #fff;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 900;
}

.hm-menu__meta a:last-child {
  background: var(--hm-gold);
  color: #17221c;
}

.hm-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(242, 209, 122, 0.18), transparent 20rem),
    radial-gradient(circle at 86% 18%, rgba(0, 108, 154, 0.22), transparent 22rem),
    linear-gradient(135deg, #052133 0%, #073053 44%, #102f28 100%);
}

.hm-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 42px 42px;
}

.hm-footer__grid {
  position: relative;
  z-index: 1;
}

.hm-footer__grid > div:first-child {
  padding: 1.1rem;
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.07);
  box-shadow: inset 0 0 0 1px rgba(255, 250, 240, 0.1);
}

.hm-footer__grid > div:first-child img {
  width: 92px;
  height: 92px;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.96);
  object-fit: contain;
}

.hm-trust-badges {
  align-items: center;
}

.hm-trust-badges img {
  border-radius: 12px;
  background: rgba(255, 250, 240, 0.92);
  padding: 0.35rem;
}

@media (max-width: 900px) {
  .hm-topbar__inner {
    grid-template-columns: auto auto auto;
  }

  .hm-header-actions {
    gap: 0.5rem;
  }

  .hm-topbar__phone span,
  .hm-topbar__phone strong {
    display: none;
  }

  .hm-phone-menu__trigger span {
    display: none;
  }

  .hm-menu {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .hm-menu__meta {
    grid-column: 1;
    grid-row: auto;
    min-height: 220px;
  }
}

@media (max-width: 560px) {
  .hm-topbar__inner {
    width: min(100% - 20px, 1180px);
    gap: 0.45rem;
  }

  .hm-brand {
    width: 64px;
    height: 64px;
  }

  .hm-brand img,
  .hm-header.is-scrolled .hm-brand img {
    width: 54px;
  }

  .hm-menu {
    inset: 0.8rem;
    min-height: calc(100dvh - 1.6rem);
    padding: 1rem;
  }

  .hm-menu__links a,
  .hm-menu .hm-menu__links a {
    font-size: 1.42rem;
  }
}

/* V8 menu usability pass: click-safe layers, calmer text, single logo frame. */
.hm-brand,
.hm-header.is-scrolled .hm-brand {
  width: 76px;
  height: 76px;
  border: 1px solid rgba(242, 209, 122, 0.64);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.96);
  box-shadow: 0 16px 34px rgba(7, 28, 47, 0.18);
  overflow: hidden;
}

.hm-brand img,
.hm-header.is-scrolled .hm-brand img {
  width: 62px;
  height: 62px;
  border-radius: 0;
  filter: none;
  object-fit: contain;
}

.hm-phone-menu {
  z-index: 50;
}

.hm-menu {
  z-index: 160;
  grid-template-columns: minmax(240px, 0.44fr) minmax(320px, 0.56fr);
  gap: clamp(1rem, 3vw, 3rem);
  pointer-events: none;
}

.hm-menu.is-open {
  pointer-events: auto;
}

.hm-v2.hm-menu-open::before {
  z-index: 120;
  pointer-events: none;
}

.hm-v2.hm-menu-open .hm-header-actions {
  opacity: 0;
  pointer-events: none;
}

.hm-menu__links {
  gap: 0.12rem;
  position: relative;
  z-index: 2;
}

.hm-menu__links a,
.hm-menu .hm-menu__links a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0.38rem 0.65rem;
  border-radius: 12px;
  color: rgba(7, 48, 83, 0.92);
  font-size: clamp(1.02rem, 1.65vw, 1.48rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: none;
  pointer-events: auto;
}

.hm-menu__links a:hover,
.hm-menu .hm-menu__links a:hover {
  background: rgba(0, 108, 154, 0.09);
  color: var(--hm-sea-dark);
  transform: translateX(5px);
}

.hm-menu__meta {
  z-index: 1;
  pointer-events: auto;
}

.hm-menu-close {
  z-index: 3;
  pointer-events: auto;
}

@media (max-width: 900px) {
  .hm-menu {
    grid-template-columns: 1fr;
  }

  .hm-menu__links a,
  .hm-menu .hm-menu__links a {
    font-size: clamp(1rem, 4.2vw, 1.28rem);
  }
}

@media (max-width: 560px) {
  .hm-brand,
  .hm-header.is-scrolled .hm-brand {
    width: 60px;
    height: 60px;
  }

  .hm-brand img,
  .hm-header.is-scrolled .hm-brand img {
    width: 50px;
    height: 50px;
  }
}

/* V9 final header polish: no veil over menu, black reservation icon, centered mark. */
.hm-v2.hm-menu-open::before {
  display: none;
  content: none;
  background: transparent;
}

.hm-menu {
  background: #fffaf0;
  box-shadow: 0 34px 90px rgba(7, 28, 47, 0.24);
}

.hm-phone-menu__trigger > i:first-child,
.hm-phone-menu__trigger > i:last-child {
  color: var(--hm-ink);
}

.hm-brand,
.hm-header.is-scrolled .hm-brand {
  display: grid;
  place-items: center;
  background: #fffaf0;
}

.hm-brand img,
.hm-header.is-scrolled .hm-brand img {
  width: 60px;
  height: 60px;
  object-position: center;
  transform: translate(1px, 1px);
}

@media (max-width: 560px) {
  .hm-brand img,
  .hm-header.is-scrolled .hm-brand img {
    width: 48px;
    height: 48px;
    transform: translate(1px, 1px);
  }
}

/* V10 keep the brand optically centered before and after scroll. */
.hm-topbar__inner {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.hm-menu-toggle--desktop {
  justify-self: start;
}

.hm-brand,
.hm-header.is-scrolled .hm-brand {
  justify-self: center;
  align-self: center;
  transform: none;
}

.hm-header-actions {
  justify-self: end;
}

@media (max-width: 900px) {
  .hm-topbar__inner {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }
}

/* V11 responsive header: keep logo independent from reservation controls. */
@media (max-width: 900px) {
  .hm-header {
    background: linear-gradient(180deg, rgba(5, 33, 51, 0.98), rgba(5, 33, 51, 0.92));
  }

  .hm-topbar {
    padding: 0.45rem 0 0.55rem;
    background: transparent;
  }

  .hm-topbar__inner,
  .hm-header.is-scrolled .hm-topbar__inner {
    width: min(100% - 18px, 760px);
    min-height: 0;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 56px;
    grid-template-areas:
      "menu brand language"
      "phone phone phone";
    align-items: center;
    gap: 0.42rem;
    pointer-events: auto;
    transform: none;
  }

  .hm-menu-toggle--desktop {
    grid-area: menu;
    justify-self: start;
    width: 52px;
    min-width: 52px;
    height: 52px;
    min-height: 52px;
    padding: 0;
    border-radius: 999px;
  }

  .hm-menu-toggle--desktop strong {
    display: none;
  }

  .hm-menu-toggle--desktop span {
    left: 15px;
  }

  .hm-brand,
  .hm-header.is-scrolled .hm-brand {
    grid-area: brand;
    justify-self: center;
    align-self: center;
    width: 66px;
    height: 66px;
    transform: none;
  }

  .hm-brand img,
  .hm-header.is-scrolled .hm-brand img {
    width: 52px;
    height: 52px;
    transform: translate(1px, 1px);
  }

  .hm-header-actions {
    display: contents;
  }

  .hm-language {
    grid-area: language;
    justify-self: end;
  }

  .hm-language button {
    width: 52px;
    min-width: 52px;
    height: 52px;
    min-height: 52px;
    padding: 0;
    justify-content: center;
  }

  .hm-language button i {
    margin: 0;
  }

  .hm-language button {
    font-size: 0;
  }

  .hm-language button i {
    font-size: 1.25rem;
  }

  .hm-phone-menu {
    grid-area: phone;
    justify-self: center;
    width: min(100%, 360px);
    z-index: 50;
  }

  .hm-phone-menu__trigger {
    width: 100%;
    min-height: 46px;
    display: flex;
    justify-content: center;
    padding: 0.45rem 0.8rem;
  }

  .hm-phone-menu__trigger span {
    display: none;
  }

  .hm-phone-menu__trigger strong {
    font-size: 1rem;
  }

  .hm-phone-menu__list {
    right: 50%;
    transform: translate(50%, -0.35rem);
  }

  .hm-phone-menu.is-open .hm-phone-menu__list {
    transform: translate(50%, 0);
  }

  .hm-hero__content {
    padding-top: clamp(11.5rem, 24vw, 13rem);
  }

  .hm-menu {
    inset: 0.75rem;
    grid-template-columns: 1fr;
    min-height: calc(100dvh - 1.5rem);
    max-height: calc(100dvh - 1.5rem);
    overflow-y: auto;
  }
}

@media (max-width: 560px) {
  .hm-topbar__inner,
  .hm-header.is-scrolled .hm-topbar__inner {
    width: min(100% - 14px, 520px);
    grid-template-columns: 50px minmax(0, 1fr) 50px;
  }

  .hm-menu-toggle--desktop,
  .hm-language button {
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
  }

  .hm-menu-toggle--desktop span {
    left: 13px;
  }

  .hm-brand,
  .hm-header.is-scrolled .hm-brand {
    width: 58px;
    height: 58px;
  }

  .hm-brand img,
  .hm-header.is-scrolled .hm-brand img {
    width: 46px;
    height: 46px;
  }

  .hm-phone-menu {
    width: min(100%, 310px);
  }

  .hm-phone-menu__trigger {
    min-height: 44px;
  }

  .hm-hero__content {
    padding-top: 12.5rem;
  }
}

/* V12 mobile header: one compact row, absolute-centered logo, WhatsApp beside language. */
@media (max-width: 900px) {
  .hm-header {
    background: linear-gradient(180deg, rgba(5, 33, 51, 0.98), rgba(5, 33, 51, 0.9));
  }

  .hm-topbar {
    padding: 0.52rem 0;
  }

  .hm-topbar__inner,
  .hm-header.is-scrolled .hm-topbar__inner {
    position: relative;
    width: min(100% - 18px, 760px);
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    pointer-events: auto;
    transform: none;
  }

  .hm-menu-toggle--desktop {
    flex: 0 0 52px;
    justify-self: auto;
    width: 52px;
    min-width: 52px;
    height: 52px;
    min-height: 52px;
    padding: 0;
    border-radius: 999px;
  }

  .hm-menu-toggle--desktop strong {
    display: none;
  }

  .hm-menu-toggle--desktop span {
    left: 15px;
  }

  .hm-brand,
  .hm-header.is-scrolled .hm-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%) !important;
  }

  .hm-brand img,
  .hm-header.is-scrolled .hm-brand img {
    width: 52px;
    height: 52px;
    transform: translate(1px, 1px);
  }

  .hm-header-actions {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.45rem;
    margin-left: auto;
    pointer-events: auto;
  }

  .hm-phone-menu {
    width: auto;
    z-index: 50;
  }

  .hm-phone-menu__trigger,
  .hm-language button {
    width: 52px;
    min-width: 52px;
    height: 52px;
    min-height: 52px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border-radius: 999px;
  }

  .hm-phone-menu__trigger span,
  .hm-phone-menu__trigger strong,
  .hm-phone-menu__trigger > i:last-child,
  .hm-language button {
    font-size: 0;
  }

  .hm-phone-menu__trigger > i:first-child,
  .hm-language button i {
    margin: 0;
    color: var(--hm-ink);
    font-size: 1.28rem;
  }

  .hm-phone-menu__list {
    right: 0;
    top: calc(100% + 0.6rem);
    transform: translateY(-0.35rem);
  }

  .hm-phone-menu.is-open .hm-phone-menu__list {
    transform: translateY(0);
  }

  .hm-hero__content {
    padding-top: clamp(8.25rem, 19vw, 10rem);
  }

  .hm-menu {
    inset: 0.75rem;
    min-height: calc(100dvh - 1.5rem);
    max-height: calc(100dvh - 1.5rem);
    overflow-y: auto;
  }
}

@media (max-width: 560px) {
  .hm-topbar__inner,
  .hm-header.is-scrolled .hm-topbar__inner {
    width: min(100% - 14px, 520px);
    min-height: 60px;
  }

  .hm-menu-toggle--desktop,
  .hm-phone-menu__trigger,
  .hm-language button {
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
  }

  .hm-menu-toggle--desktop {
    flex-basis: 48px;
  }

  .hm-menu-toggle--desktop span {
    left: 13px;
  }

  .hm-brand,
  .hm-header.is-scrolled .hm-brand {
    width: 58px;
    height: 58px;
  }

  .hm-brand img,
  .hm-header.is-scrolled .hm-brand img {
    width: 46px;
    height: 46px;
  }

  .hm-header-actions {
    gap: 0.35rem;
  }

  .hm-hero__content {
    padding-top: 8.8rem;
  }
}

/* V13 deterministic brand centering: independent from menu/actions width. */
.hm-header .hm-brand,
.hm-header.is-scrolled .hm-brand {
  position: fixed;
  left: 50vw;
  top: 0.45rem;
  z-index: 72;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  transform: translateX(-50%) !important;
}

.hm-header .hm-brand img,
.hm-header.is-scrolled .hm-brand img {
  width: 60px;
  height: 60px;
  transform: translate(1px, 1px);
}

.hm-header.is-scrolled .hm-brand {
  top: 0.35rem;
}

.hm-header .hm-menu-toggle--desktop,
.hm-header .hm-header-actions {
  position: relative;
  z-index: 74;
}

@media (max-width: 900px) {
  .hm-header .hm-brand,
  .hm-header.is-scrolled .hm-brand {
    top: 0.52rem;
    width: 64px;
    height: 64px;
  }

  .hm-header .hm-brand img,
  .hm-header.is-scrolled .hm-brand img {
    width: 52px;
    height: 52px;
  }

  .hm-header .hm-menu-toggle--desktop,
  .hm-header .hm-phone-menu__trigger,
  .hm-header .hm-language button {
    width: 52px;
    min-width: 52px;
    height: 52px;
    min-height: 52px;
  }
}

@media (max-width: 560px) {
  .hm-header .hm-brand,
  .hm-header.is-scrolled .hm-brand {
    top: 0.5rem;
    width: 58px;
    height: 58px;
  }

  .hm-header .hm-brand img,
  .hm-header.is-scrolled .hm-brand img {
    width: 46px;
    height: 46px;
  }

  .hm-header .hm-menu-toggle--desktop,
  .hm-header .hm-phone-menu__trigger,
  .hm-header .hm-language button {
    width: 48px;
    min-width: 48px;
    height: 48px;
    min-height: 48px;
  }
}

/* V14 header reset: center only the logo, keep controls at the edges. */
.hm-header .hm-topbar__inner,
.hm-header.is-scrolled .hm-topbar__inner {
  position: relative;
  width: min(1520px, calc(100% - 48px));
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  pointer-events: auto;
  transform: none;
}

.hm-header .hm-menu-toggle--desktop {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  margin: 0;
}

.hm-header .hm-header-actions {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}

.hm-header .hm-brand,
.hm-header.is-scrolled .hm-brand {
  grid-column: 1 / -1;
  grid-row: 1;
  position: fixed;
  left: 50%;
  top: 0.45rem;
  z-index: 73;
  justify-self: center;
  margin: 0;
  transform: translateX(-50%) !important;
  pointer-events: auto;
}

.hm-header.is-scrolled .hm-brand {
  top: 0.35rem;
}

@media (max-width: 1280px) {
  .hm-header .hm-topbar__inner,
  .hm-header.is-scrolled .hm-topbar__inner {
    width: min(100% - 32px, 1180px);
  }

  .hm-header .hm-phone-menu__trigger {
    grid-template-columns: auto auto auto;
    padding-inline: 0.82rem;
  }

  .hm-header .hm-phone-menu__trigger span {
    display: none;
  }
}

@media (max-width: 900px) {
  .hm-header .hm-topbar__inner,
  .hm-header.is-scrolled .hm-topbar__inner {
    width: min(100% - 18px, 760px);
    min-height: 68px;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 0.5rem;
  }

  .hm-header .hm-menu-toggle--desktop {
    grid-column: 1;
    justify-self: start;
    flex: none;
  }

  .hm-header .hm-header-actions {
    grid-column: 3;
    justify-self: end;
    flex: none;
    gap: 0.42rem;
  }

  .hm-header .hm-brand,
  .hm-header.is-scrolled .hm-brand {
    left: 50%;
    top: 0.55rem;
    width: 62px;
    height: 62px;
    transform: translateX(-50%) !important;
  }

  .hm-header .hm-brand img,
  .hm-header.is-scrolled .hm-brand img {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 560px) {
  .hm-header .hm-topbar__inner,
  .hm-header.is-scrolled .hm-topbar__inner {
    width: min(100% - 14px, 520px);
    min-height: 62px;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 0.35rem;
  }

  .hm-header .hm-header-actions {
    gap: 0.32rem;
  }

  .hm-header .hm-brand,
  .hm-header.is-scrolled .hm-brand {
    top: 0.52rem;
    width: 56px;
    height: 56px;
  }

  .hm-header .hm-brand img,
  .hm-header.is-scrolled .hm-brand img {
    width: 44px;
    height: 44px;
  }

  .hm-header .hm-menu-toggle--desktop,
  .hm-header .hm-phone-menu__trigger,
  .hm-header .hm-language button {
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
  }
}

/* V15 mobile action icons: one-cell buttons with optically centered icons. */
@media (max-width: 900px) {
  .hm-header .hm-phone-menu__trigger,
  .hm-header .hm-language button {
    display: grid !important;
    grid-template-columns: 1fr !important;
    place-items: center !important;
    padding: 0 !important;
    text-align: center;
    line-height: 1;
  }

  .hm-header .hm-phone-menu__trigger span,
  .hm-header .hm-phone-menu__trigger strong,
  .hm-header .hm-phone-menu__trigger > i:last-child,
  .hm-header .hm-language button span {
    display: none !important;
  }

  .hm-header .hm-phone-menu__trigger > i:first-child,
  .hm-header .hm-language button i {
    display: block;
    width: 1em;
    height: 1em;
    margin: 0 !important;
    color: var(--hm-ink);
    font-size: 1.24rem;
    line-height: 1;
    transform: none !important;
    justify-self: center;
    align-self: center;
  }

  .hm-header .hm-phone-menu__trigger > i:first-child::before,
  .hm-header .hm-language button i::before {
    display: block;
    line-height: 1;
  }
}

/* V16 language icon: ignore the hidden text node and pin the globe to center. */
@media (max-width: 900px) {
  .hm-header .hm-language button {
    position: relative;
    overflow: hidden;
    color: transparent !important;
    font-size: 0 !important;
  }

  .hm-header .hm-language button i {
    position: absolute;
    left: 50%;
    top: 50%;
    width: auto;
    height: auto;
    color: var(--hm-ink) !important;
    font-size: 1.28rem;
    line-height: 1;
    transform: translate(-50%, -50%) !important;
  }

  .hm-header .hm-language button i::before {
    display: block;
    line-height: 1;
  }
}

/* V17 home album stage: premium 3D editorial carousel. */
.hm-album-showcase--stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: clamp(1.4rem, 3vw, 2.4rem);
  isolation: isolate;
}

.hm-album-showcase--stage::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  z-index: -1;
  width: min(860px, 92vw);
  height: 340px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(242, 209, 122, 0.28), transparent 58%),
    radial-gradient(circle at 68% 42%, rgba(0, 179, 201, 0.22), transparent 56%);
  filter: blur(24px);
  transform: translate(-50%, -50%);
}

.hm-album-showcase__topline {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  width: min(860px, 100%);
  margin-inline: auto;
}

.hm-album-showcase__counter {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  color: rgba(255, 250, 240, 0.78);
  font-family: Georgia, "Times New Roman", serif;
}

.hm-album-showcase__counter span {
  color: var(--hm-gold-soft);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.hm-album-showcase__counter small {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

.hm-album-showcase--stage .hm-album-showcase__controls {
  grid-column: auto;
  justify-content: end;
  margin: 0;
}

.hm-album-stage {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(520px, 55vw, 700px);
  overflow: visible;
  padding: 0;
  perspective: 1300px;
  scroll-snap-type: none;
  scrollbar-width: none;
}

.hm-album-stage::-webkit-scrollbar {
  display: none;
}

.hm-album-stage__item {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(470px, 42vw);
  min-height: 0;
  height: clamp(430px, 48vw, 610px);
  padding: clamp(1.1rem, 2vw, 1.55rem);
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 18px;
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.72);
  transition:
    opacity 360ms ease,
    transform 720ms cubic-bezier(0.2, 0.72, 0.18, 1),
    filter 420ms ease,
    box-shadow 420ms ease;
  will-change: transform, opacity;
}

.hm-album-stage__item img {
  height: 110%;
  filter: saturate(0.92) contrast(1.04);
}

.hm-album-stage__item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.08), transparent 32%),
    linear-gradient(0deg, rgba(3, 18, 31, 0.82), rgba(3, 18, 31, 0.04) 58%);
  pointer-events: none;
}

.hm-album-stage__item::after {
  background:
    linear-gradient(180deg, rgba(7, 28, 47, 0.02), rgba(7, 28, 47, 0.74)),
    linear-gradient(90deg, rgba(7, 28, 47, 0.34), transparent 70%);
}

.hm-album-stage__item > span,
.hm-album-stage__item > strong,
.hm-album-stage__item > small {
  z-index: 2;
}

.hm-album-stage__item > small {
  width: max-content;
  padding: 0.58rem 0.82rem;
  border: 1px solid rgba(255, 250, 240, 0.3);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.13);
  backdrop-filter: blur(8px);
}

.hm-album-stage__item.is-active {
  z-index: 4;
  opacity: 1;
  pointer-events: auto;
  filter: none;
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
}

.hm-album-stage__item.is-active img {
  filter: saturate(1.08) contrast(1.02);
}

.hm-album-stage__item.is-prev {
  z-index: 3;
  opacity: 0.74;
  pointer-events: auto;
  filter: saturate(0.82) brightness(0.96);
  transform: translate(calc(-50% - min(34vw, 430px)), -47%) rotate(-8deg) scale(0.78);
}

.hm-album-stage__item.is-next {
  z-index: 3;
  opacity: 0.74;
  pointer-events: auto;
  filter: saturate(0.82) brightness(0.96);
  transform: translate(calc(-50% + min(34vw, 430px)), -47%) rotate(8deg) scale(0.78);
}

.hm-album-stage__item.is-far-prev {
  z-index: 1;
  opacity: 0.22;
  transform: translate(calc(-50% - min(48vw, 620px)), -48%) rotate(-12deg) scale(0.62);
}

.hm-album-stage__item.is-far-next {
  z-index: 1;
  opacity: 0.22;
  transform: translate(calc(-50% + min(48vw, 620px)), -48%) rotate(12deg) scale(0.62);
}

.hm-album-stage__item.is-hidden {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.52);
}

.hm-album-stage__item:hover img {
  transform: scale(1.06);
}

.hm-album-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: -0.4rem;
}

.hm-album-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.34);
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease, transform 220ms ease;
}

.hm-album-dots button.is-active {
  width: 34px;
  background: var(--hm-gold);
}

.hm-album-showcase--stage .hm-album-feature {
  margin-top: 0.45rem;
}

@media (max-width: 900px) {
  .hm-album-stage {
    height: clamp(500px, 92vw, 650px);
    overflow: hidden;
  }

  .hm-album-stage__item {
    width: min(420px, 78vw);
    height: clamp(420px, 86vw, 560px);
  }

  .hm-album-stage__item.is-prev {
    opacity: 0.34;
    transform: translate(calc(-50% - 58vw), -48%) rotate(-7deg) scale(0.72);
  }

  .hm-album-stage__item.is-next {
    opacity: 0.34;
    transform: translate(calc(-50% + 58vw), -48%) rotate(7deg) scale(0.72);
  }

  .hm-album-stage__item.is-far-prev,
  .hm-album-stage__item.is-far-next {
    opacity: 0;
  }
}

@media (max-width: 560px) {
  .hm-album-showcase__topline {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .hm-album-showcase--stage .hm-album-showcase__controls {
    justify-content: center;
  }

  .hm-album-stage {
    height: 500px;
  }

  .hm-album-stage__item {
    width: min(330px, 86vw);
    height: 430px;
    border-radius: 16px;
  }

  .hm-album-stage__item strong {
    max-width: 11ch;
    font-size: clamp(2.1rem, 12vw, 3rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hm-album-stage__item {
    transition: none;
  }
}

/* Adaptive social navigation: persistent on desktop, integrated on small screens. */
.hm-social-dock {
  position: fixed;
  top: 50%;
  right: 14px;
  z-index: 62;
  width: 50px;
  color: #fffaf0;
  opacity: 1;
  transform: translateY(-50%);
  transition: opacity 220ms ease, transform 220ms ease;
}

.hm-v2.hm-menu-open .hm-social-dock {
  opacity: 0;
  pointer-events: none;
  transform: translate(0.75rem, -50%);
}

.hm-social-links__eyebrow {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hm-social-links__items {
  display: flex;
  align-items: center;
}

.hm-social-links__link {
  color: inherit;
  text-decoration: none;
}

.hm-social-links__icon {
  flex: 0 0 auto;
  font-size: 1.18rem;
  line-height: 1;
}

.hm-social-links__icon--tiktok {
  width: 1.18rem;
  height: 1.18rem;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("../img/icons/tiktok.svg") center / contain no-repeat;
  mask: url("../img/icons/tiktok.svg") center / contain no-repeat;
}

.hm-social-links--dock {
  display: grid;
  justify-items: end;
  border: 1px solid rgba(242, 209, 122, 0.48);
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 8%, rgba(242, 209, 122, 0.2), transparent 5rem),
    rgba(5, 33, 51, 0.94);
  box-shadow: 0 18px 46px rgba(3, 18, 31, 0.28);
  backdrop-filter: blur(12px);
  overflow: visible;
}

.hm-social-links--dock .hm-social-links__eyebrow {
  width: 48px;
  min-height: 84px;
  display: grid;
  place-items: center;
  color: var(--hm-gold);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hm-social-links--dock .hm-social-links__items {
  width: 48px;
  flex-direction: column;
  align-items: flex-end;
}

.hm-social-links--dock .hm-social-links__link {
  width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 0.7rem;
  padding: 0 14px;
  border-top: 1px solid rgba(255, 250, 240, 0.13);
  background: rgba(5, 33, 51, 0.96);
  color: #fffaf0;
  overflow: hidden;
  white-space: nowrap;
  transition: width 220ms ease, background-color 220ms ease, color 220ms ease;
}

.hm-social-links--dock .hm-social-links__link:last-child {
  border-radius: 0 0 7px 7px;
}

.hm-social-links--dock .hm-social-links__link:hover,
.hm-social-links--dock .hm-social-links__link:focus-visible {
  width: 154px;
  background: var(--hm-gold);
  color: #17221c;
}

.hm-social-links--dock .hm-social-links__name {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateX(0.35rem);
  transition: opacity 160ms ease, transform 220ms ease;
}

.hm-social-links--dock .hm-social-links__link:hover .hm-social-links__name,
.hm-social-links--dock .hm-social-links__link:focus-visible .hm-social-links__name {
  opacity: 1;
  transform: translateX(0);
}

.hm-social-links--menu {
  display: none;
}

.hm-social-links--footer {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.hm-social-links--footer .hm-social-links__eyebrow {
  color: var(--hm-gold);
}

.hm-social-links--footer .hm-social-links__items {
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hm-footer .hm-social-links--footer .hm-social-links__link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 12px;
  background: rgba(255, 250, 240, 0.08);
  color: #fffaf0;
  font-size: 0.78rem;
  font-weight: 800;
  transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.hm-footer .hm-social-links--footer .hm-social-links__link:hover,
.hm-footer .hm-social-links--footer .hm-social-links__link:focus-visible {
  border-color: rgba(242, 209, 122, 0.58);
  background: rgba(242, 209, 122, 0.16);
  color: var(--hm-gold);
  transform: translateY(-2px);
}

.hm-social-links__link:focus-visible {
  outline: 3px solid #fffaf0;
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .hm-social-dock {
    display: none;
  }

  .hm-social-links--menu {
    width: 100%;
    display: grid;
    justify-items: center;
    gap: 0.65rem;
    margin: 0.25rem 0 0.5rem;
  }

  .hm-social-links--menu .hm-social-links__eyebrow {
    color: rgba(7, 48, 83, 0.68);
  }

  .hm-social-links--menu .hm-social-links__items {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .hm-menu__meta .hm-social-links--menu .hm-social-links__link {
    min-width: 82px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin: 0;
    padding: 0.55rem 0.7rem;
    border: 1px solid rgba(7, 48, 83, 0.14);
    border-radius: 12px;
    background: rgba(0, 108, 154, 0.08);
    color: var(--hm-sea-dark);
    font-size: 0.76rem;
    font-weight: 900;
  }

  .hm-menu__meta .hm-social-links--menu .hm-social-links__link:hover,
  .hm-menu__meta .hm-social-links--menu .hm-social-links__link:focus-visible {
    border-color: rgba(0, 108, 154, 0.34);
    background: rgba(0, 108, 154, 0.15);
    color: var(--hm-ink);
  }
}

@media (max-width: 380px) {
  .hm-menu__meta .hm-social-links--menu .hm-social-links__link {
    min-width: 74px;
    padding-inline: 0.55rem;
  }

  .hm-social-links--footer .hm-social-links__name {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hm-social-dock,
  .hm-social-links__link,
  .hm-social-links__name {
    transition: none;
  }
}
/* Public form feedback and reCAPTCHA */
.recaptcha-field {
    margin: 1rem 0;
    max-width: 100%;
    overflow: hidden;
}

.form-feedback {
    margin-top: 1rem;
}

.form-feedback__message {
    border-left: 3px solid currentColor;
    border-radius: 0.45rem;
    font-size: 0.9rem;
    line-height: 1.55;
    padding: 0.85rem 1rem;
}

.form-feedback__message--success {
    background: #eef8f1;
    color: #28623c;
}

.form-feedback__message--warning {
    background: #fff8e7;
    color: #805b12;
}

.form-feedback__message--error {
    background: #fff1ef;
    color: #9f2d24;
}

.form-feedback__message ul {
    margin: 0.45rem 0 0;
    padding-left: 1.15rem;
}

@media (max-width: 360px) {
    .recaptcha-field {
        transform: scale(0.88);
        transform-origin: left top;
        width: 114%;
    }
}
