@font-face {
  font-display: swap;
  font-family: "Cormorant Infant";
  font-style: normal;
  font-weight: 400 700;
  src: url("../fonts/cormorant-infant-latin.woff2") format("woff2");
}

/* Colazione: profondità, luce calda e movimento discreto */
.breakfast-slide::before,
.breakfast-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at 72% 22%, rgba(255, 236, 190, 0.3), transparent 34%);
  mix-blend-mode: screen;
  opacity: 0.68;
  animation: breakfastGlow 8s ease-in-out infinite alternate;
}

.breakfast-visual {
  border-radius: 48% 48% 8px 8px / 12% 12% 8px 8px;
  box-shadow: 0 34px 80px rgba(80, 52, 31, 0.2);
}

.breakfast-visual::after {
  content: "colazione fatta in casa";
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  background: rgba(48, 44, 40, 0.36);
  color: var(--white);
  font-size: 0.82rem;
  font-style: italic;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}

.breakfast-slide img,
.breakfast-visual img {
  filter: saturate(1.08) contrast(1.03) sepia(0.05);
  transition: filter 900ms ease, transform 1600ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {
  .breakfast-slide:hover img,
  .breakfast-visual:hover img {
    filter: saturate(1.18) contrast(1.05) sepia(0);
    transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.13);
  }
}

@keyframes breakfastGlow {
  from { opacity: 0.42; transform: translate3d(-2%, 1%, 0) scale(0.98); }
  to { opacity: 0.82; transform: translate3d(2%, -1%, 0) scale(1.04); }
}

/* FAQ e pagine informative */
.faq-list { display: grid; gap: 1px; max-width: 920px; margin-inline: auto; background: var(--line); }
.faq-list details { background: var(--white); padding: 0 28px; }
.faq-list summary { position: relative; cursor: pointer; list-style: none; padding: 25px 48px 25px 0; color: var(--ink); font-family: "Italiana", Georgia, serif; font-size: 1.35rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 50%; right: 4px; transform: translateY(-50%); font-family: "Cormorant Infant", Georgia, serif; font-size: 1.8rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 760px; padding: 0 46px 24px 0; }

.info-page { padding: calc(var(--header) + 72px) 0 110px; background: var(--milk); }
.info-page__head { max-width: 860px; margin-bottom: 64px; }
.info-page__head h1 { font-size: clamp(3rem, 7vw, 6.2rem); }
.info-page__head > p:last-child { max-width: 700px; margin-top: 24px; font-size: 1.2rem; }
.prose { max-width: 860px; }
.prose section { padding: 30px 0; border-top: 1px solid var(--line); }
.prose h2 { margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3rem); }
.prose h3 { margin: 24px 0 10px; }
.prose ul { padding-left: 1.2em; }
.prose a { color: var(--sage-dark); text-decoration: underline; text-underline-offset: 3px; }
.sitemap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); }
.sitemap-grid section { padding: 30px; background: var(--white); border: 0; }
.sitemap-grid a { display: block; margin-top: 9px; }

