﻿@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Nunito+Sans:ital,opsz,wght@0,6..12,400;0,6..12,600;0,6..12,700;1,6..12,400&display=swap");

:root {
  --ivory: #f7f2ea;
  --warm-white: #fffdf8;
  --sand: #d8c3a5;
  --stone: #b8aa98;
  --terracotta: #b86b4b;
  --wood: #8a5f3d;
  --sage: #a7b29a;
  --sea: #547c7c;
  --deep-sea: #244b4e;
  --ink: #1f1d1a;
  --muted: #6b6258;
  --gold: #d6a85e;
  --line: rgba(31, 29, 26, 0.14);
  --line-strong: rgba(31, 29, 26, 0.24);
  --shadow: 0 20px 50px rgba(31, 29, 26, 0.12);
  --radius: 10px;
  --radius-lg: 14px;
  --container: 1240px;
  --header: 96px;
  --section: clamp(4rem, 6vw, 6.8rem);
  --display: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --body: "Nunito Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-locale: "en";
}

.text-uppercase-en {
  text-transform: none;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.78), rgba(247, 242, 234, 0.96)),
    var(--ivory);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

html.lightbox-open,
body.lightbox-open {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

body.lightbox-open .site-footer {
  visibility: hidden;
  pointer-events: none;
}

[hidden] {
  display: none !important;
}

body.lightbox-open [data-table-request-modal],
[data-table-request-modal][data-lightbox-suppressed] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.table-request-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
}

.table-request-modal[hidden] {
  display: none !important;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--terracotta);
}

:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 200;
  transform: translateY(-140%);
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--warm-white);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section);
}

.section--white {
  background: var(--warm-white);
}

.section--dark {
  background: var(--ink);
  color: var(--warm-white);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 0.72fr);
  gap: clamp(1.6rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2rem, 4.5vw, 3.25rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 0.85rem;
  color: var(--sea);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.55;
}

.section--dark .eyebrow,
.page-hero .eyebrow,
.home-hero .eyebrow {
  color: rgba(255, 253, 248, 0.78);
}

.display-title,
.section-title,
.card-title,
.footer-title,
.room-title,
.page-title {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
}

.display-title {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: clamp(2.45rem, 4.5vw, 4.35rem);
  font-weight: 400;
  line-height: 1.06;
}

.page-title {
  max-width: 820px;
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 4.2vw, 4.5rem);
  line-height: 1;
}

.section-title {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.25vw, 3.45rem);
  line-height: 1.04;
}

.section-copy,
.lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
}

.section-copy {
  max-width: 680px;
  margin-bottom: 0;
}

.section--dark .section-copy {
  color: rgba(255, 253, 248, 0.72);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.82rem 1.22rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.3);
  color: inherit;
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  border-color: var(--terracotta);
  background: rgba(184, 107, 75, 0.1);
  color: var(--terracotta);
  box-shadow: 0 14px 34px rgba(31, 29, 26, 0.14);
  transform: translateY(-2px);
}

.button--primary {
  border-color: var(--deep-sea);
  background: var(--deep-sea);
  color: var(--warm-white);
}

.button--primary:hover {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: var(--warm-white);
}

.button--primary,
.button--light {
  position: relative;
  overflow: hidden;
}

.button--primary::after,
.button--light::after {
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.button--light {
  border-color: rgba(255, 253, 248, 0.48);
  color: var(--warm-white);
}

.button--light:hover {
  border-color: var(--warm-white);
  background: var(--warm-white);
  color: var(--ink);
}

.header-actions .button,
.home-hero .button,
.page-hero .button {
  box-shadow: 0 10px 28px rgba(31, 29, 26, 0.14);
}

.header-actions .button:hover,
.home-hero .button:hover,
.page-hero .button:hover {
  transform: translateY(-2px);
}

/* WP: header.php */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header);
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(31, 29, 26, 0.46), rgba(31, 29, 26, 0));
  color: var(--warm-white);
  transition: background-color 240ms ease, border-color 240ms ease, color 240ms ease, box-shadow 240ms ease, backdrop-filter 240ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(255, 253, 248, 0.96);
  color: var(--ink);
  box-shadow: 0 10px 35px rgba(31, 29, 26, 0.06);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(210px, 0.46fr) minmax(0, 1.9fr) minmax(128px, 0.3fr);
  align-items: center;
  min-height: var(--header);
  gap: clamp(1.25rem, 2.8vw, 3rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-width: 0;
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand img {
  width: clamp(188px, 13vw, 248px);
  height: auto;
  max-width: 260px;
  max-height: 86px;
  filter: brightness(0) invert(1);
  object-fit: contain;
  transform-origin: left center;
  transition: filter 240ms ease, transform 240ms ease;
}

.site-header.is-scrolled .brand img,
.site-header.nav-active .brand img {
  filter: brightness(0) saturate(100%);
  transform: scale(0.94);
}

.brand-text {
  display: inline-block;
}

.brand img:not(.is-missing) + .brand-text {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: clamp(0.7rem, 1.45vw, 1.55rem);
  min-width: 0;
}

.site-nav a,
.site-nav .nav-dropdown__trigger {
  position: relative;
  flex: 0 1 auto;
  display: inline-flex;
  align-items: center;
  padding: 0.58rem clamp(0.56rem, 0.86vw, 0.9rem);
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--body);
  font-size: clamp(0.82rem, 0.8vw, 0.92rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a::after,
.site-nav .nav-dropdown__trigger::after {
  display: none;
}

.nav-dropdown {
  position: relative;
  flex: 0 1 auto;
}

.nav-dropdown::before {
  position: absolute;
  top: 100%;
  right: -0.35rem;
  left: -0.35rem;
  z-index: 29;
  height: 0.75rem;
  content: "";
}

.nav-dropdown__chevron {
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 0.42rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 200ms ease;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0.55rem;
  right: auto;
  z-index: 30;
  display: grid;
  gap: 0.08rem;
  width: max-content;
  min-width: 0;
  max-width: min(220px, calc(100vw - 2rem));
  padding: 0.38rem 0.32rem 0.38rem 0.38rem;
  border: 1px solid rgba(31, 29, 26, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.98);
  color: var(--ink);
  box-shadow: 0 22px 48px rgba(31, 29, 26, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-0.2rem);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 0s linear 180ms;
}

.nav-dropdown__menu a {
  display: block;
  padding: 0.62rem 0.72rem;
  border: 1px solid transparent;
  border-radius: 10px;
  background: rgba(31, 29, 26, 0.04);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: none;
  box-shadow: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.nav-dropdown__menu a::after {
  display: none;
}

.nav-dropdown__menu a:hover {
  border-color: rgba(36, 75, 78, 0.14);
  background: rgba(216, 195, 165, 0.28);
  color: var(--ink);
}

.nav-dropdown__menu a.is-active {
  border-color: rgba(36, 75, 78, 0.22);
  background: rgba(36, 75, 78, 0.12);
  color: var(--deep-sea);
  box-shadow: inset 0 0 0 1px rgba(36, 75, 78, 0.06);
}

.nav-dropdown__menu a.is-active:hover {
  background: rgba(36, 75, 78, 0.16);
  color: var(--deep-sea);
}

.site-header.is-scrolled .nav-dropdown__menu a.is-active,
.site-header.nav-active .nav-dropdown__menu a.is-active {
  border-color: rgba(36, 75, 78, 0.24);
  background: rgba(36, 75, 78, 0.1);
  color: var(--deep-sea);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.nav-dropdown:hover .nav-dropdown__chevron,
.nav-dropdown.is-open .nav-dropdown__chevron,
.nav-dropdown:focus-within .nav-dropdown__chevron {
  transform: rotate(225deg) translateY(1px);
}

.site-nav a:hover,
.site-nav a.is-active,
.site-nav .nav-dropdown__trigger:hover,
.site-nav .nav-dropdown.is-open .nav-dropdown__trigger,
.site-nav .nav-dropdown:focus-within .nav-dropdown__trigger {
  border-color: rgba(255, 253, 248, 0.28);
  background: rgba(255, 253, 248, 0.12);
  color: var(--sand);
  transform: translateY(-1px);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a.is-active,
.site-header.is-scrolled .site-nav .nav-dropdown__trigger:hover,
.site-header.is-scrolled .site-nav .nav-dropdown.is-open .nav-dropdown__trigger,
.site-header.is-scrolled .site-nav .nav-dropdown:focus-within .nav-dropdown__trigger,
.site-header.nav-active .site-nav a:hover,
.site-header.nav-active .site-nav a.is-active,
.site-header.nav-active .site-nav .nav-dropdown__trigger:hover,
.site-header.nav-active .site-nav .nav-dropdown.is-open .nav-dropdown__trigger,
.site-header.nav-active .site-nav .nav-dropdown:focus-within .nav-dropdown__trigger {
  border-color: rgba(84, 124, 124, 0.2);
  background: rgba(84, 124, 124, 0.08);
  color: var(--deep-sea);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
}

.header-actions .button {
  min-height: 44px;
  padding-inline: 1.08rem;
  font-size: 0.72rem;
}

.header-phone {
  display: none;
}

.booking-dropdown {
  position: relative;
}

.book-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.7rem);
  display: grid;
  width: min(280px, calc(100vw - 2rem));
  padding: 0.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.98);
  color: var(--ink);
  box-shadow: 0 22px 48px rgba(31, 29, 26, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.4rem);
  transition: opacity 160ms ease, transform 160ms ease;
}

.booking-dropdown.is-open .book-menu,
.booking-dropdown:focus-within .book-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.book-menu a {
  display: grid;
  gap: 0.08rem;
  padding: 0.82rem 0.9rem;
  border-radius: 8px;
}

.book-menu a:hover {
  background: rgba(216, 195, 165, 0.28);
  color: var(--ink);
}

.book-menu strong {
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.08;
}

.book-menu span {
  color: var(--muted);
  font-size: 0.8rem;
}

.site-header:not(.is-scrolled):not(.nav-active) .header-actions .button {
  border-color: rgba(255, 253, 248, 0.46);
  color: var(--warm-white);
}

.site-header:not(.is-scrolled):not(.nav-active) .header-actions .button--primary {
  border-color: rgba(255, 253, 248, 0.92);
  background: rgba(255, 253, 248, 0.92);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  justify-self: end;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.home-hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--warm-white);
  background: linear-gradient(135deg, var(--deep-sea), var(--terracotta));
  isolation: isolate;
}

.home-hero::before,
.page-hero::before {
  position: absolute;
  inset: -8% 0;
  z-index: -2;
  background: var(--hero-image) center / cover no-repeat;
  content: "";
  transform: translate3d(0, calc(var(--parallax-y, 0) * 1px), 0) scale(1.04);
  transition: transform 80ms linear;
}

.home-hero::after,
.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 70% 28%, rgba(255, 253, 248, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(31, 29, 26, 0.38) 0%, rgba(31, 29, 26, 0.22) 42%, rgba(31, 29, 26, 0.52) 100%),
    linear-gradient(90deg, rgba(31, 29, 26, 0.58), rgba(31, 29, 26, 0.24) 58%, rgba(31, 29, 26, 0.1));
  content: "";
}

.hero-home,
.hero-entrance {
  --hero-image: url("../header1.jpg");
}

.hero-room {
  --hero-image: url("../header2.jpg");
}

.hero-restaurant {
  --hero-image: url("../header3.jpg");
}

.home-hero {
  min-height: 94svh;
}

.home-hero--slider {
  min-height: 100svh;
  height: 100svh;
}

.home-hero--slider::before,
.home-hero--slider::after {
  display: none;
}

.home-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.home-hero__track {
  display: flex;
  height: 100%;
  transition: transform 900ms cubic-bezier(0.4, 0.12, 0.2, 1);
  will-change: transform;
}

.home-hero__slide {
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
}

.home-hero__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 900ms cubic-bezier(0.4, 0.12, 0.2, 1);
}

.home-hero__slide.is-active img {
  transform: scale(1);
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 253, 248, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(31, 29, 26, 0.42) 0%, rgba(31, 29, 26, 0.28) 45%, rgba(31, 29, 26, 0.55) 100%),
    linear-gradient(90deg, rgba(31, 29, 26, 0.5), rgba(31, 29, 26, 0.32) 50%, rgba(31, 29, 26, 0.5));
  pointer-events: none;
}

.trust-line--center {
  justify-content: center;
}

.home-hero--slider .hero-inner {
  position: relative;
  z-index: 1;
}

.home-hero__dots {
  position: absolute;
  bottom: clamp(1.75rem, 3.5vw, 2.75rem);
  left: 50%;
  z-index: 3;
  display: flex;
  gap: 0.55rem;
  transform: translateX(-50%);
}

.home-hero__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 253, 248, 0.72);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.home-hero__dot.is-active {
  border-color: var(--warm-white);
  background: var(--warm-white);
  transform: scale(1.12);
}

.home-hero__dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__track,
  .home-hero__slide img {
    transition: none;
  }
}

.page-hero {
  min-height: min(480px, 68svh);
}

.page-hero--full {
  min-height: 82svh;
}

.hero-inner {
  display: grid;
  align-items: end;
  min-height: inherit;
  padding-block: calc(var(--header) + clamp(4rem, 8vw, 7rem)) clamp(2.5rem, 5vw, 4.2rem);
}

.hero-inner.hero-inner--center {
  place-content: center;
  place-items: center;
  align-items: center;
  justify-items: center;
  padding-block: calc(var(--header) + clamp(1.25rem, 3vw, 2rem)) clamp(5rem, 8vw, 6.5rem);
  text-align: center;
}

.hero-inner.hero-inner--center .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(760px, 100%);
  margin-inline: auto;
  text-align: center;
}

.hero-inner.hero-inner--center .eyebrow {
  justify-content: center;
}

.hero-inner.hero-inner--center .display-title,
.hero-inner.hero-inner--center .lead {
  margin-inline: auto;
  text-align: center;
}

.hero-inner.hero-inner--center .lead {
  margin-inline: auto;
}

.home-hero--slider .hero-button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-content {
  width: min(720px, 100%);
  opacity: 0;
  transform: translateY(18px);
  animation: hero-in 800ms ease 120ms forwards;
}

@keyframes hero-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-hero .lead,
.page-hero .lead {
  max-width: 640px;
  margin-bottom: 1.6rem;
  color: rgba(255, 253, 248, 0.84);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin: 1.55rem 0 0;
  padding: 0;
  color: rgba(255, 253, 248, 0.76);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  list-style: none;
  text-transform: uppercase;
}

.trust-line li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.trust-line li + li::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  opacity: 0.72;
}

.home-gallery-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3.5vw, 2.8rem);
  align-items: end;
}

.home-gallery-preview .gallery-grid {
  margin: 0;
}

.section-head--balanced {
  grid-template-columns: minmax(0, 1fr);
}

.section-head--balanced > div {
  max-width: 46rem;
}

.section-head--balanced .section-copy {
  margin-top: 0.35rem;
}

.home-rooms > .container.section-head--balanced {
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.home-rooms > .container.section-head--balanced > div {
  max-width: min(40rem, 100%);
}

.home-rooms .room-offers-grid {
  gap: clamp(1.1rem, 2.2vw, 1.45rem);
}

.home-rooms__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-top: 0.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.home-rooms__note {
  margin: 0;
  max-width: 40ch;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.home-closing {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(84, 124, 124, 0.16), transparent 44%),
    radial-gradient(circle at 82% 78%, rgba(184, 107, 75, 0.14), transparent 46%),
    linear-gradient(180deg, rgba(247, 242, 234, 0.72) 0%, rgba(247, 242, 234, 0.24) 42%, var(--ivory) 100%);
}

.home-closing::before {
  position: absolute;
  inset: -22% -12%;
  z-index: 0;
  background:
    radial-gradient(circle at 42% 38%, rgba(255, 253, 248, 0.82), rgba(255, 253, 248, 0) 58%),
    conic-gradient(from 210deg at 50% 50%, rgba(36, 75, 78, 0.1), rgba(184, 107, 75, 0.08), rgba(36, 75, 78, 0.1));
  filter: blur(28px);
  opacity: 0.72;
  animation: home-closing-glow 20s ease-in-out infinite;
  content: "";
  pointer-events: none;
}

.home-closing::after {
  position: absolute;
  inset: auto -8% -35% 55%;
  z-index: 0;
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 107, 75, 0.14) 0%, rgba(184, 107, 75, 0) 68%);
  animation: home-closing-float 16s ease-in-out infinite;
  content: "";
  pointer-events: none;
}

@keyframes home-closing-glow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.68;
  }

  50% {
    transform: translate3d(1.8%, -1.2%, 0) scale(1.04);
    opacity: 0.86;
  }
}

@keyframes home-closing-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-4%, -6%, 0);
  }
}

@keyframes home-closing-panel-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-closing__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.82fr);
  gap: clamp(1.35rem, 4vw, 3rem);
  align-items: stretch;
}