.site-header.legal-header { background: rgba(255, 255, 255, 0.97); color: var(--earth); box-shadow: 0 1px 0 var(--line); }
.legal-header__home {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1;
  transition: border-color 220ms ease, background-color 220ms ease, transform 220ms ease;
}
.legal-header__home span { font-size: 1.15rem; line-height: 0; transition: transform 220ms ease; }
.legal-header__home:hover { border-color: rgba(48, 44, 40, 0.42); background: var(--white); transform: translateY(-1px); }
.legal-header__home:hover span { transform: translateX(-2px); }
.legal-header__nav { display: flex; justify-content: flex-end; gap: 20px; font-size: 0.92rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer-legal a,
.footer-legal button { color: inherit; font: inherit; border: 0; background: none; padding: 0; cursor: pointer; }
.footer-legal a:hover,
.footer-legal button:hover { color: var(--white); }

/* Preferenze cookie */
.cookie-banner { position: fixed; z-index: 120; right: 22px; bottom: 22px; width: min(520px, calc(100% - 44px)); padding: 26px; border: 1px solid rgba(255,255,255,.18); border-radius: 20px; background: rgba(48, 44, 40, 0.97); color: rgba(255,255,255,.86); box-shadow: 0 28px 90px rgba(0,0,0,.28); backdrop-filter: blur(18px); }
.cookie-banner[hidden] { display: none; }
.cookie-banner h2 { color: var(--white); font-size: 1.7rem; }
.cookie-banner p { margin: 12px 0 20px; color: inherit; font-size: 0.95rem; }
.cookie-banner a { text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-banner .button { color: var(--white); border-color: rgba(255,255,255,.55); background: transparent; }
.cookie-banner .button--accept { background: var(--white); color: var(--ink); }
.booking-consent { display: grid; place-items: center; min-height: 440px; padding: 40px; text-align: center; }
.booking-consent > div { max-width: 560px; }
.booking-consent h2 { margin-bottom: 16px; font-size: 2.2rem; }
.booking-engine__frame iframe:not([src]) { display: none; }

/* Video verticali e sezione massaggi */
.video-feature { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 440px); gap: 90px; align-items: center; }
.video-feature__copy { max-width: 620px; }
.video-feature__copy h2 { margin-bottom: 26px; }
.portrait-video { position: relative; width: min(100%, 440px); margin-inline: auto; padding: 10px; border: 1px solid var(--line); border-radius: 14px; background: var(--milk); box-shadow: 0 34px 90px rgba(48,44,40,.16); overflow: hidden; }
.portrait-video video { display: block; width: 100%; aspect-ratio: 9 / 16; border-radius: 8px; background: var(--ink); object-fit: cover; }

.massage-section { display: grid; gap: 62px; }
.massage-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.massage-intro h2 { max-width: 670px; }
.massage-intro > div:last-child { max-width: 580px; }
.massage-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); gap: 28px; align-items: stretch; }
.massage-types { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); }
.massage-types article { position: relative; min-height: 210px; padding: 30px; background: rgba(255,255,255,.72); transition: background-color 240ms ease, transform 240ms ease; }
.massage-types span { color: var(--wine); font-size: .78rem; letter-spacing: .12em; }
.massage-types h3 { margin: 25px 0 10px; font-size: 1.45rem; }
.massage-types p { margin: 0; font-size: .98rem; }
.massage-video-card { position: relative; min-height: 620px; margin: 0; padding: 0; overflow: hidden; border: 0; background: var(--ink); color: var(--white); cursor: pointer; text-align: left; }
.massage-video-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,22,19,.08), rgba(26,22,19,.7)); }
.massage-video-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms cubic-bezier(.22,1,.36,1), filter 500ms ease; }
.massage-video-card__play { position: absolute; top: 50%; left: 50%; z-index: 2; width: 72px; height: 72px; transform: translate(-50%,-50%); border: 1px solid rgba(255,255,255,.8); border-radius: 50%; background: rgba(255,255,255,.13); backdrop-filter: blur(8px); }
.massage-video-card__play::after { content: ""; position: absolute; top: 50%; left: 53%; transform: translate(-50%,-50%); border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-left: 13px solid var(--white); }
.massage-video-card__text { position: absolute; z-index: 2; left: 30px; right: 30px; bottom: 30px; }
.massage-video-card__text small { display: block; margin-bottom: 8px; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.massage-video-card__text strong { display: block; font-family: "Italiana", Georgia, serif; font-size: 2rem; font-weight: 400; line-height: 1.1; }
.massage-cta { align-items: center; margin-top: -28px; }

@media (hover: hover) {
  .massage-types article:hover { z-index: 1; background: var(--white); transform: translateY(-4px); }
  .massage-video-card:hover img { transform: scale(1.055); filter: saturate(1.08); }
}

.video-modal { width: min(94vw, 620px); max-height: 94vh; padding: 0; border: 0; border-radius: 26px; background: transparent; color: var(--white); overflow: visible; }
.video-modal::backdrop { background: rgba(21,18,16,.84); backdrop-filter: blur(12px); }
.video-modal__inner { position: relative; display: grid; place-items: center; }
.video-modal video { display: block; max-width: 100%; max-height: 90vh; border-radius: 22px; background: #000; box-shadow: 0 34px 100px rgba(0,0,0,.5); }
.video-modal__close { position: absolute; z-index: 2; top: 12px; right: 12px; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; background: rgba(30,27,25,.55); color: var(--white); font: 400 1.8rem/1 "Cormorant Infant", Georgia, serif; cursor: pointer; backdrop-filter: blur(8px); }

@media (max-width: 760px) {
  .world-times { padding: 78px 0 84px; }
  .world-times__head { margin-bottom: 48px; }
  .world-times__grid { grid-template-columns: repeat(5, 138px); gap: 24px; margin-right: calc(50% - 50vw); padding-right: 28px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; scrollbar-width: none; }
  .world-times__grid::-webkit-scrollbar { display: none; }
  .world-clock { scroll-snap-align: start; }
  .world-clock__face { width: 132px; margin-bottom: 22px; }
  body { font-size: 17px; }
  .breakfast-visual { border-radius: 30px 30px 6px 6px; }
  .breakfast-visual::after { right: 12px; bottom: 12px; }
  .info-page { padding-top: calc(var(--header) + 38px); }
  .sitemap-grid { grid-template-columns: 1fr; }
  .legal-header { grid-template-columns: 1fr; height: auto; min-height: var(--header); gap: 8px; padding-block: 14px; }
  .legal-header__home { padding: 9px 13px; font-size: 0.8rem; }
  .legal-header__nav { justify-content: flex-start; gap: 12px; font-size: 0.78rem; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .cookie-banner { right: 12px; bottom: 82px; width: calc(100% - 24px); padding: 20px; }
  .cookie-banner__actions .button { flex: 1; }
  .video-feature { grid-template-columns: 1fr; gap: 44px; }
  .portrait-video { max-width: 360px; }
  .massage-intro,
  .massage-layout { grid-template-columns: 1fr; gap: 32px; }
  .massage-section { gap: 42px; }
.massage-types { grid-template-columns: 1fr; }
  .massage-types article { min-height: auto; padding: 25px; }
  .massage-types h3 { margin-top: 16px; }
  .massage-video-card { min-height: 560px; }
  .massage-cta { margin-top: -10px; }
  .video-modal { width: calc(100% - 24px); }
}

@media (prefers-reduced-motion: reduce) {
  .breakfast-slide::before,
  .breakfast-visual::before { animation: none; }
}

@font-face {
  font-display: swap;
  font-family: "Cormorant Infant";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/cormorant-infant-italic-latin.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Italiana";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/italiana-latin.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Geometria";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/geometria-light-webfont.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Geometria";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/geometria-medium.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Geometria";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/geometria-medium.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "LM Roman";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/lmroman10-regular-webfont.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-family: "LM Roman Dunhill";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/lmromandunh10-regular.woff2") format("woff2");
}

:root {
  --white: #ffffff;
  --milk: #f6f4ef;
  --mist: #eae6e0;
  --stone: #d7d2cb;
  --taupe: #8c8279;
  --earth: #6e6259;
  --ink: #302c28;
  --sage: #6f7d63;
  --sage-dark: #4b5842;
  --wine: #9c4f47;
  --sky: #dfe9ec;
  --line: rgba(110, 98, 89, 0.22);
  --shadow: 0 22px 80px rgba(48, 44, 40, 0.12);
  --header: 90px;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: var(--header);
}

body {
  margin: 0;
  background: var(--white);
  color: var(--earth);
  font-family: "Cormorant Infant", Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--sage-dark);
  outline-offset: 4px;
}

p {
  font-family: "Cormorant Infant", Georgia, serif;
  margin: 0 0 1rem;
  font-weight: 400;
  line-height: 1.58;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-family: "Italiana", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.04;
}

h1 {
  font-size: 3.9rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.55rem;
}

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
}

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

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

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

.narrow {
  width: min(100% - 40px, 880px);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 28px;
  color: var(--white);
  transition: background-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-solid {
  background: rgba(255, 255, 255, 0.96);
  color: var(--earth);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.nav-open .site-header {
  background: transparent;
  color: var(--white);
  box-shadow: none;
  backdrop-filter: none;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

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

.menu-toggle {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(234, 230, 224, 0.18);
  color: currentColor;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.menu-toggle__lines {
  width: 28px;
  display: grid;
  gap: 6px;
}

.menu-toggle__lines span {
  display: block;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header:not(.is-solid) .menu-toggle {
  background: rgba(25, 23, 21, 0.46);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.nav-open .menu-toggle__lines span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .menu-toggle__lines span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.header-link,
.header-pill {
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  text-transform: lowercase;
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.header-link:hover,
.header-pill:hover {
  opacity: 0.78;
}

.header-link--subtle {
  opacity: 0.92;
}

.site-header:not(.is-solid) .header-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(25, 23, 21, 0.42);
  color: var(--white);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
}

.header-pill {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.site-header:not(.is-solid) .header-pill {
  border-color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.header-pill--booking {
  padding: 0 22px;
  border-color: transparent;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(48, 44, 40, 0.2);
}

.site-header:not(.is-solid) .header-pill--booking {
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.site-header.is-solid .header-pill--booking {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: none;
  padding: 14px;
}

.nav-open .site-menu {
  display: block;
}

.site-menu__backdrop {
  position: absolute;
  inset: 14px;
  border-radius: 38px;
  background: rgba(174, 166, 156, 0.97);
}

.site-menu__inner {
  position: relative;
  z-index: 1;
  height: calc(100svh - 28px);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  padding: 110px 64px 42px;
  border-radius: 38px;
  color: var(--white);
  overflow: hidden;
}

.site-menu__side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.32);
  padding-right: 44px;
}

.site-menu__logo {
  display: inline-block;
  width: 210px;
  height: 118px;
  overflow: hidden;
}

.site-menu__small {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-menu__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0) invert(1);
}

.site-menu__small a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: var(--white);
  transition: border-color 180ms ease, transform 180ms ease;
}

.site-menu__small a:hover {
  border-color: rgba(255, 255, 255, 0.78);
  transform: translateY(-2px);
}

.site-menu__small svg {
  width: 18px;
  height: 18px;
  display: block;
}

.site-menu__nav {
  display: grid;
  align-content: center;
  gap: 22px;
}

.site-menu__nav a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 0;
  color: var(--white);
}

.site-menu__nav a::after {
  content: "";
  height: 1px;
  background: rgba(255, 255, 255, 0.36);
}

.site-menu__index,
.site-menu__hint {
  font-size: 0.78rem;
  text-transform: uppercase;
}

.site-menu__title {
  font-family: "Italiana", Georgia, serif;
  font-size: 3rem;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

/* Orologi internazionali */
.world-times {
  padding: 112px 0 120px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.world-times__head {
  max-width: 760px;
  margin-bottom: 72px;
}

.world-times__head .eyebrow { color: var(--sage-light); }
.world-times__head h2 { color: var(--white); }

.world-times__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(22px, 3.5vw, 58px);
}

.world-clock {
  min-width: 0;
  text-align: center;
}

.world-clock__face {
  --hour-angle: 0deg;
  --minute-angle: 0deg;
  --second-angle: 0deg;
  position: relative;
  width: min(100%, 176px);
  aspect-ratio: 1;
  margin: 0 auto 28px;
}

.world-clock__hand {
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: 1px;
  transform-origin: 50% 100%;
  background: var(--white);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.world-clock__hand--hour { z-index: 1; height: 25%; transform: translateX(-50%) rotate(var(--hour-angle)); width: 3px; }
.world-clock__hand--minute { z-index: 2; height: 38%; transform: translateX(-50%) rotate(var(--minute-angle)); width: 2px; }
.world-clock__hand--second { z-index: 3; height: 44%; width: 2px; transform: translateX(-50%) rotate(var(--second-angle)); background: #d7e0bd; box-shadow: 0 0 8px rgba(215, 224, 189, .28); transition: none; }

.world-clock__pin {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d7e0bd;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 2px var(--ink);
}

.world-clock h3 {
  margin-bottom: 3px;
  color: var(--white);
  font-size: 1.25rem;
}

.world-clock p {
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.world-clock__digital {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.82);
  font-size: .78rem;
  letter-spacing: .12em;
}

.hero__image,
.hero__video,
.page-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video {
  z-index: 1;
  object-fit: cover;
  transition: filter 700ms ease, opacity 420ms ease;
}

.hero__video:not(.is-loaded) {
  filter: saturate(0.9) contrast(0.96);
  opacity: 0.72;
}

.hero__video.is-loaded {
  opacity: 1;
}

.hero-video,
.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-video {
  overflow: hidden;
  background: var(--ink);
}

.home-page .hero__video {
  object-position: center;
}

.hero-slide {
  margin: 0;
  opacity: 0;
  transition: opacity 1200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.06);
}

.hero-slide.is-active img {
  animation: slowZoom 7600ms ease both;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 23, 21, 0.06), transparent 56%, rgba(25, 23, 21, 0.12));
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
  padding: 0 0 74px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}

.hero__content > div,
.hero__lead {
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(25, 23, 21, 0.58);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(9px);
}

.hero__lead { margin: 0; }

.hero__title {
  max-width: 860px;
  color: var(--white);
  font-size: 5rem;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.hero__lead {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.93);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.58;
}

.hero__title,
.hero__lead,
.hero .eyebrow,
.scroll-cue,
.page-hero h1,
.page-hero p,
.page-hero .eyebrow,
.media-slide figcaption,
.room-card__text,
.cta__inner {
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.58);
}

.slider-controls {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.slider-controls button {
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.slider-controls button::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
}

.slider-controls [data-slider-prev]::before {
  transform: rotate(-135deg);
}

.slider-controls [data-slider-next]::before {
  transform: rotate(45deg);
}

.slider-dots {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.slider-dots button {
  width: 34px;
  height: 2px;
  border: 0;
  background: rgba(255, 255, 255, 0.42);
  padding: 0;
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--white);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 36px;
  z-index: 2;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.scroll-cue::before {
  content: "";
  width: 1px;
  height: 42px;
  background: currentColor;
}

.statement {
  padding: 92px 0 110px;
  background: var(--white);
}

.statement__kicker,
.eyebrow {
  margin: 0 0 18px;
  color: var(--taupe);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.statement__title {
  max-width: 1050px;
  font-size: 4.6rem;
}

.statement__body {
  max-width: 760px;
  margin-top: 34px;
  margin-left: auto;
  color: var(--earth);
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.58;
}

.section.group-highlight {
  padding: 0;
  background: var(--white);
}

.group-highlight__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 72px;
  align-items: end;
  padding: 70px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.group-highlight h2 {
  max-width: 650px;
}

.group-highlight h2 + p {
  margin-top: 28px;
}

.group-highlight p {
  max-width: 610px;
  color: var(--earth);
}

.group-highlight__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.group-highlight__facts article {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--milk);
  padding: 26px;
}

.group-highlight__facts span {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
}

.group-highlight__facts p {
  margin: 32px 0 0;
  color: var(--earth);
  font-size: 0.98rem;
}

.strip-image {
  position: relative;
  height: 46vh;
  min-height: 340px;
  overflow: hidden;
}

.strip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08);
}

.section {
  padding: 110px 0;
  position: relative;
}

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

.section--stone {
  background: var(--stone);
}

.section--sky {
  background: var(--sky);
}

.editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 80px;
  align-items: center;
}

.editorial--reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.editorial--reverse .editorial__media {
  order: 2;
}

.editorial__media {
  position: relative;
  min-height: 580px;
  overflow: hidden;
}

.editorial__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08);
}

.editorial__text {
  max-width: 540px;
}

.editorial__text h2,
.section-head h2 {
  margin-bottom: 28px;
}

.editorial__text p {
  color: var(--earth);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button,
.text-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: lowercase;
}

.button {
  padding: 0 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.button--accent {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  box-shadow: 0 18px 36px rgba(48, 44, 40, 0.14);
}

.button::after,
.text-button::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.button--light {
  color: var(--white);
}

.button,
.text-button {
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

@media (hover: hover) {
  .button:hover,
  .text-button:hover {
    transform: translateY(-2px);
  }

  .button:hover {
    background: var(--ink);
    color: var(--white);
  }

  .button--accent:hover {
    background: var(--sage-dark);
    border-color: var(--sage-dark);
    color: var(--white);
  }

  .button--light:hover {
    background: var(--white);
    color: var(--ink);
  }

  .text-button:hover {
    color: var(--sage-dark);
  }

  .text-button.button--light:hover {
    color: var(--white);
    opacity: 0.82;
  }
}

.section--slider {
  padding: 0;
}

.media-slider {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.media-slide {
  position: absolute;
  inset: 0 0 150px;
  margin: 0;
  opacity: 0;
  clip-path: inset(0 0 0 100%);
  transition: clip-path 1400ms cubic-bezier(0.76, 0, 0.24, 1), opacity 1ms linear 1400ms;
}

.media-slide.is-active {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  z-index: 1;
  transition: clip-path 1400ms cubic-bezier(0.76, 0, 0.24, 1), opacity 1ms linear;
}

.media-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08);
  filter: saturate(1.04) contrast(1.02);
}

.media-slide::after {
  content: none;
}

.media-slide figcaption {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 2;
  min-height: 150px;
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(300px, 1.35fr);
  align-items: center;
  gap: 42px;
  padding: 28px max(7.75vw, 34px);
  color: var(--earth);
  font-family: "Cormorant Infant", Georgia, serif;
  font-size: 1rem;
  line-height: 1.55;
  background: var(--milk);
}

.media-slide figcaption strong {
  display: block;
  margin: 0;
  color: var(--ink);
  font-family: "Italiana", Georgia, serif;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
}

.home-page .hero::after {
  content: none;
}

.home-page .media-slider {
  min-height: 800px;
  background: var(--milk);
  color: var(--ink);
}

.home-page .media-slide.is-active img {
  animation: slowZoom 7600ms ease both;
}

.home-page .slider-controls {
  bottom: 58px;
}

.home-page .slider-controls button {
  color: var(--earth);
}

.home-page .slider-dots {
  left: auto;
  right: 132px;
  bottom: 74px;
}

.home-page .slider-dots button {
  background: rgba(110, 98, 89, 0.28);
}

.home-page .slider-dots button.is-active {
  background: var(--earth);
}

.home-page .media-slide figcaption {
  text-shadow: none;
}

.section-head {
  max-width: 820px;
  margin-bottom: 58px;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.room-intro {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 72px;
  align-items: end;
}

.room-intro__title {
  max-width: 760px;
  font-size: 4.4rem;
}

.room-intro__copy {
  max-width: 620px;
}

.room-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.room-service {
  min-height: 250px;
  background: var(--white);
  padding: 32px;
}

.room-service__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.room-service__icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: var(--sage-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.room-service h3 {
  margin-bottom: 12px;
}

.room-service p {
  color: var(--earth);
}

.room-suite-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.room-suite {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 560px;
  background: var(--white);
}

.room-suite:nth-child(even) .room-suite__media {
  order: 2;
}

.room-suite__media {
  position: relative;
  overflow: hidden;
}

.room-suite__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08);
}

.room-suite__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px;
}

.room-suite__meta {
  margin-bottom: 18px;
  color: var(--taupe);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.room-suite__content h3 {
  margin-bottom: 24px;
  font-size: 3rem;
}

.room-suite__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.room-suite__features li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--earth);
  font-size: 0.82rem;
  font-weight: 600;
}