.home-closing__visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: clamp(320px, 42vw, 480px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 29, 26, 0.1);
  box-shadow: 0 26px 72px rgba(31, 29, 26, 0.12);
  transition: box-shadow 420ms ease, transform 420ms ease;
}

.home-closing__visual:hover {
  box-shadow: 0 32px 84px rgba(31, 29, 26, 0.16);
  transform: translateY(-4px);
}

.home-closing__visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-closing__visual:hover img {
  transform: scale(1.045);
}

.home-closing__visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.35rem 1.4rem;
  background:
    linear-gradient(180deg, rgba(31, 29, 26, 0) 0%, rgba(31, 29, 26, 0.88) 100%);
  color: rgba(255, 253, 248, 0.9);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  line-height: 1.45;
  transform: translateY(0);
  transition: transform 420ms ease, background 420ms ease;
}

.home-closing__visual:hover figcaption {
  transform: translateY(-2px);
  background:
    linear-gradient(180deg, rgba(31, 29, 26, 0) 0%, rgba(31, 29, 26, 0.92) 100%);
}

.home-closing__panel {
  display: grid;
  align-content: center;
  gap: 0.95rem;
}

body.js-ready .home-closing.is-visible .home-closing__panel > * {
  animation: home-closing-panel-in 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.js-ready .home-closing.is-visible .home-closing__panel > *:nth-child(1) {
  animation-delay: 80ms;
}

body.js-ready .home-closing.is-visible .home-closing__panel > *:nth-child(2) {
  animation-delay: 160ms;
}

body.js-ready .home-closing.is-visible .home-closing__panel > *:nth-child(3) {
  animation-delay: 240ms;
}

body.js-ready .home-closing.is-visible .home-closing__panel > *:nth-child(4) {
  animation-delay: 320ms;
}

body.js-ready .home-closing.is-visible .home-closing__panel > *:nth-child(5) {
  animation-delay: 400ms;
}

.home-closing__panel .section-title {
  max-width: 16ch;
}

.home-path-cards {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.home-path-card {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 0.18rem;
  padding: 1.08rem 3rem 1.08rem 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(31, 29, 26, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.92) 0%, rgba(255, 253, 248, 0.98) 52%, rgba(84, 124, 124, 0.05) 100%);
  box-shadow: 0 14px 38px rgba(31, 29, 26, 0.08);
  transition:
    border-color 260ms ease,
    box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    background 320ms ease;
}

.home-path-card > * {
  position: relative;
  z-index: 1;
}

.home-path-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    115deg,
    rgba(255, 253, 248, 0) 28%,
    rgba(255, 253, 248, 0.72) 48%,
    rgba(255, 253, 248, 0) 68%
  );
  opacity: 0;
  transform: translateX(-130%) skewX(-14deg);
  transition: opacity 280ms ease;
  content: "";
  pointer-events: none;
}

.home-path-card::after {
  position: absolute;
  top: 50%;
  right: 1.1rem;
  z-index: 1;
  color: var(--deep-sea);
  font-size: 1.15rem;
  line-height: 1;
  opacity: 0;
  transform: translate(10px, -50%);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 280ms ease, color 280ms ease;
  content: "â†’";
}

.home-path-card:hover {
  border-color: rgba(84, 124, 124, 0.34);
  box-shadow: 0 24px 58px rgba(31, 29, 26, 0.14);
  transform: translateY(-4px) scale(1.01);
}

.home-path-card:hover::before {
  opacity: 1;
  animation: home-path-shimmer 760ms ease;
}

.home-path-card:hover::after {
  opacity: 1;
  transform: translate(0, -50%);
}

@keyframes home-path-shimmer {
  from {
    transform: translateX(-130%) skewX(-14deg);
  }

  to {
    transform: translateX(130%) skewX(-14deg);
  }
}

.home-path-card--primary,
.home-path-card--stay {
  border-color: rgba(36, 75, 78, 0.28);
  background:
    linear-gradient(135deg, rgba(84, 124, 124, 0.18) 0%, rgba(255, 253, 248, 0.96) 58%, rgba(184, 107, 75, 0.08) 100%);
}

.home-path-card--primary:hover,
.home-path-card--stay:hover {
  border-color: rgba(36, 75, 78, 0.44);
  background:
    linear-gradient(135deg, rgba(84, 124, 124, 0.24) 0%, rgba(255, 253, 248, 0.98) 54%, rgba(184, 107, 75, 0.12) 100%);
}

.home-path-card--dine {
  border-color: rgba(184, 107, 75, 0.24);
  background:
    linear-gradient(135deg, rgba(184, 107, 75, 0.16) 0%, rgba(255, 253, 248, 0.96) 56%, rgba(84, 124, 124, 0.06) 100%);
}

.home-path-card--dine:hover {
  border-color: rgba(184, 107, 75, 0.38);
  background:
    linear-gradient(135deg, rgba(184, 107, 75, 0.22) 0%, rgba(255, 253, 248, 0.98) 52%, rgba(84, 124, 124, 0.1) 100%);
}

.home-path-card--dine::after {
  color: var(--terracotta);
}

.home-path-card--ask {
  border-color: rgba(31, 29, 26, 0.14);
  background:
    linear-gradient(135deg, rgba(31, 29, 26, 0.05) 0%, rgba(255, 253, 248, 0.96) 54%, rgba(84, 124, 124, 0.1) 100%);
}

.home-path-card--ask:hover {
  border-color: rgba(84, 124, 124, 0.3);
  background:
    linear-gradient(135deg, rgba(31, 29, 26, 0.07) 0%, rgba(255, 253, 248, 0.98) 50%, rgba(84, 124, 124, 0.14) 100%);
}

.home-path-card__eyebrow {
  color: var(--sea);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 260ms ease, letter-spacing 260ms ease;
}

.home-path-card:hover .home-path-card__eyebrow {
  letter-spacing: 0.14em;
}

.home-path-card--dine .home-path-card__eyebrow {
  color: var(--terracotta);
}

.home-path-card--ask .home-path-card__eyebrow {
  color: var(--deep-sea);
}

.home-path-card strong {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--ink);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-path-card:hover strong {
  transform: translateX(2px);
}

.home-path-card__hint {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
  transition: color 260ms ease;
}

.home-path-card:hover .home-path-card__hint {
  color: rgba(31, 29, 26, 0.72);
}

.home-closing__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.1rem;
  margin: 0.65rem 0 0;
  padding: 0;
  list-style: none;
}

.home-closing__trust li {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-closing__trust li + li::before {
  display: inline-block;
  margin-right: 1.1rem;
  color: var(--sand);
  content: "Â·";
}

.faq-teaser {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.faq-teaser__intro h2 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 500;
  line-height: 1.04;
}

.faq-teaser__intro p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  max-width: 38ch;
}

.faq-teaser__list {
  display: grid;
  gap: 0.65rem;
}

.faq-teaser__list details summary {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.46fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
}

.story-media {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 0.9rem;
}

.story-media figure {
  margin: 0;
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(84, 124, 124, 0.24), rgba(184, 107, 75, 0.16));
}

.story-media figure:nth-child(2) {
  margin-top: 3rem;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.story-media figure {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.story-media figure:hover {
  box-shadow: 0 24px 58px rgba(31, 29, 26, 0.14);
  transform: translateY(-4px);
}

.story-media figure:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.045);
}

.full-bleed-photo {
  width: 100%;
  min-height: calc(100svh - var(--header));
  background: var(--ink);
}

.full-bleed-photo img {
  width: 100%;
  height: calc(100svh - var(--header));
  min-height: 520px;
  object-fit: cover;
}

/* Room detail page */
body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

/* â€”â€” Room detail page â€”â€” */
.room-detail-page {
  padding-top: 0;
  background: var(--ivory);
}

.page-hero.room-detail-hero {
  min-height: min(520px, 72svh);
}

.page-hero.room-detail-hero .page-title {
  max-width: 16ch;
}

.page-hero.room-detail-hero .lead {
  max-width: 52ch;
}

.room-detail-shell {
  padding-block: clamp(1.5rem, 2.8vw, 2.25rem) clamp(2.25rem, 4vw, 3.25rem);
}

.room-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(272px, 300px);
  gap: clamp(1.15rem, 2.2vw, 1.75rem);
  align-items: start;
  width: min(100%, 1140px);
  max-width: 1140px;
  margin-inline: auto;
}

.room-detail-layout__main {
  display: grid;
  gap: clamp(2rem, 3.2vw, 2.85rem);
  min-width: 0;
}

.room-detail-amenities,
.room-detail-gallery-block {
  display: grid;
  gap: 0;
}

.room-detail-block-head {
  display: grid;
  gap: 0.45rem;
  margin-bottom: clamp(1rem, 1.8vw, 1.35rem);
}

.room-detail-block-head .section-title {
  margin: 0;
  max-width: none;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
}

.room-gallery {
  padding: 0;
  display: grid;
  gap: 0;
}

.room-detail-gallery-block .room-gallery {
  margin-top: 0;
  border: 1px solid rgba(31, 29, 26, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--warm-white);
  box-shadow: 0 16px 40px rgba(31, 29, 26, 0.07);
}

.room-detail-shell .room-gallery__main {
  aspect-ratio: 16 / 10;
  min-height: clamp(220px, 34vw, 400px);
  max-height: 440px;
}

.room-gallery--full {
  padding-inline: 0;
}

.room-gallery__shell {
  width: 100%;
  max-width: 1360px;
}

.room-gallery:not(.room-gallery--full) .room-gallery__stage-wrap {
  padding-top: 0;
}

.room-gallery--full .room-gallery__stage-wrap {
  width: 100%;
  padding-top: var(--header);
}

body.admin-bar .room-gallery--full .room-gallery__stage-wrap {
  padding-top: calc(var(--header) + 32px);
}

@media (max-width: 782px) {
  body.admin-bar .room-gallery--full .room-gallery__stage-wrap {
    padding-top: calc(var(--header) + 46px);
  }
}

.room-gallery--full .room-gallery__stage {
  border-radius: 0;
  box-shadow: none;
}

.room-gallery__thumbs-wrap {
  padding-block: 1rem 1.25rem;
  border-bottom: 1px solid rgba(31, 29, 26, 0.08);
  background: var(--warm-white);
}

.room-gallery__stage {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(216, 195, 165, 0.2);
  box-shadow: 0 28px 72px rgba(31, 29, 26, 0.12);
}

.room-gallery__main {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: clamp(300px, 48vw, 580px);
  max-height: min(72vh, 760px);
  cursor: zoom-in;
}

.room-gallery__main-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.room-gallery__main:hover .room-gallery__main-img {
  transform: scale(1.02);
}

.room-gallery__caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  margin: 0;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(31, 29, 26, 0.62);
  color: rgba(255, 253, 248, 0.92);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.room-gallery__caption[hidden] {
  display: none;
}

.room-gallery__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 253, 248, 0.35);
  border-radius: 999px;
  background: rgba(31, 29, 26, 0.45);
  color: var(--warm-white);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 180ms ease, transform 180ms ease, border-color 180ms ease;
  backdrop-filter: blur(8px);
}

.room-gallery__nav:hover {
  background: rgba(31, 29, 26, 0.72);
  transform: translateY(-50%) scale(1.05);
}

.room-gallery__nav--prev {
  left: 1rem;
}

.room-gallery__nav--next {
  right: 1rem;
}

.room-gallery__counter {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: rgba(31, 29, 26, 0.52);
  color: rgba(255, 253, 248, 0.9);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

.room-gallery__thumbs {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding-bottom: 0.2rem;
}

.room-gallery__thumb {
  flex: 0 0 clamp(108px, 14vw, 156px);
  width: clamp(108px, 14vw, 156px);
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  scroll-snap-align: start;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.room-gallery__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-gallery__thumb:hover {
  transform: translateY(-2px);
}

.room-gallery__thumb.is-active {
  border-color: var(--deep-sea);
  box-shadow: 0 10px 24px rgba(31, 29, 26, 0.12);
}

.room-detail-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0 0 0.15rem;
  list-style: none;
  border-bottom: 1px solid rgba(31, 29, 26, 0.08);
}

.room-detail-facts li {
  display: grid;
  gap: 0.05rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(31, 29, 26, 0.09);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.94);
}

.room-detail-facts strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.1;
}

.room-detail-facts span {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.room-detail-quick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.65rem, 1.2vw, 0.9rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.room-detail-quick li {
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(31, 29, 26, 0.09);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.9);
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.38;
}

.room-detail-story,
.room-story {
  display: grid;
  gap: 0.9rem;
  max-width: 62ch;
}

.room-detail-story p + p,
.room-story p + p {
  margin-top: 0.15rem;
}

.room-detail-story > .eyebrow,
.room-detail-story > h2,
.room-detail-story > h3,
.room-detail-story > p,
.room-story > .eyebrow,
.room-story > h2,
.room-story > h3,
.room-story > p {
  margin-top: 0;
}

.room-detail-story .wp-block-columns,
.room-detail-story .wp-block-group,
.room-story .wp-block-columns,
.room-story .wp-block-group {
  display: block;
  max-width: 62ch;
}

.room-detail-story p:last-child,
.room-story p:last-child {
  margin-bottom: 0;
}

.room-detail-amenities__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.4vw, 1.15rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.room-detail-panel {
  position: sticky;
  top: calc(var(--header) + 0.85rem);
  display: grid;
  gap: 0.85rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(31, 29, 26, 0.1);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 242, 234, 0.94));
  box-shadow: 0 18px 44px rgba(31, 29, 26, 0.1);
}

.room-detail-panel__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 400;
  line-height: 1.15;
}

.room-detail-panel__meta {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.room-detail-panel__meta div {
  display: grid;
  gap: 0.15rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(31, 29, 26, 0.08);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.88);
}

.room-detail-panel__meta dt {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-detail-panel__meta dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.35;
}

.room-detail-panel__cta {
  display: grid;
  gap: 0.5rem;
}

.room-detail-panel__cta .button {
  width: 100%;
  justify-content: center;
}

.room-amenity-card {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(31, 29, 26, 0.08);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.94);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.room-amenity-card:hover {
  border-color: rgba(84, 124, 124, 0.22);
  box-shadow: 0 14px 32px rgba(31, 29, 26, 0.06);
  transform: translateY(-2px);
}

.room-amenity-card__icon {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(84, 124, 124, 0.14);
  mask: center / 20px 20px no-repeat;
  -webkit-mask: center / 20px 20px no-repeat;
}

.room-amenity-card__icon--view {
  background-color: var(--deep-sea);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M2 12s3.5-7 10-7 10 7 10 7-3.5 7-10 7-10-7-10-7z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M2 12s3.5-7 10-7 10 7 10 7-3.5 7-10 7-10-7-10-7z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
}

.room-amenity-card__icon--size {
  background-color: var(--deep-sea);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='4' y='4' width='16' height='16' rx='1'/%3E%3Cpath d='M9 4v16M4 9h16'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='4' y='4' width='16' height='16' rx='1'/%3E%3Cpath d='M9 4v16M4 9h16'/%3E%3C/svg%3E");
}

.room-amenity-card__icon--balcony {
  background-color: var(--deep-sea);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 20h16'/%3E%3Cpath d='M6 20V10l6-4 6 4v10'/%3E%3Cpath d='M10 14h4'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 20h16'/%3E%3Cpath d='M6 20V10l6-4 6 4v10'/%3E%3Cpath d='M10 14h4'/%3E%3C/svg%3E");
}

.room-amenity-card__icon--bed {
  background-color: var(--deep-sea);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M3 12V8a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v8'/%3E%3Cpath d='M3 12h18v4H3z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M3 12V8a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v8'/%3E%3Cpath d='M3 12h18v4H3z'/%3E%3C/svg%3E");
}

.room-amenity-card__icon--bath {
  background-color: var(--deep-sea);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 14h16v3a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3z'/%3E%3Cpath d='M6 7V5a2 2 0 0 1 2-2h1'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 14h16v3a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3z'/%3E%3Cpath d='M6 7V5a2 2 0 0 1 2-2h1'/%3E%3C/svg%3E");
}

.room-amenity-card__icon--wifi {
  background-color: var(--deep-sea);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M5 9a10 10 0 0 1 14 0'/%3E%3Cpath d='M8 12a6 6 0 0 1 8 0'/%3E%3Ccircle cx='12' cy='18' r='1' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M5 9a10 10 0 0 1 14 0'/%3E%3Cpath d='M8 12a6 6 0 0 1 8 0'/%3E%3Ccircle cx='12' cy='18' r='1' fill='black'/%3E%3C/svg%3E");
}

.room-amenity-card__icon--breakfast {
  background-color: var(--terracotta);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M6 8h12v9a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V8z'/%3E%3Cpath d='M18 5v3'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M6 8h12v9a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V8z'/%3E%3Cpath d='M18 5v3'/%3E%3C/svg%3E");
}

.room-amenity-card__icon--coffee,
.room-amenity-card__icon--tea {
  background-color: var(--deep-sea);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 8h12v7a4 4 0 0 1-4 4H8a4 4 0 0 1-4-4V8z'/%3E%3Cpath d='M16 10h2a2 2 0 0 1 0 4h-2'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 8h12v7a4 4 0 0 1-4 4H8a4 4 0 0 1-4-4V8z'/%3E%3Cpath d='M16 10h2a2 2 0 0 1 0 4h-2'/%3E%3C/svg%3E");
}

.room-amenity-card__icon--sofa,
.room-amenity-card__icon--slippers,
.room-amenity-card__icon--towel,
.room-amenity-card__icon--aircon,
.room-amenity-card__icon--safe,
.room-amenity-card__icon--minibar,
.room-amenity-card__icon--pet,
.room-amenity-card__icon--stay {
  background-color: var(--deep-sea);
}

.room-amenity-card__icon--sofa {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 13h16v5H4z'/%3E%3Cpath d='M6 13V9a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v4'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 13h16v5H4z'/%3E%3Cpath d='M6 13V9a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v4'/%3E%3C/svg%3E");
}

.room-amenity-card__icon--slippers {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M5 16h7a3 3 0 0 0 3-3V9'/%3E%3Cpath d='M5 16a3 3 0 0 0 0 6h10'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M5 16h7a3 3 0 0 0 3-3V9'/%3E%3Cpath d='M5 16a3 3 0 0 0 0 6h10'/%3E%3C/svg%3E");
}

.room-amenity-card__icon--towel {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='5' y='4' width='14' height='16' rx='2'/%3E%3Cpath d='M9 8h6M9 12h6'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='5' y='4' width='14' height='16' rx='2'/%3E%3Cpath d='M9 8h6M9 12h6'/%3E%3C/svg%3E");
}

.room-amenity-card__icon--aircon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='5' width='18' height='6' rx='2'/%3E%3Cpath d='M6 15v4M12 15v4M18 15v4'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='5' width='18' height='6' rx='2'/%3E%3Cpath d='M6 15v4M12 15v4M18 15v4'/%3E%3C/svg%3E");
}

.room-amenity-card__icon--safe {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='4' y='4' width='16' height='16' rx='2'/%3E%3Ccircle cx='12' cy='12' r='2'/%3E%3Cpath d='M12 10v2'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='4' y='4' width='16' height='16' rx='2'/%3E%3Ccircle cx='12' cy='12' r='2'/%3E%3Cpath d='M12 10v2'/%3E%3C/svg%3E");
}

.room-amenity-card__icon--minibar {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='7' y='3' width='10' height='18' rx='2'/%3E%3Cpath d='M9 7h6'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='7' y='3' width='10' height='18' rx='2'/%3E%3Cpath d='M9 7h6'/%3E%3C/svg%3E");
}

.room-amenity-card__icon--pet {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='8' cy='8' r='2'/%3E%3Ccircle cx='16' cy='8' r='2'/%3E%3Ccircle cx='12' cy='6' r='2'/%3E%3Cpath d='M7 15a5 5 0 0 1 10 0v3H7z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='8' cy='8' r='2'/%3E%3Ccircle cx='16' cy='8' r='2'/%3E%3Ccircle cx='12' cy='6' r='2'/%3E%3Cpath d='M7 15a5 5 0 0 1 10 0v3H7z'/%3E%3C/svg%3E");
}

.room-amenity-card__icon--stay {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 6h16v14H4z'/%3E%3Cpath d='M8 3v6M16 3v6M4 11h16'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 6h16v14H4z'/%3E%3Cpath d='M8 3v6M16 3v6M4 11h16'/%3E%3C/svg%3E");
}

.room-amenity-card__icon--default {
  background-color: var(--deep-sea);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 8v4l2.5 2.5'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 8v4l2.5 2.5'/%3E%3C/svg%3E");
}

.room-amenity-card__copy strong {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.15;
}

.room-amenity-card__copy p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

@keyframes room-fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.js-ready .room-detail-layout__main,
body.js-ready .room-detail-panel {
  animation: room-fade-up 520ms ease both;
}

body.js-ready .room-detail-panel {
  animation-delay: 80ms;
}

.room-detail-others {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(circle at 18% 0%, rgba(84, 124, 124, 0.08), transparent 42%),
    var(--ivory);
}

.room-detail-others .section-head--balanced {
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.room-detail-others .room-offers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.35rem);
}

.room-detail-others .room-offer-card {
  flex: 0 1 calc(33.333% - 1rem);
  min-width: min(100%, 300px);
  max-width: 400px;
}

.room-note {
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--terracotta);
  background: rgba(216, 195, 165, 0.18);
  color: var(--muted);
  font-size: 0.92rem;
}
.room-card img,
.gallery-item img,
.restaurant-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item img,
.restaurant-media img,
.menu-feature {
  transition: transform 520ms ease, filter 520ms ease;
}

.restaurant-media:hover img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.045);
}

.card-title {
  margin-bottom: 0.75rem;
  font-size: clamp(1.7rem, 2.6vw, 2.55rem);
  line-height: 1.05;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.35rem);
}

.rooms-carousel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  overflow: visible;
  padding: 0;
  cursor: default;
}

.rooms-carousel::-webkit-scrollbar {
  height: 8px;
}

.rooms-carousel::-webkit-scrollbar-track {
  background: rgba(31, 29, 26, 0.06);
  border-radius: 999px;
}

.rooms-carousel::-webkit-scrollbar-thumb {
  background: rgba(84, 124, 124, 0.48);
  border-radius: 999px;
}

.rooms-carousel:active {
  cursor: grabbing;
}

.rooms-brief {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.54fr);
  gap: clamp(1.25rem, 4vw, 3.5rem);
  align-items: end;
  padding-block: clamp(0.5rem, 2vw, 1.5rem);
}

.rooms-brief .section-title {
  max-width: 720px;
  font-size: clamp(2rem, 3.35vw, 3.7rem);
}

.rooms-brief .section-copy {
  max-width: 660px;
}

/* WP: template-parts/room-offer-card.php â€” Expedia-inspired, Carpe Diem palette */
.room-offers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  align-items: stretch;
}

.room-offer-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--warm-white);
  box-shadow: 0 12px 32px rgba(31, 29, 26, 0.07);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.room-offer-card:hover {
  border-color: rgba(84, 124, 124, 0.32);
  box-shadow: 0 22px 52px rgba(31, 29, 26, 0.12);
  transform: translateY(-4px);
}

.room-offer-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(216, 195, 165, 0.28);
}

.room-offer-card__slides {
  position: absolute;
  inset: 0;
}

.room-offer-card__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 0;
  transition: opacity 320ms ease, transform 520ms ease;
}

.room-offer-card__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.room-offer-card:hover .room-offer-card__slide.is-active {
  transform: scale(1.03);
}

.room-offer-card__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.55);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.92);
  color: var(--ink);
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 180ms ease, background-color 180ms ease, transform 180ms ease;
  box-shadow: 0 8px 22px rgba(31, 29, 26, 0.14);
}

.room-offer-card__nav span {
  font-size: 1.35rem;
  line-height: 1;
}

.room-offer-card__nav--prev {
  left: 0.65rem;
}

.room-offer-card__nav--next {
  right: 0.65rem;
}

.room-offer-card__media:hover .room-offer-card__nav,
.room-offer-card__media:focus-within .room-offer-card__nav {
  opacity: 1;
}

.room-offer-card__nav:hover {
  background: var(--warm-white);
  transform: translateY(-50%) scale(1.05);
}

.room-offer-card__photos {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(31, 29, 26, 0.62);
  color: var(--warm-white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.room-offer-card__photos::before {
  width: 14px;
  height: 11px;
  background: currentColor;
  content: "";
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Ccircle cx='8.5' cy='11' r='1.5' fill='black' stroke='none'/%3E%3Cpath d='M21 16l-5-5-3 3-2-2-5 5'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Ccircle cx='8.5' cy='11' r='1.5' fill='black' stroke='none'/%3E%3Cpath d='M21 16l-5-5-3 3-2-2-5 5'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.9;
}

.room-offer-card__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  padding: 0.38rem 0.62rem;
  border-radius: 6px;
  background: var(--deep-sea);
  color: var(--warm-white);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.room-offer-card__badge--town {
  background: var(--wood);
}

.room-offer-card__badge--compact {
  background: var(--sea);
}

.room-offer-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.1rem 1.15rem 1.15rem;
}

.room-offer-card__number {
  margin: 0 0 0.35rem;
  color: var(--terracotta);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.room-offer-card__title {
  margin: 0 0 0.85rem;
  font-family: var(--body);
  font-size: clamp(1.02rem, 1.35vw, 1.12rem);
  font-weight: 700;
  line-height: 1.35;
}

.room-offer-card__title a {
  color: var(--ink);
  transition: color 160ms ease;
}

.room-offer-card__title a:hover {
  color: var(--deep-sea);
}

.room-offer-card__features {
  display: grid;
  gap: 0.42rem;
  margin: 0 0 0.9rem;
  padding: 0;
  list-style: none;
}

.room-offer-card__features li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.55rem;
  align-items: center;
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.35;
}

.room-offer-card__icon {
  display: block;
  width: 18px;
  height: 18px;
  background: var(--sea);
  opacity: 0.88;
  mask: center / 16px 16px no-repeat;
  -webkit-mask: center / 16px 16px no-repeat;
}

.room-offer-card__icon--view {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M2 12s3.5-7 10-7 10 7 10 7-3.5 7-10 7-10-7-10-7z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M2 12s3.5-7 10-7 10 7 10 7-3.5 7-10 7-10-7-10-7z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
}

.room-offer-card__icon--size {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='4' y='4' width='16' height='16' rx='1'/%3E%3Cpath d='M9 4v16M4 9h16'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='4' y='4' width='16' height='16' rx='1'/%3E%3Cpath d='M9 4v16M4 9h16'/%3E%3C/svg%3E");
}

.room-offer-card__icon--guests {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='9' cy='8' r='3'/%3E%3Cpath d='M3 20c0-3.3 2.7-6 6-6s6 2.7 6 6'/%3E%3Cpath d='M16 11h5M18.5 8.5v5'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='9' cy='8' r='3'/%3E%3Cpath d='M3 20c0-3.3 2.7-6 6-6s6 2.7 6 6'/%3E%3Cpath d='M16 11h5M18.5 8.5v5'/%3E%3C/svg%3E");
}

.room-offer-card__icon--bed {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M3 12V8a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v8'/%3E%3Cpath d='M3 12h18v4H3z'/%3E%3Cpath d='M7 8v4'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M3 12V8a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v8'/%3E%3Cpath d='M3 12h18v4H3z'/%3E%3Cpath d='M7 8v4'/%3E%3C/svg%3E");
}

.room-offer-card__icon--bath {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 14h16v3a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3z'/%3E%3Cpath d='M6 7V5a2 2 0 0 1 2-2h1'/%3E%3Cpath d='M6 14V9'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 14h16v3a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3z'/%3E%3Cpath d='M6 7V5a2 2 0 0 1 2-2h1'/%3E%3Cpath d='M6 14V9'/%3E%3C/svg%3E");
}

.room-offer-card__icon--wifi {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M5 9a10 10 0 0 1 14 0'/%3E%3Cpath d='M8 12a6 6 0 0 1 8 0'/%3E%3Cpath d='M11 15a2 2 0 0 1 2 0'/%3E%3Ccircle cx='12' cy='18' r='1' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M5 9a10 10 0 0 1 14 0'/%3E%3Cpath d='M8 12a6 6 0 0 1 8 0'/%3E%3Cpath d='M11 15a2 2 0 0 1 2 0'/%3E%3Ccircle cx='12' cy='18' r='1' fill='black'/%3E%3C/svg%3E");
}

.room-offer-card__icon--breakfast {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M6 8h12v9a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V8z'/%3E%3Cpath d='M6 8V6a2 2 0 0 1 2-2h1'/%3E%3Cpath d='M18 5v3'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M6 8h12v9a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V8z'/%3E%3Cpath d='M6 8V6a2 2 0 0 1 2-2h1'/%3E%3Cpath d='M18 5v3'/%3E%3C/svg%3E");
}

.room-offer-card__highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(31, 29, 26, 0.08);
  border-radius: 10px;
  background: rgba(247, 242, 234, 0.85);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
}

.room-offer-card__highlight-icon {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(84, 124, 124, 0.14);
}

.room-offer-card__highlight-icon--balcony {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23244B4E' stroke-width='2'%3E%3Cpath d='M4 20h16'/%3E%3Cpath d='M6 20V10l6-4 6 4v10'/%3E%3Cpath d='M10 14h4'/%3E%3C/svg%3E") center / 18px 18px no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23244B4E' stroke-width='2'%3E%3Cpath d='M4 20h16'/%3E%3Cpath d='M6 20V10l6-4 6 4v10'/%3E%3Cpath d='M10 14h4'/%3E%3C/svg%3E") center / 18px 18px no-repeat;
  background-color: var(--deep-sea);
}

.room-offer-card__highlight-icon--town {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23244B4E' stroke-width='2'%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M6 21V7l6-4 6 4v14'/%3E%3Cpath d='M10 11h1M14 11h1M10 15h1M14 15h1'/%3E%3C/svg%3E") center / 18px 18px no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23244B4E' stroke-width='2'%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M6 21V7l6-4 6 4v14'/%3E%3Cpath d='M10 11h1M14 11h1M10 15h1M14 15h1'/%3E%3C/svg%3E") center / 18px 18px no-repeat;
  background-color: var(--wood);
}

.room-offer-card__footer {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0.65rem;
  align-items: stretch;
  margin-top: auto;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(31, 29, 26, 0.1);
}

.room-offer-card__footer .room-offer-card__details,
.room-offer-card__footer .room-offer-card__reserve,
.room-offer-card__footer .room-offer-card__meta .room-offer-card__details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin: 0;
  padding: 0.72rem 0.75rem;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.room-offer-card__footer .room-offer-card__details,
.room-offer-card__footer .room-offer-card__meta .room-offer-card__details {
  border: 1px solid rgba(36, 75, 78, 0.28);
  background: rgba(255, 253, 248, 0.95);
  color: var(--deep-sea);
  box-shadow: inset 0 1px 0 rgba(255, 253, 248, 0.8);
}

.room-offer-card__footer .room-offer-card__details:hover,
.room-offer-card__footer .room-offer-card__details.button:hover,
.room-offer-card__footer .room-offer-card__meta .room-offer-card__details:hover {
  border-color: rgba(36, 75, 78, 0.45);
  background: rgba(84, 124, 124, 0.1);
  color: var(--deep-sea);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(31, 29, 26, 0.08);
}

.room-offer-card__footer .room-offer-card__reserve {
  width: 100%;
  min-height: 44px;
  padding-inline: 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.room-offer-card__meta {
  display: grid;
  gap: 0.35rem;
  align-content: end;
}

.room-offer-card__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.4;
}

.room-offer-card__booking {
  display: grid;
  align-content: end;
}

.room-list {
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
}

.room-list-card {
  display: grid;
  grid-template-columns: minmax(340px, 0.52fr) minmax(0, 0.78fr);
  overflow: hidden;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(31, 29, 26, 0.07);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background-color 260ms ease;
}

.room-list-card:hover {
  border-color: rgba(84, 124, 124, 0.34);
  background: #fffaf2;
  box-shadow: 0 30px 74px rgba(31, 29, 26, 0.15);
  color: var(--ink);
  transform: translateY(-8px);
}

.room-list-card figure {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  margin: 0;
  background: rgba(216, 195, 165, 0.24);
}

.room-list-card figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 62%, rgba(31, 29, 26, 0.16));
  content: "";
  opacity: 0;
  transition: opacity 260ms ease;
}

.room-list-card:hover figure::after {
  opacity: 1;
}

.room-list-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 560ms ease, filter 560ms ease;
}

.room-list-card:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.055);
}

.room-list-content {
  display: grid;
  align-content: center;
  padding: clamp(1.35rem, 2.8vw, 2.2rem);
}

.room-list-kicker {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  color: var(--terracotta);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.room-list-card h3 {
  max-width: 680px;
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.45vw, 2.55rem);
  font-weight: 400;
  line-height: 1.02;
}

.room-list-card p {
  max-width: 620px;
  margin: 0 0 1.15rem;
  color: var(--muted);
}

.room-list-facts {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(31, 29, 26, 0.1);
}

.room-list-facts div {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(31, 29, 26, 0.08);
}

.room-list-facts dt {
  color: var(--sea);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.room-list-facts dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.08rem;
  text-align: right;
}

.room-list-action {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.15rem;
  color: var(--terracotta);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.room-list-action::after {
  width: 2.1rem;
  height: 1px;
  background: currentColor;
  content: "";
  transform-origin: left center;
  transition: transform 180ms ease;
}

.room-list-card:hover .room-list-action::after {
  transform: scaleX(1.45);
}

.rooms-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: clamp(1.4rem, 4vw, 3.6rem);
  align-items: end;
}