.room-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.55);
}

.room-card {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 900ms ease;
}

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

.room-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 23, 21, 0.12), rgba(25, 23, 21, 0.28) 42%, rgba(25, 23, 21, 0.86));
}

.room-card__text {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 34px;
}

.room-card h3 {
  color: var(--white);
  font-size: 2.2rem;
}

.room-card p {
  max-width: 430px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.93);
}

.room-stack {
  display: grid;
  gap: 1px;
}

.room-stack .room-card {
  min-height: 259px;
}

.feature-grid,
.destination-grid,
.contact-grid,
.faq-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature,
.destination,
.faq-item,
.contact-panel,
.contact-form {
  background: var(--white);
  padding: 34px;
}

.feature__mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.feature__mark svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: var(--sage-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.feature h3,
.destination h3,
.faq-item h3 {
  margin-bottom: 14px;
}

.feature p,
.destination p,
.faq-item p {
  color: var(--earth);
}

.feature,
.destination,
.faq-item,
.contact-links a {
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

@media (hover: hover) {
  .feature:hover,
  .destination:hover,
  .faq-item:hover,
  .contact-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 48px rgba(48, 44, 40, 0.08);
  }
}

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

.experience-card {
  display: grid;
  grid-template-rows: 390px auto;
  background: var(--white);
}

.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08);
}