.rooms-editorial__image {
  position: relative;
  min-height: clamp(420px, 48vw, 680px);
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: rgba(216, 195, 165, 0.25);
}

.rooms-editorial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rooms-editorial__image figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  width: fit-content;
  max-width: calc(100% - 2rem);
  padding: 0.5rem 0.72rem;
  border-radius: 999px;
  background: rgba(31, 29, 26, 0.58);
  color: var(--warm-white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.rooms-editorial__copy {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
}

.rooms-editorial__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.rooms-editorial__facts span {
  display: grid;
  gap: 0.22rem;
  min-height: 92px;
  align-content: center;
  padding: 1rem;
  background: rgba(255, 253, 248, 0.88);
  color: var(--muted);
  font-size: 0.82rem;
}

.rooms-editorial__facts strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1;
}

.room-support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
}

.room-support-card {
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.room-support-card:hover {
  border-color: rgba(84, 124, 124, 0.25);
  box-shadow: 0 22px 50px rgba(31, 29, 26, 0.08);
  transform: translateY(-3px);
}

.room-support-card h3 {
  margin-bottom: 0.65rem;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 400;
  line-height: 1.05;
}

.room-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
  color: var(--ink);
  box-shadow: 0 16px 38px rgba(31, 29, 26, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background-color 260ms ease;
}

.room-card:hover {
  border-color: rgba(184, 107, 75, 0.42);
  background: #fffaf2;
  box-shadow: 0 34px 82px rgba(31, 29, 26, 0.18);
  color: var(--ink);
  transform: translateY(-9px);
}

.room-card figure {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(84, 124, 124, 0.18), rgba(216, 195, 165, 0.35));
}

.room-card figure::after {
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(31, 29, 26, 0.44));
  content: "";
  opacity: 0.4;
  transition: opacity 260ms ease;
}

.room-card:hover figure::after {
  opacity: 1;
}

.room-card img {
  transition: transform 520ms ease, filter 520ms ease;
}

.room-card:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.075);
}

.room-body {
  display: grid;
  align-content: start;
  min-height: 255px;
  padding: 1.3rem;
}

.room-topline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.45rem 0.8rem;
  margin-bottom: 0.65rem;
  color: var(--terracotta);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: clamp(1.28rem, 1.9vw, 1.72rem);
  font-weight: 400;
  line-height: 1.1;
}

.room-meta {
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.room-specs {
  display: grid;
  gap: 0;
  margin: 1.05rem 0 0;
  padding: 0;
  border-top: 1px solid rgba(31, 29, 26, 0.1);
  list-style: none;
}

.room-specs li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 38px;
  padding: 0.58rem 0;
  border-bottom: 1px solid rgba(31, 29, 26, 0.08);
  color: var(--muted);
  font-size: 0.82rem;
}

.room-specs span {
  color: var(--sea);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.room-specs strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 400;
  text-align: right;
}

.room-cta {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.48rem;
  margin-top: 1.05rem;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.room-cta::after {
  width: 1.8rem;
  height: 1px;
  background: currentColor;
  content: "";
  transform-origin: left center;
  transition: transform 180ms ease;
}

.room-card:hover .room-cta::after {
  transform: scaleX(1.45);
}

.scroll-hint {
  display: none;
  align-items: center;
  gap: 0.7rem;
  margin: 0.2rem 0 1.15rem;
  color: var(--sea);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-hint::after {
  width: 3.2rem;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.58;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.34fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.48fr);
  gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: stretch;
}

.map-frame {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sand);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.map-frame:hover {
  border-color: rgba(84, 124, 124, 0.28);
  box-shadow: 0 24px 58px rgba(31, 29, 26, 0.1);
  transform: translateY(-3px);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.35rem, 3vw, 2rem);
}

.contact-panel::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(84, 124, 124, 0.08), transparent 46%),
    linear-gradient(315deg, rgba(216, 195, 165, 0.22), transparent 42%);
  content: "";
  pointer-events: none;
}

.contact-panel > * {
  position: relative;
}

.contact-methods {
  display: grid;
  gap: 0.7rem;
  margin: 1.1rem 0 1.2rem;
}

.contact-method {
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(31, 29, 26, 0.1);
  transition: padding-inline 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.contact-method:hover {
  padding-inline: 0.55rem;
  border-color: rgba(184, 107, 75, 0.34);
  background: rgba(216, 195, 165, 0.12);
}

.contact-method span {
  color: var(--terracotta);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-method strong,
.contact-method a {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.16;
}

.contact-method a:hover {
  color: var(--terracotta);
}

.prose {
  color: var(--muted);
}

.prose h2,
.prose h3 {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.1;
}

.prose h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.prose h3 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.side-panel {
  position: sticky;
  top: calc(var(--header) + 1.25rem);
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.side-panel:hover {
  border-color: rgba(84, 124, 124, 0.28);
  box-shadow: 0 22px 52px rgba(31, 29, 26, 0.1);
  transform: translateY(-3px);
}

.side-panel h2 {
  margin: 0 0 0.8rem;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.1;
}

.link-list,
.plain-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.link-list a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  transition: color 160ms ease, padding-inline 160ms ease, border-color 160ms ease;
}

.link-list a:hover {
  padding-inline: 0.35rem;
  border-color: rgba(184, 107, 75, 0.36);
  color: var(--terracotta);
}

.plain-list li {
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  transition: color 160ms ease, padding-inline 160ms ease, border-color 160ms ease;
}

.plain-list li:hover {
  padding-inline: 0.35rem;
  border-color: rgba(184, 107, 75, 0.34);
  color: var(--ink);
}

.restaurant-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.92fr);
  gap: clamp(2.25rem, 5.5vw, 4.75rem);
  align-items: center;
}

.restaurant-parallax {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.25rem, 7vw, 6.25rem);
}

.restaurant-parallax::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 12% 50%, rgba(84, 124, 124, 0.14), transparent 58%),
    radial-gradient(ellipse 45% 35% at 88% 15%, rgba(184, 107, 75, 0.1), transparent 52%);
  content: "";
  pointer-events: none;
}

.restaurant-parallax .restaurant-layout {
  position: relative;
  z-index: 1;
}

.restaurant-parallax .restaurant-media {
  position: relative;
  min-height: clamp(280px, 34vw, 420px);
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.32);
}

.restaurant-parallax .restaurant-media img {
  position: absolute;
  inset: -14% 0;
  width: 100%;
  height: 128%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, calc(var(--parallax-y, 0) * 1px), 0);
  transition: transform 900ms ease, filter 520ms ease;
  will-change: transform;
}

.restaurant-parallax .restaurant-media:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: translate3d(0, calc(var(--parallax-y, 0) * 1px), 0) scale(1.02);
}

.restaurant-parallax .restaurant-copy {
  max-width: 34rem;
}

.restaurant-parallax .restaurant-copy .section-title {
  margin-bottom: 1.1rem;
  color: var(--warm-white);
  line-height: 1.08;
}

.restaurant-parallax .restaurant-copy .section-copy {
  margin: 0;
  color: rgba(255, 253, 248, 0.76);
  font-size: clamp(0.98rem, 1.08vw, 1.08rem);
  line-height: 1.65;
}

.restaurant-parallax .restaurant-copy .button-row {
  margin-top: 1.85rem;
}

.restaurant-parallax .restaurant-copy .eyebrow {
  margin-bottom: 1rem;
  color: rgba(255, 253, 248, 0.72);
}

.restaurant-media {
  min-height: clamp(280px, 42vw, 480px);
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--sea), var(--terracotta));
}

.restaurant-media img {
  min-height: inherit;
}

.restaurant-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 0.58fr);
  gap: clamp(1.4rem, 4vw, 3.6rem);
  align-items: center;
}

.restaurant-copy-panel {
  padding: clamp(1.6rem, 4vw, 3.2rem);
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.055);
  backdrop-filter: blur(10px);
}

.restaurant-copy-panel .section-copy {
  max-width: 62ch;
}

.restaurant-rhythm {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.restaurant-rhythm article {
  min-height: 245px;
  padding: clamp(1.25rem, 2.6vw, 2rem);
  background: var(--warm-white);
}

.restaurant-rhythm span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--terracotta);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.restaurant-rhythm h3 {
  margin-bottom: 0.7rem;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  font-weight: 400;
  line-height: 1.05;
}

.restaurant-menu-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(280px, 0.44fr);
  gap: clamp(1.3rem, 4vw, 3rem);
  align-items: start;
}

.restaurant-menu-list {
  display: grid;
  gap: 0.75rem;
}

.restaurant-menu-list--grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.restaurant-menu-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.restaurant-menu-list a:hover {
  border-color: rgba(84, 124, 124, 0.28);
  box-shadow: 0 18px 44px rgba(31, 29, 26, 0.08);
  color: var(--ink);
  transform: translateY(-2px);
}

.restaurant-menu-list strong {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
}

.restaurant-menu-list span {
  color: var(--muted);
  font-size: 0.88rem;
}

.restaurant-menu-list em {
  color: var(--terracotta);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.restaurant-trust {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(216, 195, 165, 0.16);
}

.restaurant-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
}

.restaurant-cuisine {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.restaurant-cuisine li {
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.restaurant-copy-panel .restaurant-trust {
  margin-top: 1.15rem;
  margin-bottom: 0;
}

.restaurant-editorial .restaurant-media {
  min-height: clamp(300px, 38vw, 520px);
  border-radius: var(--radius-lg);
}

.restaurant-rhythm p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 860px) {
  .restaurant-final-cta .button-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .restaurant-final-cta .button-row .button {
    width: 100%;
    justify-content: center;
  }
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 1.6rem 0 1.75rem;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.14);
}

.info-card {
  padding: 1rem;
  background: rgba(255, 253, 248, 0.045);
  transition: background-color 180ms ease, transform 180ms ease;
}

.info-card:hover {
  background: rgba(255, 253, 248, 0.09);
  transform: translateY(-2px);
}

.info-card span {
  display: block;
  margin-bottom: 0.25rem;
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-card strong {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.15;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.menu-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.54fr);
  gap: clamp(1.25rem, 3.6vw, 3rem);
  align-items: stretch;
}

.menu-feature {
  position: relative;
  display: grid;
  min-height: min(440px, 52vh);
  align-items: end;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--warm-white);
  background:
    linear-gradient(180deg, rgba(31, 29, 26, 0.06), rgba(31, 29, 26, 0.76)),
    url("../header3.jpg") center / cover no-repeat;
  transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
}

.menu-feature:hover {
  box-shadow: 0 26px 70px rgba(31, 29, 26, 0.16);
  filter: saturate(1.04);
  transform: translateY(-4px);
}

.menu-feature-content {
  max-width: 560px;
  padding: clamp(1.4rem, 4vw, 2.6rem);
}

.menu-feature h3 {
  margin: 0 0 0.8rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 0.98;
}

.menu-feature p {
  color: rgba(255, 253, 248, 0.78);
}

.menu-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.menu-stack .menu-link {
  min-height: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.menu-stack .menu-link:hover {
  border-color: rgba(84, 124, 124, 0.3);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 18px 42px rgba(31, 29, 26, 0.11);
  transform: translate(4px, -3px);
}

.menu-stack .menu-link:nth-child(1),
.menu-stack .menu-link:nth-child(6) {
  grid-column: span 2;
}

.menu-link {
  min-height: 128px;
  display: grid;
  align-content: space-between;
  padding: 1.18rem;
  background: var(--warm-white);
}

.menu-link::after {
  display: inline-flex;
  width: fit-content;
  margin-top: 1rem;
  color: var(--terracotta);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  content: "View menu";
  transition: transform 180ms ease, color 180ms ease;
}

.menu-link:hover::after {
  color: var(--deep-sea);
  transform: translateX(5px);
}

.menu-link h3 {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 400;
  line-height: 1.08;
}

.menu-link p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.82fr 1fr;
  grid-auto-rows: 210px;
  gap: 0.85rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: -1rem auto 1.4rem;
}

.filter-button {
  min-height: 38px;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--warm-white);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.filter-button.is-active,
.filter-button:hover {
  border-color: var(--deep-sea);
  background: var(--deep-sea);
  color: var(--warm-white);
  box-shadow: 0 10px 24px rgba(31, 29, 26, 0.12);
  transform: translateY(-2px);
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(84, 124, 124, 0.24), rgba(184, 107, 75, 0.16));
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.gallery-item:hover {
  box-shadow: 0 24px 58px rgba(31, 29, 26, 0.14);
  transform: translateY(-4px);
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item button,
.gallery-item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-item button {
  cursor: zoom-in;
}

.gallery-item:hover img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.045);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  grid-template-areas:
    "stage"
    "caption";
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
  background: rgba(31, 29, 26, 0.94);
  backdrop-filter: blur(14px);
}

.lightbox.lightbox--has-thumbs {
  grid-template-rows: minmax(0, 1fr) auto auto;
  grid-template-areas:
    "stage"
    "caption"
    "thumbs";
}

.lightbox__stage {
  grid-area: stage;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  max-width: 100%;
  padding: clamp(3.5rem, 5vw, 4.5rem) clamp(0.75rem, 4vw, 2.5rem) 0.5rem;
  box-sizing: border-box;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(96vw, 100%);
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
}

.lightbox img:not([src]) {
  visibility: hidden;
}

.lightbox.lightbox--has-thumbs .lightbox__stage {
  padding-bottom: 0.25rem;
}

.lightbox button {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 253, 248, 0.34);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.12);
  color: var(--warm-white);
  cursor: pointer;
  font-size: 1.5rem;
  transition: background-color 160ms ease, transform 160ms ease;
}

.lightbox button:hover {
  background: rgba(255, 253, 248, 0.2);
  transform: scale(1.04);
}

.lightbox [data-lightbox-close] {
  top: 1rem;
  right: 1rem;
}

.lightbox [data-lightbox-prev],
.lightbox [data-lightbox-next] {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
}

.lightbox [data-lightbox-prev]:hover,
.lightbox [data-lightbox-next]:hover {
  transform: translateY(-50%) scale(1.04);
}

.lightbox [data-lightbox-prev] {
  left: clamp(0.8rem, 3vw, 2.2rem);
}

.lightbox [data-lightbox-next] {
  right: clamp(0.8rem, 3vw, 2.2rem);
}

.lightbox-caption[hidden] {
  display: none !important;
}

.lightbox-caption {
  grid-area: caption;
  width: min(760px, 92vw);
  margin: 0;
  padding: 0 1rem 0.65rem;
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.9rem;
  text-align: center;
  justify-self: center;
}

.lightbox-thumbs {
  grid-area: thumbs;
  display: flex;
  justify-content: flex-start;
  gap: 0.55rem;
  width: 100%;
  padding: 0.35rem clamp(1rem, 4vw, 2rem) max(0.75rem, env(safe-area-inset-bottom));
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  background: linear-gradient(180deg, rgba(31, 29, 26, 0) 0%, rgba(31, 29, 26, 0.72) 100%);
}

.lightbox-thumbs[hidden] {
  display: none;
}

.lightbox-thumbs__btn {
  flex: 0 0 auto;
  width: 72px;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.72;
  transition: opacity 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.lightbox-thumbs__btn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-thumbs__btn:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.lightbox-thumbs__btn.is-active {
  border-color: rgba(255, 253, 248, 0.85);
  opacity: 1;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

/* Gallery page hub */
.gallery-page .section-head {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.gallery-hub {
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

.gallery-toolbar {
  position: sticky;
  top: calc(var(--header) - 4px);
  z-index: 15;
  margin-bottom: 1.35rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98) 72%, rgba(255, 253, 248, 0.88) 100%);
  backdrop-filter: blur(10px);
}

.gallery-toolbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
}

.gallery-toolbar__status {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-filter-bar {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 4px;
  border: 1px solid rgba(36, 75, 78, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.gallery-filter-bar .filter-button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 36px;
  padding: 0.45rem 0.8rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transform: none;
  box-shadow: none;
}

.gallery-filter-bar .filter-button__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  padding: 0.1rem 0.35rem;
  border-radius: 999px;
  background: rgba(31, 29, 26, 0.06);
  color: inherit;
  font-size: 0.62rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

.gallery-filter-bar .filter-button:hover {
  background: rgba(36, 75, 78, 0.08);
  color: var(--deep-sea);
  transform: none;
  box-shadow: none;
}

.gallery-filter-bar .filter-button.is-active {
  background: linear-gradient(165deg, var(--deep-sea), #3a6568);
  color: var(--warm-white);
  box-shadow: 0 6px 18px rgba(36, 75, 78, 0.22);
  transform: none;
}

.gallery-filter-bar .filter-button.is-active .filter-button__count {
  background: rgba(255, 255, 255, 0.18);
}

.gallery-hub__stage {
  min-width: 0;
}

.gallery-hub .gallery-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(108px, 12vw, 148px);
  gap: 0.75rem;
}

.gallery-hub .gallery-item {
  position: relative;
  grid-column: span 4;
  grid-row: span 2;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 28px rgba(31, 29, 26, 0.08);
}

.gallery-hub .gallery-item--wide {
  grid-column: span 8;
}

.gallery-hub .gallery-item--tall {
  grid-row: span 3;
}

.gallery-hub .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease, filter 220ms ease;
}

.gallery-item__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 14, 12, 0) 38%, rgba(16, 14, 12, 0.72) 100%);
  opacity: 0.72;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.gallery-item__meta {
  position: absolute;
  right: 0.85rem;
  bottom: 0.75rem;
  left: 0.85rem;
  z-index: 2;
  display: grid;
  gap: 0.15rem;
  color: var(--warm-white);
  text-align: left;
  pointer-events: none;
}

.gallery-item__category {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.88;
}

.gallery-item__title {
  font-family: var(--display);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 400;
  line-height: 1.1;
}

.gallery-hub .gallery-item:hover .gallery-item__shade {
  opacity: 0.92;
}

.gallery-hub .gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-empty {
  margin: 2rem 0 0;
  padding: 2rem 1rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
}

summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1.2;
}

details p,
details ul {
  margin: 0;
  padding: 0 1.1rem 1rem;
  color: var(--muted);
}

.contact-card {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.contact-card:hover {
  border-color: rgba(84, 124, 124, 0.28);
  box-shadow: 0 22px 52px rgba(31, 29, 26, 0.08);
  transform: translateY(-3px);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.38rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.78rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.86);
  color: var(--ink);
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.field textarea {
  min-height: 138px;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover,
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(84, 124, 124, 0.46);
  background: var(--warm-white);
  box-shadow: 0 0 0 4px rgba(84, 124, 124, 0.08);
  outline: 0;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-form--wizard {
  gap: 1.25rem;
}

.contact-form__progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-form__progress-item {
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  text-align: center;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form__progress-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.contact-form__progress-item.is-active,
.contact-form__progress-item.is-complete {
  color: var(--deep-sea);
}

.contact-form__progress-item.is-active .contact-form__progress-index,
.contact-form__progress-item.is-complete .contact-form__progress-index {
  border-color: rgba(84, 124, 124, 0.42);
  background: rgba(84, 124, 124, 0.12);
  color: var(--deep-sea);
}

.contact-form__progress-item.is-complete .contact-form__progress-index {
  background: var(--deep-sea);
  color: var(--warm-white);
}

.contact-form__fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-form__legend {
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 400;
  line-height: 1.15;
}

.contact-form__intro {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-type-grid {
  display: grid;
  gap: 0.75rem;
}

.contact-type-grid--error .contact-type-card__body {
  border-color: rgba(184, 107, 75, 0.42);
}

.contact-form__alert {
  margin: 0 0 0.85rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(184, 107, 75, 0.35);
  border-radius: var(--radius);
  background: rgba(184, 107, 75, 0.08);
  color: #7a422d;
  font-size: 0.88rem;
}

.contact-form__alert[hidden] {
  display: none !important;
}

.contact-type-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.contact-type-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-type-card__body {
  position: relative;
  display: grid;
  grid-template-columns: 2.65rem minmax(0, 1fr);
  gap: 0.85rem 1rem;
  align-items: start;
  overflow: hidden;
  padding: 1.05rem 1.1rem 1.05rem calc(1.1rem + 4px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(118deg, rgba(84, 124, 124, 0.06) 0%, transparent 46%),
    rgba(255, 253, 248, 0.92);
  box-shadow: 0 6px 18px rgba(31, 29, 26, 0.04);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.contact-type-card__body::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--deep-sea) 0%, var(--sea) 100%);
  content: "";
}

.contact-type-card__body::after {
  position: absolute;
  top: -20%;
  right: -10%;
  width: min(38%, 180px);
  height: 130%;
  background: radial-gradient(circle at 50% 50%, rgba(84, 124, 124, 0.1) 0%, transparent 68%);
  content: "";
  pointer-events: none;
}

.contact-type-card__icon {
  position: relative;
  z-index: 1;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.15rem;
}

.contact-type-card__icon--bed {
  background-color: rgba(36, 75, 78, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23244b4e' stroke-width='1.75'%3E%3Cpath d='M3 7v11M3 7h7a4 4 0 0 1 4 4v0a4 4 0 0 1 4-4h3v11'/%3E%3C/svg%3E");
}

.contact-type-card__icon--dining {
  background-color: rgba(184, 107, 75, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b86b4b' stroke-width='1.75'%3E%3Cpath d='M4 3v8a4 4 0 0 0 8 0V3M12 11v10M8 21h8'/%3E%3C/svg%3E");
}

.contact-type-card__icon--transfer {
  background-color: rgba(138, 95, 61, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238a5f3d'%3E%3Cpath d='M21 16v-2l-8-5V3.5a1.5 1.5 0 0 0-3 0V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z'/%3E%3C/svg%3E");
}

.contact-type-card__icon--mail {
  background-color: rgba(84, 124, 124, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23547c7c' stroke-width='1.75'%3E%3Cpath d='M4 6h16v12H4z'/%3E%3Cpath d='m4 7 8 6 8-6'/%3E%3C/svg%3E");
}

.contact-type-card__text {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.28rem;
}

.contact-type-card__label,
.contact-type-card__hint {
  position: relative;
  z-index: 1;
}

.contact-type-card__label {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.12rem;
  line-height: 1.2;
}

.contact-type-card__hint {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.contact-type-card--reservation_question .contact-type-card__body {
  background:
    linear-gradient(118deg, rgba(36, 75, 78, 0.1) 0%, transparent 46%),
    rgba(255, 253, 248, 0.92);
}

.contact-type-card--reservation_question .contact-type-card__body::before {
  background: linear-gradient(180deg, #1a3d40 0%, var(--deep-sea) 55%, var(--sea) 100%);
}

.contact-type-card--restaurant_reservation .contact-type-card__body {
  background:
    linear-gradient(118deg, rgba(184, 107, 75, 0.11) 0%, transparent 46%),
    rgba(255, 253, 248, 0.92);
}

.contact-type-card--restaurant_reservation .contact-type-card__body::before {
  background: linear-gradient(180deg, #8f4f36 0%, var(--terracotta) 55%, rgba(184, 107, 75, 0.45) 100%);
}

.contact-type-card--restaurant_reservation .contact-type-card__body::after {
  background: radial-gradient(circle at 50% 50%, rgba(184, 107, 75, 0.14) 0%, transparent 68%);
}

.contact-type-card--transfer .contact-type-card__body {
  background:
    linear-gradient(118deg, rgba(138, 95, 61, 0.11) 0%, transparent 46%),
    rgba(255, 253, 248, 0.92);
}

.contact-type-card--transfer .contact-type-card__body::before {
  background: linear-gradient(180deg, #6b4528 0%, var(--wood) 55%, rgba(214, 168, 94, 0.45) 100%);
}

.contact-type-card--transfer .contact-type-card__body::after {
  background: radial-gradient(circle at 50% 50%, rgba(138, 95, 61, 0.14) 0%, transparent 68%);
}

.contact-type-card--other .contact-type-card__body {
  background:
    linear-gradient(118deg, rgba(84, 124, 124, 0.08) 0%, transparent 46%),
    rgba(255, 253, 248, 0.92);
}

.contact-type-card--other .contact-type-card__body::before {
  background: linear-gradient(180deg, #3d5f5f 0%, var(--sea) 55%, rgba(167, 178, 154, 0.55) 100%);
}

.contact-type-card:hover .contact-type-card__body {
  border-color: rgba(84, 124, 124, 0.32);
  transform: translateY(-1px);
}

.contact-type-card input:focus-visible + .contact-type-card__body {
  box-shadow: 0 0 0 4px rgba(84, 124, 124, 0.1);
}

.contact-type-card input:checked + .contact-type-card__body {
  border-color: rgba(36, 75, 78, 0.58);
  box-shadow: 0 14px 30px rgba(31, 29, 26, 0.08);
  transform: translateY(-2px);
}

.contact-type-card--reservation_question input:checked + .contact-type-card__body {
  background:
    linear-gradient(118deg, rgba(36, 75, 78, 0.16) 0%, transparent 52%),
    var(--warm-white);
}

.contact-type-card--restaurant_reservation input:checked + .contact-type-card__body {
  border-color: rgba(184, 107, 75, 0.52);
  background:
    linear-gradient(118deg, rgba(184, 107, 75, 0.18) 0%, transparent 52%),
    var(--warm-white);
}

.contact-type-card--transfer input:checked + .contact-type-card__body {
  border-color: rgba(138, 95, 61, 0.52);
  background:
    linear-gradient(118deg, rgba(138, 95, 61, 0.18) 0%, transparent 52%),
    var(--warm-white);
}

.contact-type-card--other input:checked + .contact-type-card__body {
  background:
    linear-gradient(118deg, rgba(84, 124, 124, 0.14) 0%, transparent 52%),
    var(--warm-white);
}

.contact-type-grid--error .contact-type-card:not(:has(input:checked)) .contact-type-card__body {
  animation: contact-type-nudge 520ms ease;
}

@keyframes contact-type-nudge {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

.contact-form__step[hidden] {
  display: none !important;
}

.contact-form__panel[hidden] {
  display: none !important;
}

.contact-form__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.15rem;
}

.contact-form__actions .button--primary {
  margin-left: auto;
}

.contact-form__back {
  min-height: auto;
  padding: 0.35rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  box-shadow: none;
  transform: none;
}

.contact-form__back:hover {
  color: var(--deep-sea);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.contact-form__alt {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-form__alt a {
  color: var(--deep-sea);
  font-weight: 650;
  text-underline-offset: 0.15em;
}

.button[hidden],
.contact-form__actions [hidden],
.contact-form__alt[hidden] {
  display: none !important;
}

.field__optional {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}

.form-feedback {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
}

.form-feedback--sent {
  border: 1px solid rgba(84, 124, 124, 0.28);
  background: rgba(84, 124, 124, 0.08);
  color: var(--deep-sea);
}

.form-feedback--error {
  border: 1px solid rgba(184, 107, 75, 0.35);
  background: rgba(184, 107, 75, 0.08);
  color: #7a422d;
}

.field--hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

[data-contact-form-region][hidden],
.contact-success[hidden] {
  display: none !important;
}

.contact-success {
  position: relative;
  display: grid;
  gap: 0.85rem;
  overflow: hidden;
  padding: clamp(1.35rem, 2.4vw, 1.75rem);
  padding-left: calc(clamp(1.35rem, 2.4vw, 1.75rem) + 0.4rem);
  border: 1px solid rgba(84, 124, 124, 0.28);
  scroll-margin-top: calc(var(--header-height, 72px) + 1rem);
  background:
    linear-gradient(118deg, rgba(84, 124, 124, 0.12) 0%, transparent 46%),
    var(--warm-white);
  box-shadow: 0 14px 34px rgba(31, 29, 26, 0.08);
}

.contact-success::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--deep-sea) 0%, var(--sea) 55%, rgba(167, 178, 154, 0.55) 100%);
  content: "";
}

.contact-success::after {
  position: absolute;
  top: -18%;
  right: -8%;
  width: min(42%, 220px);
  height: 140%;
  background: radial-gradient(circle at 50% 50%, rgba(84, 124, 124, 0.12) 0%, transparent 68%);
  content: "";
  pointer-events: none;
}

.contact-success > * {
  position: relative;
  z-index: 1;
}

.contact-success__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 999px;
  background: rgba(84, 124, 124, 0.14);
  color: var(--deep-sea);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.contact-success__icon::before {
  content: "\2713";
}

.contact-success__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  font-weight: 400;
  line-height: 1.15;
}

.contact-success__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.contact-success__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.contact-card h3 {
  margin-bottom: 0.5rem;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.1;
}

/* Contact request â€” full-width layout */
.contact-request-section {
  padding-block: clamp(3rem, 6vw, 4.75rem);
}

.contact-request-header {
  max-width: 40rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.35rem);
}

.contact-request-header .section-title {
  margin-bottom: 0.65rem;
}

.contact-request-layout {
  display: grid;
  gap: clamp(1.35rem, 2.5vw, 2rem);
  align-items: start;
}

.contact-request-main {
  min-width: 0;
}

.contact-form-shell.contact-card {
  padding: clamp(1.45rem, 3.2vw, 2.35rem);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(84, 124, 124, 0.07) 0%, transparent 42%),
    linear-gradient(315deg, rgba(216, 195, 165, 0.14) 0%, transparent 38%),
    var(--warm-white);
  box-shadow: 0 18px 48px rgba(31, 29, 26, 0.07);
}

.contact-form-shell.contact-card:hover {
  transform: none;
}

.contact-form-shell__head {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(31, 29, 26, 0.08);
}

.contact-form-shell__eyebrow {
  margin: 0;
  color: var(--deep-sea);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form-shell__title {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-form__footer {
  display: grid;
  gap: 0.85rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(31, 29, 26, 0.08);
}

.form-grid--contact {
  gap: 1rem 1.1rem;
}

@media (min-width: 720px) {
  .contact-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid--contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .contact-request-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 22rem);
    gap: clamp(1.5rem, 2.5vw, 2.35rem);
  }
}

.contact-form__type-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.75rem;
  margin: 0 0 1rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(84, 124, 124, 0.22);
  border-radius: var(--radius);
  background: rgba(84, 124, 124, 0.07);
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form__type-summary strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form__type-summary[hidden] {
  display: none !important;
}

.contact-form__panel {
  display: grid;
  gap: 1.15rem;
}

.contact-panel-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem 1rem;
  align-items: start;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(31, 29, 26, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
}

.contact-panel-head__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem;
}

.contact-panel-head--room .contact-panel-head__icon {
  background-color: rgba(36, 75, 78, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23244b4e' stroke-width='1.75'%3E%3Cpath d='M3 7v11M3 7h7a4 4 0 0 1 4 4v0a4 4 0 0 1 4-4h3v11'/%3E%3C/svg%3E");
}

.contact-panel-head--dining .contact-panel-head__icon {
  background-color: rgba(184, 107, 75, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b86b4b' stroke-width='1.75'%3E%3Cpath d='M4 3v8a4 4 0 0 0 8 0V3M12 11v10M8 21h8'/%3E%3C/svg%3E");
}

.contact-panel-head--transfer .contact-panel-head__icon {
  background-color: rgba(138, 95, 61, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238a5f3d'%3E%3Cpath d='M21 16v-2l-8-5V3.5a1.5 1.5 0 0 0-3 0V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z'/%3E%3C/svg%3E");
}

.contact-panel-head--other .contact-panel-head__icon {
  background-color: rgba(84, 124, 124, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23547c7c' stroke-width='1.75'%3E%3Cpath d='M4 6h16v12H4z'/%3E%3Cpath d='m4 7 8 6 8-6'/%3E%3C/svg%3E");
}

.contact-panel-head__eyebrow {
  margin: 0 0 0.15rem;
  color: var(--deep-sea);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-panel-head__title {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 400;
  line-height: 1.15;
}

.contact-panel-head__desc,
.contact-panel-head__meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-panel-head__meta {
  margin-top: 0.45rem;
  font-size: 0.84rem;
}

.contact-compose {
  gap: 0.55rem;
}

.contact-compose__box {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(84, 124, 124, 0.22);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(247, 242, 234, 0.55) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.contact-compose__box::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--deep-sea) 0%, var(--sea) 100%);
  content: "";
  pointer-events: none;
}

.contact-compose__input {
  display: block;
  width: 100%;
  min-height: clamp(9.5rem, 22vw, 11.5rem);
  padding: 1rem 1.05rem 1rem 1.2rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  line-height: 1.55;
  resize: vertical;
}

.contact-compose__input:hover,
.contact-compose__input:focus {
  outline: 0;
  box-shadow: none;
  background: transparent;
}

.contact-compose__box:focus-within {
  border-color: rgba(84, 124, 124, 0.46);
  box-shadow: 0 0 0 4px rgba(84, 124, 124, 0.08);
}

.contact-compose__hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.contact-compose .field label {
  font-size: 0.78rem;
}

/* WP: footer.php */
.site-footer {
  position: relative;
  padding: clamp(2.75rem, 5vw, 4rem) 0 clamp(1.75rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(216, 195, 165, 0.45);
  background:
    radial-gradient(ellipse 80% 50% at 12% 0%, rgba(84, 124, 124, 0.1), transparent 55%),
    radial-gradient(ellipse 60% 40% at 92% 8%, rgba(184, 107, 75, 0.08), transparent 50%),
    linear-gradient(180deg, var(--ivory) 0%, var(--warm-white) 100%);
  color: var(--ink);
}

.site-footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--deep-sea), var(--sand), var(--terracotta));
  content: "";
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(200px, 0.8fr) minmax(240px, 0.95fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: stretch;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  padding: 0.35rem 0.5rem 0.35rem 0;
}

.footer-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  width: fit-content;
  color: var(--ink);
}

.footer-logo img {
  width: clamp(118px, 9vw, 150px);
  height: auto;
  filter: brightness(0) saturate(100%);
  object-fit: contain;
}

.footer-logo img:not(.is-missing) + .footer-logo-text {
  display: none;
}

.footer-logo-text {
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
}

.footer-about {
  margin: 0;
  max-width: 36ch;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  padding: 1.2rem 1.15rem 1.15rem;
  border: 1px solid rgba(216, 195, 165, 0.42);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255, 253, 248, 0.98) 0%, rgba(247, 242, 234, 0.72) 100%);
  box-shadow: 0 12px 32px rgba(31, 29, 26, 0.05);
}

.footer-col--explore {
  border-color: rgba(84, 124, 124, 0.22);
  background:
    linear-gradient(165deg, rgba(84, 124, 124, 0.12) 0%, rgba(255, 253, 248, 0.96) 52%);
}

.footer-col--book {
  border-color: rgba(184, 107, 75, 0.2);
  background:
    linear-gradient(165deg, rgba(184, 107, 75, 0.1) 0%, rgba(255, 253, 248, 0.96) 52%);
}

.footer-col-title {
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(31, 29, 26, 0.08);
  color: var(--deep-sea);
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-col--book .footer-col-title {
  color: var(--terracotta);
}

.footer-links {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col--explore .footer-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 0.85rem;
}

.footer-links a {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  line-height: 1.35;
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: var(--terracotta);
}

.footer-links--compact {
  margin-bottom: 0.85rem;
}

.footer-contact-cards {
  display: grid;
  gap: 0.55rem;
  margin-top: auto;
}

.footer-contact-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(31, 29, 26, 0.08);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.92);
  color: inherit;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.footer-contact-card:hover {
  border-color: rgba(36, 75, 78, 0.22);
  box-shadow: 0 8px 20px rgba(31, 29, 26, 0.07);
  transform: translateY(-1px);
}

.footer-contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(84, 124, 124, 0.12);
  color: var(--deep-sea);
}

.footer-contact-card--address .footer-contact-card__icon {
  background: rgba(184, 107, 75, 0.12);
  color: var(--terracotta);
}

.footer-contact-card__body {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.footer-contact-label {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-contact-value {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.4;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  padding: 1rem 1.1rem;
  border: 1px solid rgba(216, 195, 165, 0.35);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.75);
}

.footer-bottom__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.footer-social-row {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(31, 29, 26, 0.1);
  border-radius: 999px;
  background: var(--warm-white);
  color: var(--deep-sea);
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.footer-social-icon:hover {
  border-color: rgba(36, 75, 78, 0.25);
  box-shadow: 0 6px 16px rgba(31, 29, 26, 0.08);
  transform: translateY(-1px);
}

.footer-social-icon--whatsapp:hover {
  color: #1f7a43;
}

.footer-social-icon--instagram:hover {
  color: var(--terracotta);
}

.footer-copyline {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer .footer-directions.button {
  min-height: 36px;
  padding: 0.45rem 1rem;
  border-color: rgba(36, 75, 78, 0.2);
  background: transparent;
  color: var(--deep-sea);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer .footer-directions.button:hover {
  border-color: var(--deep-sea);
  background: rgba(36, 75, 78, 0.06);
  color: var(--deep-sea);
}

@media (max-width: 1024px) {
  .footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 42ch;
  }
}

@media (max-width: 640px) {
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-col--explore .footer-links {
    grid-template-columns: 1fr;
  }
}

/* Legacy footer classes (older HTML until synced) */
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) repeat(2, minmax(180px, 0.34fr));
  gap: clamp(2rem, 6vw, 5rem);
}

.footer-title {
  margin-bottom: 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  font-weight: 400;
  line-height: 1.05;
}

.footer-copy {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
}

.mt-soft {
  margin-top: 1.6rem;
}

body.js-ready .room-card,
body.js-ready .room-offer-card,
body.js-ready .room-list-card,
body.js-ready .menu-link,
body.js-ready .menu-feature,
body.js-ready .info-card,
body.js-ready .gallery-item,
body.js-ready .contact-card,
body.js-ready .side-panel,
body.js-ready .menu-directory-group,
body.js-ready .menu-card,
body.js-ready .menu-offer-card,
body.js-ready .experience-card,
body.js-ready .faq-group-card,
body.js-ready .content-feature-band,
body.js-ready .home-closing__visual,
body.js-ready .home-path-card,
body.js-ready .home-closing__trust,
body.js-ready .cta-band,
body.js-ready .cross-sell-card,
body.js-ready .faq-contact-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

body.js-ready .home-path-card:nth-child(1) {
  transition-delay: 70ms;
}

body.js-ready .home-path-card:nth-child(2) {
  transition-delay: 150ms;
}

body.js-ready .home-path-card:nth-child(3) {
  transition-delay: 230ms;
}

body.js-ready .room-detail-page .room-offer-card,
body.js-ready .room-detail-page .room-amenity-card,
body.js-ready .room-detail-page .room-gallery__thumb {
  opacity: 1;
  transform: none;
}

body.js-ready .room-card.is-visible,
body.js-ready .room-offer-card.is-visible,
body.js-ready .room-list-card.is-visible,
body.js-ready .menu-link.is-visible,
body.js-ready .menu-feature.is-visible,
body.js-ready .info-card.is-visible,
body.js-ready .gallery-item.is-visible,
body.js-ready .contact-card.is-visible,
body.js-ready .side-panel.is-visible,
body.js-ready .menu-directory-group.is-visible,
body.js-ready .menu-card.is-visible,
body.js-ready .menu-offer-card.is-visible,
body.js-ready .experience-card.is-visible,
body.js-ready .faq-group-card.is-visible,
body.js-ready .content-feature-band.is-visible,
body.js-ready .home-closing__visual.is-visible,
body.js-ready .home-path-card.is-visible,
body.js-ready .home-closing__trust.is-visible,
body.js-ready .cta-band.is-visible,
body.js-ready .cross-sell-card.is-visible,
body.js-ready .faq-contact-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .header-actions {
    display: none;
  }

  .header-inner {
    grid-template-columns: minmax(240px, 1fr) auto;
  }

  .site-nav {
    justify-content: center;
    width: auto;
  }

  .section-head,
  .restaurant-layout,
  .restaurant-editorial,
  .restaurant-menu-panel,
  .restaurant-final-cta,
  .content-grid,
  .contact-request-layout,
  .story-grid,
  .map-layout,
  .menu-showcase,
  .side-editorial,
  .rooms-brief,
  .rooms-editorial,
  .room-support-grid,
  .footer-grid,
  .home-gallery-preview,
  .home-closing__grid,
  .faq-teaser {
    grid-template-columns: 1fr;
  }

  .home-closing__panel .section-title {
    max-width: none;
  }

  .restaurant-rhythm,
  .restaurant-menu-list--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .room-list-card {
    grid-template-columns: minmax(260px, 0.54fr) minmax(0, 0.7fr);
  }

  .room-offers-grid,
  .menu-offers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .side-panel {
    position: static;
  }

  .room-detail-amenities__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .room-detail-layout {
    grid-template-columns: 1fr;
  }

  .room-detail-panel {
    position: static;
  }

  .room-detail-amenities__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  :root {
    --header: 92px;
  }

  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .section {
    padding-block: 4rem;
  }

  .nav-toggle {
    display: block;
  }

  .brand img {
    width: clamp(176px, 54vw, 224px);
    max-height: 82px;
  }

  .site-nav {
    position: fixed;
    inset: var(--header) 0 auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 0.5rem 1rem 1rem;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.98);
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.7rem);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a,
  .site-nav .nav-dropdown__trigger {
    padding: 0.95rem 0.2rem;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 1.24rem;
    transform: none;
    box-shadow: none;
  }

  .site-nav a:hover,
  .site-nav a.is-active,
  .site-nav .nav-dropdown__trigger:hover,
  .site-nav .nav-dropdown.is-open .nav-dropdown__trigger {
    transform: none;
  }

  .nav-dropdown::before {
    display: none;
  }

  .site-nav a::after,
  .site-nav .nav-dropdown__trigger::after {
    display: none;
  }

  .nav-dropdown {
    display: grid;
  }

  .nav-dropdown__menu {
    position: static;
    left: auto;
    display: none;
    min-width: 0;
    margin: 0 0 0.35rem;
    padding: 0.15rem 0 0.35rem 0.85rem;
    border: 0;
    border-left: 2px solid rgba(84, 124, 124, 0.18);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    display: grid;
  }

  .nav-dropdown__menu a {
    padding: 0.68rem 0.72rem;
    font-size: 0.92rem;
    background: rgba(31, 29, 26, 0.05);
  }

  .nav-dropdown__menu a.is-active {
    border-color: rgba(36, 75, 78, 0.2);
    background: rgba(36, 75, 78, 0.1);
    color: var(--deep-sea);
  }

  .nav-dropdown:hover .nav-dropdown__menu {
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    display: grid;
  }

  .home-hero,
  .page-hero--full {
    min-height: 100svh;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-hero--slider .hero-button-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .home-hero--slider .hero-button-row .button {
    width: min(300px, 100%);
  }

  .rooms-grid,
  .info-grid,
  .menu-grid,
  .restaurant-rhythm,
  .restaurant-menu-list--grid,
  .rooms-editorial__facts {
    grid-template-columns: 1fr;
  }

  .room-detail-quick,
  .room-detail-amenities__grid {
    grid-template-columns: 1fr;
  }

  .room-list-card {
    grid-template-columns: 1fr;
  }

  .room-list-card figure {
    min-height: 250px;
  }

  .story-media {
    grid-template-columns: 1fr;
  }

  .story-media figure,
  .story-media figure:nth-child(2) {
    min-height: 260px;
    margin-top: 0;
  }

  .rooms-carousel,
  .room-offers-grid,
  .menu-offers-grid,
  .experience-cards-grid {
    grid-template-columns: 1fr;
  }

  .faq-hub,
  .menu-hub {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .faq-nav {
    position: sticky;
    top: calc(var(--header) + 0.65rem);
    z-index: 20;
    display: flex;
    flex-wrap: nowrap;
    gap: 0.45rem;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.85rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    box-shadow: 0 10px 28px rgba(36, 75, 78, 0.12);
  }

  .menu-nav {
    position: static;
    display: flex;
    flex-wrap: nowrap;
    gap: 0.45rem;
    overflow-x: auto;
    padding: 0.85rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .faq-nav::-webkit-scrollbar,
  .menu-nav::-webkit-scrollbar {
    display: none;
  }

  .faq-nav::before {
    display: none;
  }

  .faq-nav__label {
    display: none;
  }

  .faq-nav a,
  .menu-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .faq-nav a.is-active {
    transform: none;
  }

  .faq-group-card summary {
    padding: 0.9rem 0.65rem;
  }

  .faq-group-card .faq-answer {
    margin-left: 0.65rem;
    padding-left: 0.85rem;
  }

  .faq-contact-card {
    grid-template-columns: 1fr;
  }

  .faq-contact-card .button-row {
    flex-wrap: wrap;
  }

  .menu-card__head {
    grid-template-columns: 1fr;
  }

  .menu-card__tag {
    width: fit-content;
  }

  .menu-card__actions {
    width: 100%;
  }

  .menu-card__actions .button {
    flex: 1 1 auto;
  }

  .content-feature-band,
  .side-map-band,
  .cross-sell-card,
  .cta-band,
  .faq-contact-card {
    grid-template-columns: 1fr;
  }

  .cross-sell-card__media {
    min-height: 200px;
  }

  .room-offer-card__footer {
    grid-template-columns: 1fr;
  }

  .room-offer-card__booking {
    justify-items: stretch;
    text-align: left;
  }

  .room-offer-card__nav {
    opacity: 1;
  }

  .menu-feature {
    min-height: 420px;
  }

  .restaurant-parallax {
    padding-block: 4rem;
  }

  .restaurant-parallax .restaurant-media {
    min-height: clamp(260px, 52vw, 340px);
  }

  .restaurant-parallax .restaurant-copy {
    max-width: none;
  }

  .room-detail-amenities__grid {
    grid-template-columns: 1fr;
  }

  .room-detail-others .room-offer-card {
    flex: 0 1 calc(50% - 0.75rem);
  }

  .room-gallery__main {
    aspect-ratio: 4 / 3;
    min-height: 280px;
  }

  .room-gallery__nav {
    width: 42px;
    height: 42px;
  }

  .room-gallery__nav--prev {
    left: 0.55rem;
  }

  .room-gallery__nav--next {
    right: 0.55rem;
  }

  .room-detail-others .room-offer-card {
    flex: 0 1 100%;
    max-width: none;
  }

  .menu-stack {
    grid-template-columns: 1fr;
  }

  .menu-stack .menu-link:nth-child(1),
  .menu-stack .menu-link:nth-child(6) {
    grid-column: auto;
  }

  .full-bleed-photo,
  .full-bleed-photo img {
    min-height: 70svh;
    height: 70svh;
  }

  .full-bleed-photo img {
    min-height: 70svh;
    height: 70svh;
  }

  .gallery-hub .gallery-toolbar {
    top: calc(var(--header) - 8px);
  }

  .gallery-toolbar__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .gallery-filter-bar {
    width: 100%;
    border-radius: var(--radius-lg);
  }

  .gallery-filter-bar .filter-button {
    flex: 1 1 auto;
    justify-content: center;
    font-size: 0.62rem;
  }

  .gallery-hub .gallery-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 120px;
  }

  .gallery-hub .gallery-item {
    grid-column: span 3;
    grid-row: span 2;
  }

  .gallery-hub .gallery-item--wide {
    grid-column: span 6;
  }

  .gallery-hub .gallery-item--tall {
    grid-row: span 3;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item--wide {
    grid-column: span 2;
  }

  .gallery-item--tall {
    grid-row: span 1;
  }

  .lightbox__stage {
    padding-inline: 4.2rem;
  }

  .lightbox [data-lightbox-prev],
  .lightbox [data-lightbox-next] {
    width: 48px;
    height: 48px;
  }

  .footer-bottom {
    display: grid;
    gap: 1rem;
  }

  .footer-bottom__actions {
    justify-content: space-between;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .container,
  .container > *,
  .section-head,
  .rooms-brief,
  .hero-content {
    min-width: 0;
  }

  .hero-content {
    width: 100%;
    max-width: min(calc(100vw - 1.25rem), 360px);
  }

  .hero-inner.hero-inner--center .hero-content {
    max-width: min(calc(100vw - 1.5rem), 520px);
  }

  .page-title {
    max-width: 100%;
    font-size: clamp(1.72rem, 7.4vw, 1.98rem);
    line-height: 1.06;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }

  .section-title,
  .rooms-brief .section-title {
    max-width: 100%;
    font-size: clamp(1.42rem, 6vw, 1.68rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }

  .lead,
  .section-copy {
    max-width: 100%;
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .hero-inner {
    padding-block: calc(var(--header) + 3rem) 2.5rem;
  }

  .trust-line {
    gap: 0.35rem 0.7rem;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    overflow: hidden;
  }

  .trust-line li {
    max-width: 100%;
  }

  .home-rooms__foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .room-list-card h3 {
    font-size: 1.65rem;
  }

  .gallery-hub .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(220px, 58vw);
  }

  .gallery-hub .gallery-item,
  .gallery-hub .gallery-item--wide,
  .gallery-hub .gallery-item--tall {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 220px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
  }
}

.experience-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.25rem);
}

.experience-card {
  display: grid;
  gap: 0.75rem;
  min-height: 0;
  padding: clamp(1.2rem, 2.5vw, 1.65rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--warm-white);
  box-shadow: 0 12px 32px rgba(31, 29, 26, 0.06);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.experience-card:hover {
  border-color: rgba(84, 124, 124, 0.3);
  box-shadow: 0 22px 50px rgba(31, 29, 26, 0.11);
  transform: translateY(-4px);
}

.experience-card__time {
  color: var(--terracotta);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.experience-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(84, 124, 124, 0.12);
  mask: center / 22px 22px no-repeat;
  -webkit-mask: center / 22px 22px no-repeat;
  background-color: var(--deep-sea);
}

.experience-card__icon--breakfast {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M6 8h12v9a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V8z'/%3E%3Cpath d='M18 5v3'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M6 8h12v9a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V8z'/%3E%3Cpath d='M18 5v3'/%3E%3C/svg%3E");
}

.experience-card__icon--day {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 2v2M12 20v2M4.9 4.9l1.4 1.4M17.7 17.7l1.4 1.4M2 12h2M20 12h2M4.9 19.1l1.4-1.4M17.7 6.3l1.4-1.4'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 2v2M12 20v2M4.9 4.9l1.4 1.4M17.7 17.7l1.4 1.4M2 12h2M20 12h2M4.9 19.1l1.4-1.4M17.7 6.3l1.4-1.4'/%3E%3C/svg%3E");
}

.experience-card__icon--sunset {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 3v3M4.2 5.2l2.1 2.1M2 13h3M19 13h3M19.8 5.2l-2.1 2.1'/%3E%3Cpath d='M4 18h16'/%3E%3Cpath d='M8 21h8'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 3v3M4.2 5.2l2.1 2.1M2 13h3M19 13h3M19.8 5.2l-2.1 2.1'/%3E%3Cpath d='M4 18h16'/%3E%3Cpath d='M8 21h8'/%3E%3C/svg%3E");
}

.experience-card__icon--town {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M6 21V7l6-4 6 4v14'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M6 21V7l6-4 6 4v14'/%3E%3C/svg%3E");
}

.experience-card__icon--sea {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M2 15c2-1 3.5-1 5 0s3 1 5 0 3.5-1 5 0 3.5-1 5 0'/%3E%3Cpath d='M2 19c2-1 3.5-1 5 0s3 1 5 0 3.5-1 5 0 3.5-1 5 0'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M2 15c2-1 3.5-1 5 0s3 1 5 0 3.5-1 5 0 3.5-1 5 0'/%3E%3Cpath d='M2 19c2-1 3.5-1 5 0s3 1 5 0 3.5-1 5 0 3.5-1 5 0'/%3E%3C/svg%3E");
}

.experience-card__icon--transfer {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M3 7h13l-3-3M21 17H8l3 3'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M3 7h13l-3-3M21 17H8l3 3'/%3E%3C/svg%3E");
}

.experience-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 400;
  line-height: 1.08;
}

.experience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.experience-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.experience-card__tags li {
  padding: 0.32rem 0.55rem;
  border: 1px solid rgba(31, 29, 26, 0.1);
  border-radius: 999px;
  background: rgba(247, 242, 234, 0.8);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.menu-offers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.25rem);
}

.menu-offer-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--warm-white);
  box-shadow: 0 12px 32px rgba(31, 29, 26, 0.07);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.menu-offer-card:hover {
  border-color: rgba(184, 107, 75, 0.35);
  box-shadow: 0 24px 56px rgba(31, 29, 26, 0.12);
  transform: translateY(-5px);
}

.menu-offer-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(216, 195, 165, 0.25);
}

.menu-offer-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.menu-offer-card:hover .menu-offer-card__media img {
  filter: saturate(1.05);
  transform: scale(1.04);
}

.menu-offer-card__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 1;
  padding: 0.35rem 0.58rem;
  border-radius: 6px;
  background: var(--deep-sea);
  color: var(--warm-white);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-offer-card__badge--try {
  background: var(--wood);
}

.menu-offer-card__badge--guest {
  background: var(--sea);
}

.menu-offer-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.1rem 1.15rem 1.15rem;
}

.menu-offer-card__kicker {
  margin: 0 0 0.35rem;
  color: var(--terracotta);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-offer-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--body);
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  font-weight: 700;
  line-height: 1.3;
}

.menu-offer-card__desc {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.menu-offer-card__features {
  display: grid;
  gap: 0.38rem;
  margin: 0 0 0.9rem;
  padding: 0;
  list-style: none;
}

.menu-offer-card__features li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.5rem;
  align-items: start;
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.35;
}

.menu-offer-card__features li::before {
  width: 16px;
  height: 16px;
  margin-top: 0.1rem;
  background: var(--sea);
  content: "";
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center / contain no-repeat;
}

.menu-offer-card__footer {
  display: grid;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(31, 29, 26, 0.1);
}

.menu-offer-card__link {
  color: var(--deep-sea);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-offer-card__link:hover {
  color: var(--terracotta);
}

.menu-offer-card__footer .button {
  width: 100%;
  min-height: 42px;
  font-size: 0.68rem;
}

#half-board-detail {
  scroll-margin-top: calc(var(--header) + 1rem);
}

.content-feature-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.8rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(84, 124, 124, 0.06), transparent 50%),
    var(--warm-white);
  box-shadow: 0 16px 44px rgba(31, 29, 26, 0.08);
}