.experience-card__text {
  padding: 30px 0 0;
}

.experience-card h3 {
  margin-bottom: 12px;
}

.social-moment {
  overflow: hidden;
  background: var(--milk);
}

.social-moment__shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.55fr);
  min-height: 680px;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 32px 90px rgba(48, 44, 40, 0.14);
}

.social-moment__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 78px);
  color: rgba(255, 255, 255, 0.78);
}

.social-moment__copy::after {
  content: "";
  position: absolute;
  right: -44px;
  top: 50%;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--ink);
  transform: translateY(-50%);
}

.social-moment__copy .eyebrow { color: #d7e0bd; }

.social-moment__copy h2 {
  margin: 18px 0 26px;
  color: var(--white);
  font-size: clamp(2.8rem, 4.5vw, 5.2rem);
  line-height: 0.94;
}

.social-moment__copy > p:not(.eyebrow) {
  max-width: 430px;
  margin: 0;
  color: inherit;
}

.social-moment__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.social-moment__copy small {
  display: block;
  max-width: 390px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
  line-height: 1.5;
}

.social-moment__visual {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.social-moment__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(48, 44, 40, 0.2), transparent 24%);
  pointer-events: none;
}

.social-moment__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.social-moment__shell:hover .social-moment__visual img { transform: scale(1.025); }