.content-feature-band__media {
  overflow: hidden;
  min-height: 320px;
  border-radius: var(--radius);
}

.content-feature-band__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.content-feature-band h2 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.05;
}

.content-feature-band p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.8rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--warm-white);
  box-shadow: 0 14px 40px rgba(31, 29, 26, 0.07);
}

.cta-band--dark {
  border-color: rgba(255, 253, 248, 0.14);
  background: var(--ink);
  color: var(--warm-white);
}

.cta-band--dark .section-copy,
.cta-band--dark p {
  color: rgba(255, 253, 248, 0.72);
}

.cta-band--dark .section-title,
.cta-band--dark h2 {
  color: var(--warm-white);
}

/* FAQ page hub */
.faq-page {
  position: relative;
  overflow: visible;
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(ellipse 90% 55% at 8% -5%, rgba(84, 124, 124, 0.14), transparent 58%),
    radial-gradient(ellipse 70% 45% at 96% 12%, rgba(184, 107, 75, 0.1), transparent 52%),
    linear-gradient(180deg, var(--warm-white) 0%, var(--ivory) 38%, var(--warm-white) 100%);
}

.faq-page::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, rgba(36, 75, 78, 0.04) 0%, transparent 42%),
    linear-gradient(298deg, rgba(216, 195, 165, 0.12) 0%, transparent 48%);
  pointer-events: none;
  content: "";
}

.faq-page > .container,
.faq-page .faq-hub {
  position: relative;
  z-index: 1;
}

.faq-hub {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: start;
}

.faq-nav {
  position: sticky;
  top: calc(var(--header) + 1.25rem);
  z-index: 12;
  align-self: start;
  display: grid;
  gap: 0.25rem;
  max-height: calc(100vh - var(--header) - 2.5rem);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 1.15rem;
  border: 1px solid rgba(216, 195, 165, 0.45);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #fffdf8 0%, #f7f2ea 48%, #fff 100%);
  box-shadow: 0 14px 40px rgba(36, 75, 78, 0.08);
  scrollbar-width: thin;
  scrollbar-color: rgba(84, 124, 124, 0.35) transparent;
}

.faq-nav::before {
  display: block;
  height: 3px;
  margin: -1.15rem -1.15rem 0.85rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, var(--deep-sea), var(--sand), var(--terracotta));
  content: "";
}

.faq-nav__label {
  margin: 0 0 0.55rem;
  padding: 0 0.75rem;
  color: var(--sea);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.faq-nav a {
  display: block;
  padding: 0.68rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.faq-nav a:hover {
  border-color: rgba(84, 124, 124, 0.2);
  background: rgba(84, 124, 124, 0.06);
  color: var(--deep-sea);
}

.faq-nav a.is-active {
  border-color: rgba(36, 75, 78, 0.22);
  background: linear-gradient(135deg, rgba(36, 75, 78, 0.14) 0%, rgba(84, 124, 124, 0.08) 100%);
  box-shadow: 0 6px 18px rgba(36, 75, 78, 0.1);
  color: var(--deep-sea);
  transform: translateX(2px);
}

.faq-groups {
  display: grid;
  gap: 1.5rem;
  min-width: 0;
}

.faq-group-card {
  --faq-accent-rgb: 84, 124, 124;
  position: relative;
  overflow: hidden;
  scroll-margin-top: calc(var(--header) + 1.5rem);
  padding: clamp(1.35rem, 2.5vw, 1.85rem) clamp(1.25rem, 2.5vw, 1.75rem);
  border: 1px solid rgba(216, 195, 165, 0.42);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(155deg, rgba(255, 253, 248, 0.98) 0%, rgba(247, 242, 234, 0.72) 100%);
  box-shadow: 0 12px 32px rgba(31, 29, 26, 0.06);
}

.faq-group-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgb(var(--faq-accent-rgb)),
    rgba(var(--faq-accent-rgb), 0.35) 55%,
    rgba(216, 195, 165, 0.5)
  );
  content: "";
}

.faq-group-card::after {
  position: absolute;
  top: -3rem;
  right: -2rem;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--faq-accent-rgb), 0.12) 0%, transparent 68%);
  pointer-events: none;
  content: "";
}

.faq-group-card--arrival {
  --faq-accent-rgb: 36, 75, 78;
}

.faq-group-card--rooms {
  --faq-accent-rgb: 54, 96, 100;
}

.faq-group-card--breakfast {
  --faq-accent-rgb: 184, 107, 75;
}

.faq-group-card--beach {
  --faq-accent-rgb: 138, 95, 61;
}

.faq-group-card--transfers {
  --faq-accent-rgb: 84, 124, 124;
}

.faq-group-card--policies {
  --faq-accent-rgb: 72, 82, 86;
}

.faq-group-card__eyebrow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 0 1.15rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(31, 29, 26, 0.08);
  color: rgb(var(--faq-accent-rgb));
}

.faq-group-card__eyebrow::before {
  flex-shrink: 0;
  background: linear-gradient(90deg, rgb(var(--faq-accent-rgb)), rgba(var(--faq-accent-rgb), 0.25));
  opacity: 1;
}

.faq-group-card__list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.15rem;
}

.faq-group-card details {
  margin: 0;
  border: 1px solid transparent;
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.55);
  transition:
    background-color 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.faq-group-card details + details {
  margin-top: 0.35rem;
}

.faq-group-card details:hover {
  border-color: rgba(var(--faq-accent-rgb), 0.16);
  background: rgba(255, 253, 248, 0.92);
}

.faq-group-card details[open] {
  border-color: rgba(var(--faq-accent-rgb), 0.22);
  background: linear-gradient(
    90deg,
    rgba(var(--faq-accent-rgb), 0.1) 0%,
    rgba(255, 253, 248, 0.95) 18%
  );
  box-shadow: 0 8px 22px rgba(31, 29, 26, 0.05);
}

.faq-group-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0.85rem;
  list-style: none;
  cursor: pointer;
  font-family: var(--body);
  font-size: clamp(0.98rem, 1.5vw, 1.05rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
}

.faq-group-card summary::-webkit-details-marker {
  display: none;
}