.social-moment__place {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(31, 29, 26, 0.58);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.social-moment__tag {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: grid;
  gap: 0;
  color: var(--white);
  text-align: right;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.85);
}

.social-moment__tag span {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.1;
}

.social-moment__tag strong {
  font-size: 1.65rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
}

.social-moment__place {
  top: 28px;
  right: 28px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta {
  min-height: 540px;
  position: relative;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}

.cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08);
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(25, 23, 21, 0.76), rgba(25, 23, 21, 0.42) 58%, rgba(25, 23, 21, 0.26)),
    rgba(25, 23, 21, 0.26);
}

.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.cta h2,
.cta .eyebrow {
  color: var(--white);
}

.cta p {
  color: rgba(255, 255, 255, 0.93);
  font-size: 1.08rem;
  line-height: 1.6;
}

.page-hero {
  position: relative;
  min-height: 0;
  display: block;
  padding-top: 72svh;
  overflow: hidden;
  color: var(--ink);
  background: var(--milk);
}

.page-hero::after {
  content: none;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 1200px);
  margin: 0 auto;
  padding: 64px 0 72px;
}

.page-hero h1 {
  max-width: 900px;
  color: var(--ink);
  font-size: 4.2rem;
}

.page-hero p {
  max-width: 650px;
  color: var(--earth);
  font-size: 1.08rem;
  line-height: 1.6;
}

.page-hero .eyebrow {
  color: var(--sage-dark);
}

.page-hero__image {
  bottom: auto;
  height: 72svh;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08);
  filter: saturate(1.04) contrast(1.02);
  animation: pageHeroReveal 1400ms cubic-bezier(0.76, 0, 0.24, 1) both;
}

.page-hero h1,
.page-hero p,
.page-hero .eyebrow {
  text-shadow: none;
}

.split-list {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.text-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.text-list article {
  background: var(--white);
  padding: 28px;
}

.text-list span,
.destination span {
  display: block;
  margin-bottom: 12px;
  color: var(--taupe);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.gallery-band {
  display: grid;
  grid-template-columns: 1fr 0.75fr 1fr;
  gap: 20px;
  align-items: end;
}

.gallery-band img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08);
}

.gallery-band img:nth-child(2) {
  height: 420px;
}

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

.contact-grid {
  grid-template-columns: 0.82fr 1.18fr;
  align-items: stretch;
}

.contact-links {
  display: grid;
  gap: 1px;
  margin: 28px 0;
  background: var(--line);
}

.contact-links a {
  display: block;
  background: var(--milk);
  padding: 18px;
}

.contact-links span {
  display: block;
  color: var(--taupe);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.contact-links strong {
  display: block;
  color: var(--ink);
  font-weight: 500;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: lowercase;
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--earth);
  padding: 10px 0;
  outline: 0;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--ink);
}

.form-status,
.small-note {
  color: var(--taupe);
  font-size: 0.88rem;
}

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

/* Booking engine */
.booking-page {
  background: var(--milk);
}

.booking-page:not(.nav-open) .site-header {
  background: rgba(48, 44, 40, 0.94);
  color: var(--white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.booking-page:not(.nav-open) .menu-toggle {
  background: transparent;
  color: var(--white);
  box-shadow: none;
  backdrop-filter: none;
}

.booking-page:not(.nav-open) .header-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  box-shadow: none;
  text-shadow: none;
  backdrop-filter: none;
}

.booking-page:not(.nav-open) .header-pill {
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
  color: var(--white);
  box-shadow: none;
  backdrop-filter: none;
}

.booking-page:not(.nav-open) .header-pill--booking {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.booking-section {
  overflow-x: hidden;
  background: linear-gradient(180deg, var(--milk), var(--white));
  padding: calc(var(--header) + 36px) 0 76px;
}

.booking-engine {
  display: grid;
  gap: 28px;
  min-width: 0;
}

.booking-engine__head {
  max-width: 760px;
  margin-inline: auto;
  text-align: left;
}

.booking-engine__head h1 {
  font-size: 2.45rem;
}

.booking-engine__head p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--earth);
  font-size: 1.08rem;
  line-height: 1.6;
}

.booking-engine__frame {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 22px 70px rgba(48, 44, 40, 0.12);
}

.booking-engine__frame iframe {
  display: block;
  width: 100%;
  height: 1100px;
  border: 0;
  background: var(--white);
}

.booking-engine__fallback {
  margin: 0;
  text-align: center;
  font-family: "Cormorant Infant", Georgia, serif;
  font-size: 0.9rem;
}

.booking-engine__fallback a {
  color: var(--sage-dark);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

@media (min-width: 761px) {
  .booking-section {
    padding: calc(var(--header) + 54px) 0 92px;
  }

  .booking-engine__head {
    text-align: center;
  }

  .booking-engine__head h1 {
    font-size: 4.2rem;
  }

  .booking-engine__head p:not(.eyebrow) {
    margin-inline: auto;
  }

  .booking-engine__frame iframe {
    height: 900px;
  }
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
  padding: 78px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 60px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--white);
  font-family: "Italiana", Georgia, serif;
  font-size: 2rem;
}

.footer-brand img {
  width: 220px;
  height: 136px;
  filter: brightness(0) invert(1);
  object-fit: cover;
  object-position: center;
  opacity: 1;
}

.footer-booking {
  margin-top: 24px;
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-family: "Cormorant Infant", Georgia, serif;
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  gap: 8px;
}

.footer-nav a {
  transition: color 180ms ease, opacity 180ms ease;
}

.footer-nav a:hover {
  color: var(--white);
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.85rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--white);
  opacity: 0.82;
  transition: border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.footer-socials a:hover {
  border-color: rgba(255, 255, 255, 0.74);
  opacity: 1;
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 17px;
  height: 17px;
  display: block;
}

.mobile-actions {
  display: none;
}

@supports (content-visibility: auto) {
  .statement,
  .section,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 760px;
  }
}

.js .reveal {
  transform: translateY(24px);
  opacity: 0;
  transition: transform 700ms ease, opacity 700ms ease;
}

.js .reveal.is-visible {
  transform: none;
  opacity: 1;
}

.js .photo-reveal {
  clip-path: inset(10% 0 10% 0);
  opacity: 0;
  transition:
    clip-path 980ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 760ms ease;
  transition-delay: var(--photo-reveal-delay, 0ms);
  will-change: clip-path, opacity;
}

.js .photo-reveal:not(img) {
  transform: translateY(34px) scale(0.985);
  transition:
    clip-path 980ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 760ms ease,
    transform 980ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: clip-path, opacity, transform;
}

.js .photo-reveal.is-photo-visible {
  clip-path: inset(0);
  opacity: 1;
}

.js .photo-reveal.is-photo-visible:not(img) {
  transform: none;
}

.nav-open .site-menu__nav a {
  animation: menuItemIn 460ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.nav-open .site-menu__nav a:nth-child(2) {
  animation-delay: 45ms;
}

.nav-open .site-menu__nav a:nth-child(3) {
  animation-delay: 90ms;
}

.nav-open .site-menu__nav a:nth-child(4) {
  animation-delay: 135ms;
}

.nav-open .site-menu__nav a:nth-child(5) {
  animation-delay: 180ms;
}

.nav-open .site-menu__nav a:nth-child(6) {
  animation-delay: 225ms;
}

@keyframes menuItemIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slowZoom {
  from {
    transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.04);
  }

  to {
    transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.1);
  }
}