.faq-group-card summary::after {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(var(--faq-accent-rgb), 0.28);
  border-radius: 50%;
  background: var(--warm-white);
  color: rgb(var(--faq-accent-rgb));
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  content: "+";
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.faq-group-card details[open] summary {
  color: var(--deep-sea);
}

.faq-group-card details[open] summary::after {
  border-color: transparent;
  background: linear-gradient(135deg, rgb(var(--faq-accent-rgb)), rgba(var(--faq-accent-rgb), 0.72));
  color: var(--warm-white);
  content: "\2212";
}

.faq-group-card .faq-answer {
  padding: 0 0.85rem 1.15rem 1.15rem;
  border-left: 2px solid rgba(var(--faq-accent-rgb), 0.28);
  margin-left: 0.85rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.faq-group-card .faq-answer > :first-child {
  margin-top: 0;
}

.faq-group-card .faq-answer > :last-child {
  margin-bottom: 0;
}

.faq-group-card .faq-answer p {
  margin: 0 0 0.75rem;
}

.faq-group-card .faq-answer ul,
.faq-group-card .faq-answer ol {
  margin: 0.35rem 0 0.85rem;
  padding-left: 1.15rem;
}

.faq-group-card .faq-answer li {
  margin-bottom: 0.45rem;
  padding-left: 0.25rem;
}

.faq-group-card .faq-answer li::marker {
  color: var(--sea);
}

.faq-group-card .faq-answer a {
  color: var(--deep-sea);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(36, 75, 78, 0.28);
  text-underline-offset: 0.14em;
}

.faq-group-card .faq-answer a:hover {
  text-decoration-color: currentColor;
}

/* Legacy markup without .faq-answer wrapper */
.faq-group-card details > p,
.faq-group-card details > ul,
.faq-group-card details > ol {
  margin: 0 0 0.75rem;
  padding: 0 0.2rem 0 1.35rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.faq-group-card details > ul,
.faq-group-card details > ol {
  padding-left: calc(1.35rem + 1.15rem);
}

.faq-group-card details > p:last-child,
.faq-group-card details > ul:last-child,
.faq-group-card details > ol:last-child {
  padding-bottom: 1.15rem;
}

.faq-contact-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid rgba(216, 195, 165, 0.28);
  border-radius: var(--radius-lg);
  background: linear-gradient(128deg, #1a3d40 0%, #244b4e 46%, #2d5c60 100%);
  box-shadow: 0 18px 48px rgba(36, 75, 78, 0.22);
}

.faq-contact-card::before {
  position: absolute;
  inset: -20% auto auto 55%;
  width: 55%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(214, 168, 94, 0.22) 0%, transparent 68%);
  pointer-events: none;
  content: "";
}

.faq-contact-card > * {
  position: relative;
  z-index: 1;
}

.faq-contact-card .eyebrow {
  color: rgba(247, 242, 234, 0.78);
}

.faq-contact-card .eyebrow::before {
  background: linear-gradient(90deg, var(--sand), rgba(247, 242, 234, 0.35));
  opacity: 1;
}

.faq-contact-card .section-title {
  margin: 0 0 0.45rem;
  color: var(--ivory);
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
}

.faq-contact-card .section-copy {
  margin: 0;
  max-width: 42ch;
  color: rgba(247, 242, 234, 0.82);
}

.faq-contact-card .button-row {
  flex-wrap: nowrap;
}

.faq-contact-card__button-alt {
  border-color: rgba(247, 242, 234, 0.42);
  background: rgba(255, 253, 248, 0.1);
  color: var(--ivory);
  backdrop-filter: blur(6px);
}

.faq-contact-card__button-alt:hover {
  border-color: var(--ivory);
  background: var(--ivory);
  color: var(--deep-sea);
}

.side-map-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  gap: clamp(1.25rem, 4vw, 2.5rem);
  align-items: stretch;
}

.side-map-band .map-frame {
  min-height: 360px;
}

/* Menu page â€” PDF catalogue hub */
.menu-page.section--white {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.menu-page .section-head {
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.menu-hub {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: start;
}

.menu-nav {
  position: sticky;
  top: calc(var(--header) + 1.5rem);
  align-self: start;
  display: grid;
  gap: 0.2rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--warm-white);
  box-shadow: 0 12px 32px rgba(31, 29, 26, 0.06);
}

.menu-nav__label {
  margin: 0 0 0.55rem;
  padding: 0 0.75rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.menu-nav a {
  display: block;
  padding: 0.68rem 0.75rem;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease;
}

.menu-nav a:hover,
.menu-nav a.is-active {
  background: rgba(184, 107, 75, 0.12);
  color: var(--terracotta);
}

.menu-directory {
  display: grid;
  gap: 1.75rem;
  min-width: 0;
}

.menu-directory__intro {
  margin: 0;
  padding: 0.95rem 1.05rem;
  border: 1px solid rgba(84, 124, 124, 0.2);
  border-radius: var(--radius);
  background: var(--warm-white);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.menu-directory__empty {
  margin: 0;
  padding: 1.25rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.menu-directory-group {
  scroll-margin-top: calc(var(--header) + 1.5rem);
}

.menu-directory-group__eyebrow {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 0 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(31, 29, 26, 0.08);
}

.menu-directory-group__eyebrow::before {
  flex-shrink: 0;
}

.menu-directory-group__grid {
  display: grid;
  gap: 0.85rem;
}

.menu-card {
  position: relative;
  display: grid;
  gap: 0.85rem;
  overflow: hidden;
  padding: clamp(1.1rem, 2.2vw, 1.35rem);
  padding-left: calc(clamp(1.1rem, 2.2vw, 1.35rem) + 0.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(118deg, rgba(84, 124, 124, 0.07) 0%, transparent 42%),
    var(--warm-white);
  box-shadow: 0 8px 24px rgba(31, 29, 26, 0.05);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.menu-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--deep-sea) 0%, var(--sea) 55%, rgba(84, 124, 124, 0.35) 100%);
  content: "";
}

.menu-card::after {
  position: absolute;
  top: -18%;
  right: -8%;
  width: min(42%, 220px);
  height: 140%;
  background: radial-gradient(circle at 50% 50%, rgba(84, 124, 124, 0.12) 0%, transparent 68%);
  content: "";
  pointer-events: none;
}

.menu-card--eur {
  background:
    linear-gradient(118deg, rgba(36, 75, 78, 0.1) 0%, transparent 46%),
    var(--warm-white);
}

.menu-card--eur::before {
  background: linear-gradient(180deg, #1a3d40 0%, var(--deep-sea) 45%, var(--sea) 100%);
}

.menu-card--eur::after {
  background: radial-gradient(circle at 50% 50%, rgba(36, 75, 78, 0.14) 0%, transparent 68%);
}

.menu-card--try {
  background:
    linear-gradient(118deg, rgba(184, 107, 75, 0.11) 0%, transparent 46%),
    var(--warm-white);
}

.menu-card--try::before {
  background: linear-gradient(180deg, #8f4f36 0%, var(--terracotta) 50%, rgba(184, 107, 75, 0.45) 100%);
}

.menu-card--try::after {
  background: radial-gradient(circle at 50% 50%, rgba(184, 107, 75, 0.16) 0%, transparent 68%);
}

.menu-card--wine {
  background:
    linear-gradient(118deg, rgba(84, 124, 124, 0.12) 0%, transparent 46%),
    var(--warm-white);
}

.menu-card--wine::before {
  background: linear-gradient(180deg, #3d5f5f 0%, var(--sea) 55%, rgba(167, 178, 154, 0.55) 100%);
}

.menu-card--wine::after {
  background: radial-gradient(circle at 50% 50%, rgba(84, 124, 124, 0.18) 0%, transparent 68%);
}

.menu-card--pizza {
  background:
    linear-gradient(118deg, rgba(138, 95, 61, 0.12) 0%, transparent 46%),
    var(--warm-white);
}

.menu-card--pizza::before {
  background: linear-gradient(180deg, #6b4528 0%, var(--wood) 55%, rgba(214, 168, 94, 0.45) 100%);
}

.menu-card--pizza::after {
  background: radial-gradient(circle at 50% 50%, rgba(138, 95, 61, 0.16) 0%, transparent 68%);
}

.menu-card--time {
  background:
    linear-gradient(118deg, rgba(214, 168, 94, 0.14) 0%, transparent 46%),
    var(--warm-white);
}

.menu-card--time::before {
  background: linear-gradient(180deg, #9a7338 0%, var(--gold) 55%, rgba(247, 242, 234, 0.9) 100%);
}

.menu-card--time::after {
  background: radial-gradient(circle at 50% 50%, rgba(214, 168, 94, 0.2) 0%, transparent 68%);
}

.menu-card--guest {
  background:
    linear-gradient(118deg, rgba(214, 168, 94, 0.12) 0%, transparent 46%),
    linear-gradient(180deg, rgba(247, 242, 234, 0.55) 0%, var(--warm-white) 38%);
}

.menu-card--guest::before {
  background: linear-gradient(180deg, var(--wood) 0%, var(--gold) 60%, rgba(184, 107, 75, 0.35) 100%);
}

.menu-card--guest::after {
  background: radial-gradient(circle at 50% 50%, rgba(214, 168, 94, 0.22) 0%, transparent 68%);
}

.menu-card > * {
  position: relative;
  z-index: 1;
}

.menu-card:hover {
  border-color: rgba(84, 124, 124, 0.28);
  box-shadow: 0 14px 34px rgba(31, 29, 26, 0.08);
  transform: translateY(-2px);
}

.menu-card--guest:hover {
  border-color: rgba(184, 107, 75, 0.32);
}

.menu-card--pending {
  border-style: dashed;
}

.menu-card__head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem 1rem;
  align-items: start;
}

.menu-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.1rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(36, 75, 78, 0.1);
  color: var(--deep-sea);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-card__tag--eur { background: rgba(36, 75, 78, 0.12); }
.menu-card__tag--try { background: rgba(184, 107, 75, 0.14); color: var(--terracotta); }
.menu-card__tag--wine { background: rgba(84, 124, 124, 0.16); }
.menu-card__tag--pizza { background: rgba(138, 95, 61, 0.14); color: var(--wood); }
.menu-card__tag--time { min-width: 3.4rem; font-size: 0.62rem; }
.menu-card__tag--guest { background: rgba(214, 168, 94, 0.2); color: var(--wood); }

.menu-card__title {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--ink);
}

.menu-card__summary {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.menu-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-card__chips li {
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(247, 242, 234, 0.95);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.menu-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.menu-card__actions .button {
  min-height: 42px;
}

.menu-card__pending {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-style: italic;
  line-height: 1.5;
}

.cross-sell-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--warm-white);
  box-shadow: 0 14px 38px rgba(31, 29, 26, 0.08);
}

.cross-sell-card__media {
  min-height: 220px;
}

.cross-sell-card__media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.cross-sell-card__body {
  display: grid;
  align-content: center;
  gap: 0.85rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.cross-sell-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 400;
  line-height: 1.06;
}

@media (prefers-reduced-motion: reduce) {
  .home-hero::before,
  .page-hero::before,
  .restaurant-parallax .restaurant-media img,
  .room-detail-layout__main,
  .room-detail-panel {
    transform: none !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Menu PDF flipbook */
body.menu-flipbook-open {
  overflow: hidden;
}

.menu-flipbook[hidden] {
  display: none !important;
}

.menu-flipbook {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  padding: 0.35rem;
}

.menu-flipbook__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 14, 12, 0.88);
  backdrop-filter: blur(8px);
}

.menu-flipbook__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(98vw, 1480px);
  height: min(98vh, 960px);
  margin: auto;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #ebe4d8 0%, var(--warm-white) 42%);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.menu-flipbook__bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.65rem 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.95);
}

.menu-flipbook__bar-start {
  justify-self: start;
  min-width: 0;
}

.menu-flipbook__bar-mid {
  justify-self: center;
  text-align: center;
}

.menu-flipbook__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 400;
}

.menu-flipbook__lang {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-flipbook__status {
  color: var(--muted);
  font-size: 0.86rem;
}

.menu-flipbook__counter {
  display: block;
  color: var(--deep-sea);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-flipbook__bar-end {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  justify-self: end;
}

.menu-flipbook__zoom:not([hidden]),
.menu-flipbook__view:not([hidden]),
.menu-flipbook__fs:not([hidden]) {
  display: inline-flex;
}

.menu-flipbook__zoom {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.3rem 0.45rem 0.3rem 0.6rem;
  border: 1px solid rgba(36, 75, 78, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.menu-flipbook__zoom-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.menu-flipbook__zoom-icon {
  display: block;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  background: currentColor;
  opacity: 0.85;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm.5-5H9v2H7v-1.5h2V9h1.5v1.5H12V11z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.menu-flipbook__zoom-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
}

.menu-flipbook__zoom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--deep-sea);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.menu-flipbook__zoom-btn:hover:not(:disabled) {
  background: rgba(36, 75, 78, 0.08);
}

.menu-flipbook__zoom-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.menu-flipbook__zoom-value {
  min-width: 3.1rem;
  margin: 0;
  padding: 0 0.15rem;
  border: none;
  background: transparent;
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.menu-flipbook__view {
  display: inline-flex;
  padding: 3px;
  border: 1px solid rgba(36, 75, 78, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.menu-flipbook__view-btn {
  padding: 0.4rem 0.85rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.menu-flipbook__view-btn:hover {
  color: var(--deep-sea);
}

.menu-flipbook__view-btn.is-active {
  background: linear-gradient(165deg, var(--deep-sea), #3a6568);
  color: #fff;
  box-shadow: 0 4px 14px rgba(36, 75, 78, 0.28);
}

.menu-flipbook__fs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 38px;
  padding: 0 0.75rem 0 0.55rem;
  border: 1px solid rgba(36, 75, 78, 0.2);
  border-radius: 999px;
  background: var(--warm-white);
  color: var(--deep-sea);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.menu-flipbook__fs-text {
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-flipbook__fs:hover {
  border-color: var(--deep-sea);
  background: var(--ivory);
  transform: translateY(-1px);
}

.menu-flipbook__fs[aria-pressed="true"] {
  border-color: var(--deep-sea);
  background: rgba(36, 75, 78, 0.1);
}

.menu-flipbook__fs-icon {
  display: block;
  width: 16px;
  height: 16px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M3 5v4h4V5H3zm6 0v4h4V5H9zm6 0v4h4V5h-4zM3 15v4h4v-4H3zm6 0v4h4v-4H9zm6 0v4h4v-4h-4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.menu-flipbook.is-fullscreen .menu-flipbook__fs-icon,
.menu-flipbook__fs[aria-pressed="true"] .menu-flipbook__fs-icon {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M5 16h3v3H5v-3zm6 0h3v3h-3v-3zm6 0h3v3h-3v-3zM5 5h3v3H5V5zm6 0h3v3H9V5zm6 0h3v3h-3V5z'/%3E%3C/svg%3E");
}

.menu-flipbook__close {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--warm-white);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.menu-flipbook.is-fullscreen .menu-flipbook__dialog,
.menu-flipbook__dialog:fullscreen {
  width: 100vw;
  height: 100vh;
  max-width: none;
  border-radius: 0;
}

.menu-flipbook.is-fullscreen {
  padding: 0;
}

.menu-flipbook__stage-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  min-height: 0;
  padding: 0.5rem 0.65rem;
}

.menu-flipbook__stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  height: 100%;
  overflow: hidden;
}

.menu-flipbook__stage.is-ready {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  align-content: center;
}

.menu-flipbook__stage.is-ready .menu-flipbook__loading {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
}

.menu-flipbook__stage:not(.is-ready) .menu-flipbook__book {
  display: none !important;
}

.menu-flipbook__loading {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  gap: 0.75rem;
  place-items: center;
  align-content: center;
  color: var(--muted);
  font-size: 0.92rem;
  background: rgba(247, 242, 234, 0.92);
}

.menu-flipbook__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(36, 75, 78, 0.15);
  border-top-color: var(--deep-sea);
  border-radius: 50%;
  animation: menu-flipbook-spin 0.8s linear infinite;
}

@keyframes menu-flipbook-spin {
  to {
    transform: rotate(360deg);
  }
}

.menu-flipbook__book {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  max-height: 100%;
  min-height: 0;
}

.menu-flipbook__spine {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 8px;
  margin-left: -4px;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    rgba(31, 29, 26, 0.08),
    rgba(216, 195, 165, 0.45),
    rgba(31, 29, 26, 0.08)
  );
  box-shadow: inset 0 0 8px rgba(31, 29, 26, 0.08);
  pointer-events: none;
  z-index: 2;
}

.menu-flipbook__book.is-single .menu-flipbook__spine,
.menu-flipbook__spine[hidden] {
  display: none !important;
}

.menu-flipbook__spread-shell {
  --fb-zoom: 1;
  position: relative;
  width: fit-content;
  max-width: calc(min(96vw, 1320px) * var(--fb-zoom, 1));
  height: auto;
  max-height: calc((98vh - 140px) * var(--fb-zoom, 1));
  margin-inline: auto;
  perspective: 2400px;
}

.menu-flipbook__spread {
  display: grid;
  gap: 0;
  width: auto;
  height: auto;
  max-height: calc((98vh - 140px) * var(--fb-zoom, 1));
  border-radius: 10px;
  background: #fff;
  box-shadow:
    0 22px 60px rgba(31, 29, 26, 0.28),
    0 0 0 1px rgba(216, 195, 165, 0.45);
  transform-style: preserve-3d;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.menu-flipbook--zoomed .menu-flipbook__spread.is-slide-next,
.menu-flipbook--zoomed .menu-flipbook__spread.is-slide-prev {
  animation-name: menuSpreadFade;
}

@keyframes menuSpreadFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.menu-flipbook__spread.is-spread {
  grid-template-columns: 1fr 1fr;
}

.menu-flipbook__spread.is-single {
  grid-template-columns: 1fr;
  width: min(720px, 94vw);
  max-width: calc(720px * var(--fb-zoom, 1));
  margin-inline: auto;
}

.menu-flipbook__spread.is-single .menu-flipbook__page--left {
  display: none !important;
}

.menu-flipbook__spread.is-single .menu-flipbook__page--right,
.menu-flipbook__spread.is-single .menu-flipbook__page--single {
  border-radius: 10px;
  border: none;
}

.menu-flipbook__spread.is-slide-next {
  animation: menuSpreadInNext 0.34s ease forwards;
}

.menu-flipbook__spread.is-slide-prev {
  animation: menuSpreadInPrev 0.34s ease forwards;
}

@keyframes menuSpreadInNext {
  from {
    opacity: 0;
    transform: rotateY(10deg) translateX(2%);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes menuSpreadInPrev {
  from {
    opacity: 0;
    transform: rotateY(-10deg) translateX(-2%);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.menu-flipbook__turn {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  transform-style: preserve-3d;
  transform-origin: left center;
  transform: rotateY(0deg);
  transition: transform 0.62s cubic-bezier(0.33, 0.86, 0.42, 1);
  z-index: 5;
  pointer-events: none;
}

.menu-flipbook__turn--backward {
  left: 0;
  right: auto;
  width: 50%;
  transform-origin: right center;
  transform: rotateY(-180deg);
}

.menu-flipbook__turn--backward.is-active {
  transform: rotateY(0deg);
}

.menu-flipbook__turn--forward.is-active {
  transform: rotateY(-180deg);
}

.menu-flipbook__turn-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  background-color: #fff;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  box-shadow: -8px 0 24px rgba(31, 29, 26, 0.12);
}

.menu-flipbook__turn-face--back {
  transform: rotateY(180deg);
}

.menu-flipbook__page {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #fff;
  overflow: hidden;
  min-height: 0;
}

.menu-flipbook__page--left {
  border-right: 1px solid rgba(216, 195, 165, 0.5);
  border-radius: 8px 0 0 8px;
}

.menu-flipbook__page--right {
  border-radius: 0 8px 8px 0;
}

.menu-flipbook__page--single {
  grid-column: 1 / -1;
  border-radius: 8px;
}

.menu-flipbook__page--blank {
  background: linear-gradient(135deg, #faf8f4, #f0ebe3);
}

.menu-flipbook__page img {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(min(46vw, 500px) * var(--fb-zoom, 1));
  max-height: calc((98vh - 150px) * var(--fb-zoom, 1));
  object-fit: contain;
  object-position: center top;
  background: #fff;
}

.menu-flipbook__spread.is-single .menu-flipbook__page img {
  max-width: calc(min(78vw, 640px) * var(--fb-zoom, 1));
}

.menu-flipbook.is-fullscreen .menu-flipbook__spread-shell,
.menu-flipbook__dialog:fullscreen .menu-flipbook__spread-shell {
  max-width: calc(min(98vw, 3200px) * var(--fb-zoom, 1));
  max-height: calc((100vh - 88px) * var(--fb-zoom, 1));
}

.menu-flipbook.is-fullscreen .menu-flipbook__spread,
.menu-flipbook__dialog:fullscreen .menu-flipbook__spread {
  max-height: calc((100vh - 88px) * var(--fb-zoom, 1));
}

.menu-flipbook.is-fullscreen .menu-flipbook__spread.is-single,
.menu-flipbook__dialog:fullscreen .menu-flipbook__spread.is-single {
  width: auto;
  max-width: calc(min(94vw, (100vh - 88px) * 0.707) * var(--fb-zoom, 1));
}

.menu-flipbook.is-fullscreen .menu-flipbook__page img,
.menu-flipbook__dialog:fullscreen .menu-flipbook__page img {
  max-height: calc((100vh - 92px) * var(--fb-zoom, 1));
  max-width: calc(min(48vw, (100vh - 92px) * 0.707) * var(--fb-zoom, 1));
}

.menu-flipbook.is-fullscreen .menu-flipbook__spread.is-single .menu-flipbook__page img,
.menu-flipbook__dialog:fullscreen .menu-flipbook__spread.is-single .menu-flipbook__page img {
  max-height: calc((100vh - 92px) * var(--fb-zoom, 1));
  max-width: calc(min(94vw, (100vh - 92px) * 0.707) * var(--fb-zoom, 1));
}

.menu-flipbook__nav {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.95);
  color: var(--deep-sea);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.menu-flipbook__nav:hover:not(:disabled) {
  background: var(--ivory);
  transform: translateY(-1px);
}

.menu-flipbook__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.menu-flipbook__hint {
  margin: 0;
  padding: 0.55rem 1rem 0.75rem;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

@media (max-width: 899px) {
  .menu-flipbook__bar {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .menu-flipbook__bar-start,
  .menu-flipbook__bar-mid,
  .menu-flipbook__bar-end {
    justify-self: stretch;
  }

  .menu-flipbook__bar-end {
    justify-content: flex-start;
  }

  .menu-flipbook__fs-text {
    display: none;
  }

  .menu-flipbook__fs {
    width: 38px;
    padding: 0;
  }

  .menu-flipbook__dialog {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
  }

  .menu-flipbook {
    padding: 0;
  }

  .menu-flipbook__spread-shell {
    max-height: calc(100vh - 130px);
  }

  .menu-flipbook__spread.is-spread {
    width: 100%;
    max-width: 100%;
  }

  .menu-flipbook__spread.is-single {
    width: min(100%, 520px);
  }

  .menu-flipbook__view-btn {
    font-size: 0.62rem;
    padding: 0.38rem 0.55rem;
  }

  .menu-flipbook__zoom-label-text {
    display: none;
  }

  .menu-flipbook__zoom {
    padding-inline: 0.35rem;
  }

  .menu-flipbook__turn {
    width: 100%;
    right: 0;
    transform-origin: right center;
  }
}

/* Restaurant page: assets/css/restaurant-page.css */