@keyframes pageHeroReveal {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}

@media (min-width: 1180px) {
  .room-stack .room-card__text {
    padding: 24px;
  }
}

@media (max-width: 1080px) {
  h1,
  .hero__title {
    font-size: 4rem;
  }

  h2,
  .statement__title,
  .page-hero h1 {
    font-size: 3.2rem;
  }

  .header-link {
    display: none;
  }

  .editorial,
  .editorial--reverse,
  .split-list,
  .contact-grid,
  .group-highlight__inner {
    grid-template-columns: 1fr;
  }

  .editorial--reverse .editorial__media {
    order: 0;
  }

  .feature-grid,
  .destination-grid,
  .group-highlight__facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .room-intro,
  .room-suite {
    grid-template-columns: 1fr;
  }

  .room-suite:nth-child(even) .room-suite__media {
    order: 0;
  }

  .room-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .experience-card {
    grid-template-rows: 430px auto;
  }

  .social-moment__shell {
    grid-template-columns: 1fr;
  }

  .social-moment__copy::after {
    display: none;
  }

  .social-moment__visual {
    min-height: 540px;
  }

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

  .site-menu__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 104px 34px 34px;
  }

  .site-menu__side {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.32);
    padding: 0 0 22px;
  }
}

@media (max-width: 760px) {
  :root {
    --header: 74px;
  }

  body {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }

  h1,
  .hero__title {
    font-size: 3rem;
  }

  h2,
  .statement__title,
  .page-hero h1 {
    font-size: 2.35rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  .container,
  .narrow {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding: 0 14px;
    grid-template-columns: 1fr 1fr;
  }

  .header-left,
  .header-right {
    gap: 10px;
  }

  .header-pill {
    display: none;
  }

  .header-link--subtle {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .site-header .header-right .header-link[href^="tel:"] {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 84px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0;
    white-space: nowrap;
  }

  .site-header .header-right .header-link[href^="tel:"]::before {
    content: "chiama";
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1;
  }

  .site-header.is-solid .header-right .header-link[href^="tel:"] {
    border: 1px solid rgba(110, 98, 89, 0.2);
    background: rgba(255, 255, 255, 0.96);
    color: var(--earth);
    box-shadow: 0 8px 22px rgba(48, 44, 40, 0.08);
  }

  .booking-page .site-header .header-right .header-link[href^="tel:"] {
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    box-shadow: none;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 112px;
  }

  .hero__content > div,
  .hero__lead {
    padding: 18px 20px;
  }

  .hero__lead {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.58;
  }

  .scroll-cue {
    left: auto;
    right: 18px;
    bottom: 100px;
    transform: none;
    font-size: 0;
  }

  .scroll-cue::before {
    height: 54px;
    opacity: 0.84;
  }

  .slider-controls {
    right: 18px;
    bottom: 20px;
  }

  .slider-dots {
    left: 18px;
    bottom: 22px;
  }

  .statement {
    padding: 70px 0;
  }

  .statement__body {
    margin-top: 24px;
    margin-left: 0;
    font-size: 1.12rem;
  }

  .section {
    padding: 72px 0;
  }

  .editorial,
  .editorial--reverse {
    gap: 36px;
  }

  .editorial__media {
    min-height: 420px;
  }

  .editorial__media,
  .room-card,
  .experience-card,
  .gallery-band img {
    border-radius: 8px;
  }

  .feature-grid,
  .destination-grid,
  .faq-grid,
  .form-row,
  .group-highlight__facts {
    grid-template-columns: 1fr;
  }

  .group-highlight__inner {
    gap: 34px;
    padding: 54px 0;
  }

  .group-highlight__facts article {
    border: 1px solid var(--line);
    min-height: 0;
    padding: 24px;
  }

  .gallery-band {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .gallery-band img,
  .gallery-band img:nth-child(2) {
    width: 100%;
    height: 300px;
    scroll-snap-align: none;
  }

  .media-slider {
    min-height: 540px;
  }

  .media-slide figcaption {
    top: 100%;
    left: 0;
    right: 0;
    bottom: auto;
    max-width: none;
  }

  .home-page .media-slider {
    min-height: 620px;
  }

  .home-page .media-slide {
    inset: 0 0 190px;
  }

  .home-page .media-slide figcaption {
    min-height: 190px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 8px;
    padding: 22px 24px;
  }

  .home-page .slider-controls {
    right: 18px;
    bottom: 76px;
  }

  .home-page .slider-dots {
    left: 24px;
    right: auto;
    bottom: 92px;
  }

  .media-slide figcaption strong,
  .room-suite__content h3 {
    font-size: 2.1rem;
  }

  .room-intro {
    gap: 28px;
  }

  .room-intro__title {
    font-size: 2.35rem;
  }

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

  .room-service {
    min-height: 0;
    padding: 24px;
  }

  .room-suite {
    min-height: 0;
  }

  .room-suite__media {
    min-height: 330px;
  }

  .room-suite__content {
    padding: 28px 24px;
  }

  .site-menu {
    padding: 8px;
  }

  .site-menu__backdrop {
    inset: 8px;
    border-radius: 26px;
  }

  .site-menu__inner {
    height: calc(100svh - 16px);
    padding: 86px 24px 24px;
    border-radius: 26px;
    overflow: auto;
  }

  .site-menu__logo {
    width: 156px;
    height: 88px;
  }

  .site-menu__nav a {
    grid-template-columns: auto 1fr;
    gap: 14px;
  }

  .site-menu__nav a::after,
  .site-menu__hint {
    display: none;
  }

  .site-menu__title {
    font-size: 2.05rem;
  }

  .page-hero {
    min-height: 0;
    padding-top: 58svh;
  }

  .page-hero__content {
    margin: 0 auto;
    padding: 42px 0 48px;
  }

  .page-hero__image {
    height: 58svh;
  }

  .room-card,
  .room-stack .room-card {
    min-height: 390px;
  }

  .room-showcase,
  .room-stack {
    gap: 12px;
    background: transparent;
  }

  .room-card__text,
  .feature,
  .destination,
  .faq-item,
  .contact-panel,
  .contact-form {
    padding: 24px;
  }

  .experience-card {
    grid-template-rows: 280px auto;
    scroll-snap-align: none;
  }

  .experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .social-moment__shell {
    min-height: 0;
    border-radius: 24px;
  }

  .social-moment__copy {
    padding: 42px 24px;
  }

  .social-moment__copy h2 {
    font-size: clamp(2.6rem, 14vw, 3.7rem);
  }

  .social-moment__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-moment__visual {
    min-height: 430px;
  }

  .social-moment__visual img {
    object-position: 70% center;
  }

  .social-moment__tag {
    right: 16px;
    bottom: 16px;
    left: 16px;
    text-align: right;
  }

  .social-moment__place {
    top: 16px;
    right: 16px;
  }

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

  .footer-brand,
  .footer-brand img,
  .footer-booking {
    margin-inline: auto;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .mobile-actions {
    position: fixed;
    inset: auto 14px calc(14px + env(safe-area-inset-bottom));
    z-index: 44;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 56px;
    gap: 10px;
    pointer-events: none;
  }

  .mobile-actions a {
    --mobile-action-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h13M13 7l5 5-5 5' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    min-height: 56px;
    display: grid;
    place-items: center;
    pointer-events: auto;
    border: 1px solid rgba(110, 98, 89, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    box-shadow: 0 18px 54px rgba(48, 44, 40, 0.18);
    backdrop-filter: blur(18px);
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
  }

  .mobile-actions a:active {
    transform: translateY(1px) scale(0.98);
  }

  .mobile-actions .mobile-actions__primary {
    grid-template-columns: 18px auto;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    background: rgba(75, 88, 66, 0.96);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: lowercase;
  }

  .mobile-actions .mobile-actions__primary--book {
    background: rgba(48, 44, 40, 0.96);
  }

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

  .mobile-actions a::before {
    content: "";
    width: 18px;
    height: 18px;
    background: currentColor;
    -webkit-mask: var(--mobile-action-icon) center / contain no-repeat;
    mask: var(--mobile-action-icon) center / contain no-repeat;
  }

  .mobile-actions .mobile-actions__icon::before {
    width: 21px;
    height: 21px;
  }

  .mobile-actions .mobile-actions__icon--call {
    --mobile-action-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 4l2.2 4.7-1.8 1.4c1.2 2.4 3.1 4.2 5.5 5.5l1.4-1.8L20 16v3.2c0 .6-.4 1-1 1C10.6 20.2 3.8 13.4 3.8 5c0-.6.4-1 1-1H8z' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }

  .mobile-actions .mobile-actions__primary--whatsapp {
    --mobile-action-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 18.5l.9-3A7 7 0 1 1 9 18.3l-3.5.2z' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9 9.4c.8 2 2.1 3.3 4 4l1-.9 1.5.7c-.2 1-.8 1.5-1.7 1.5-2.5 0-5.7-3.1-5.7-5.6 0-.9.5-1.5 1.4-1.7l.8 1.5-1.3.5z' fill='black'/%3E%3C/svg%3E");
  }

  .mobile-actions .mobile-actions__primary--book {
    --mobile-action-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 5h10a2 2 0 0 1 2 2v12l-3-2-3 2-3-2-3 2V7a2 2 0 0 1 2-2z' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M9 9h6M9 13h4' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  }

  .mobile-actions .mobile-actions__icon--email {
    --mobile-action-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 7.5h15v10h-15z' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='m5 8 7 5 7-5' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }

  .mobile-actions .mobile-actions__icon--request {
    --mobile-action-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 5h12v14H6z' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M9 9h6M9 12h6M9 15h3' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  }

  .js .photo-reveal,
  .js .photo-reveal:not(img) {
    clip-path: inset(0);
    transform: translateY(18px) scale(0.992);
    transition: opacity 620ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .js .photo-reveal.is-photo-visible {
    transform: none;
  }
}

@media (max-width: 760px) {
  .world-times { padding: 78px 0 84px; }
  .world-times__head { margin-bottom: 48px; }
  .world-times__grid { grid-template-columns: repeat(5, 138px); gap: 24px; margin-right: calc(50% - 50vw); padding-right: 28px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; scrollbar-width: none; }
  .world-times__grid::-webkit-scrollbar { display: none; }
  .world-clock { scroll-snap-align: start; }
  .world-clock__face { width: 132px; margin-bottom: 22px; }

  .footer-bottom {
    width: min(100% - 28px, 1200px);
    align-items: center;
    justify-content: center;
    justify-items: center;
    gap: 20px;
    margin-inline: auto;
    text-align: center;
  }

  .footer-bottom > span:first-child,
  .footer-legal,
  .footer-socials {
    width: 100%;
    margin-inline: auto;
  }

  .footer-legal,
  .footer-socials {
    justify-content: center;
  }
}
