:root {
  --bg: #ffffff;
  --surface-strong: #ffffff;
  --text: #2e2923;
  --muted: #5f5850;
  --accent: #3f3c38;
  --accent-hover: #34312e;
  --reserve-bg: rgba(255, 255, 255, 0.28);
  --reserve-bg-hover: rgba(255, 255, 255, 0.38);
  --reserve-text: #ffffff;
  --border: rgba(46, 41, 35, 0.18);
  --shadow: 0 22px 44px rgba(33, 28, 24, 0.1);
  --radius-lg: 30px;
  --radius-md: 16px;
  --font-elegant: Optima, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --header-main-height: 123px;
  --header-menu-height: 49px;
  --reserve-button-width: 122px;
  --reserve-button-height: 38px;
  --reserve-button-inline-offset: 96px;
  --header-inline-padding: 34px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-menu-height) + 12px);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-elegant);
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

button {
  font: inherit;
}

.page-shell {
  width: min(100%, 1720px);
  margin: 0 auto;
  padding: 0;
}

.topbar {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 40;
  width: min(100%, 1720px);
  background: transparent;
  color: #ffffff;
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
  transition: color 520ms ease, background 520ms ease, box-shadow 520ms ease, border-color 520ms ease;
}

.topbar-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  height: var(--header-main-height);
  overflow: visible;
  padding: 0 34px;
  background: rgba(0, 0, 0, 0.22);
  transition: background 520ms ease, height 280ms ease, opacity 220ms ease, transform 280ms ease;
}

body:not(.detail-template) .topbar:not(.is-scrolled):not(.is-menu-hover):not(:has(.header-menu:hover)):not(:has(.header-menu :focus-visible)) {
  backdrop-filter: blur(5px);
}

body:not(.detail-template) .topbar:not(.is-scrolled):not(.is-menu-hover):not(:has(.header-menu:hover)):not(:has(.header-menu :focus-visible)) .topbar-main {
  background: rgba(0, 0, 0, 0.08);
}

.topbar.is-menu-hover .topbar-main,
.topbar:has(.header-menu:hover) .topbar-main,
.topbar:has(.header-menu :focus-visible) .topbar-main {
  background: rgba(255, 255, 255, 0.96);
}

.topbar.is-menu-hover,
.topbar:has(.header-menu:hover),
.topbar:has(.header-menu :focus-visible) {
  color: var(--text);
}

.topbar.is-scrolled {
  box-shadow: 0 1px 0 rgba(46, 41, 35, 0.08), 0 12px 22px rgba(46, 41, 35, 0.12);
}

.topbar.is-scrolled .topbar-main {
  height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-16px);
}

.header-menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 54px);
  min-height: var(--header-menu-height);
  padding: 0 34px;
  background: rgba(255, 255, 255, 0.38);
  border-top: 0;
  transition: background 520ms ease;
}

.topbar.is-menu-hover .header-menu,
.topbar:has(.header-menu:hover) .header-menu,
.topbar:has(.header-menu :focus-visible) .header-menu {
  background: rgba(255, 255, 255, 0.96);
}

.topbar.is-scrolled .header-menu {
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(46, 41, 35, 0.08);
}

body.detail-template .topbar {
  color: var(--text);
}

body.detail-template .topbar-main {
  background: #ffffff;
}

body.detail-template .topbar-main .reserve-button,
.topbar.is-menu-hover .topbar-main .reserve-button,
.topbar:has(.header-menu:hover) .topbar-main .reserve-button,
.topbar:has(.header-menu :focus-visible) .topbar-main .reserve-button {
  background: rgba(46, 41, 35, 0.24);
  color: #ffffff;
}

body.detail-template .topbar-main .reserve-button:hover,
body.detail-template .topbar-main .reserve-button:focus-visible,
.topbar.is-menu-hover .topbar-main .reserve-button:hover,
.topbar.is-menu-hover .topbar-main .reserve-button:focus-visible,
.topbar:has(.header-menu:hover) .topbar-main .reserve-button:hover,
.topbar:has(.header-menu:hover) .topbar-main .reserve-button:focus-visible,
.topbar:has(.header-menu :focus-visible) .topbar-main .reserve-button:hover,
.topbar:has(.header-menu :focus-visible) .topbar-main .reserve-button:focus-visible {
  background: rgba(46, 41, 35, 0.34);
}

body.detail-template .header-menu {
  background: rgb(246, 244, 240);
}

body.detail-template .brand img {
  opacity: 0.96;
  filter: contrast(1.08);
}

body.detail-template .language-button {
  color: var(--text);
}

body.detail-template .language-button:hover,
body.detail-template .language-button:focus-visible {
  color: #000000;
}

body.detail-template .language-menu {
  border-color: rgba(46, 41, 35, 0.12);
  background: rgba(255, 255, 255, 0.96);
}

body.detail-template .language-menu button {
  color: var(--text);
}

body.detail-template .language-menu button:hover,
body.detail-template .language-menu button:focus-visible {
  background: rgba(46, 41, 35, 0.08);
}

.header-menu > a,
.header-menu button {
  height: var(--header-menu-height);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.menu-diamond {
  display: inline-block;
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  background: #000000;
  opacity: 0.5;
  transform: rotate(45deg);
}

.header-menu > a:hover,
.header-menu > a:focus-visible,
.header-menu button:hover,
.header-menu button:focus-visible {
  color: #000000;
  outline: none;
  transform: translateY(-1px);
}

.menu-trigger,
.topbar-actions {
  display: flex;
  align-items: center;
}

.menu-trigger {
  justify-self: start;
  gap: 12px;
  height: var(--header-main-height);
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}

.menu-icon span {
  width: 24px;
  height: 1.5px;
  border-radius: 99px;
  background: currentColor;
}

.menu-label {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.brand {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--header-main-height);
  padding: 0;
  border: 0;
  background: transparent;
  line-height: 0;
  overflow: hidden;
  text-decoration: none;
}

.brand-home {
  cursor: pointer;
}

.brand-home:focus-visible {
  outline: 1px solid rgba(46, 41, 35, 0.28);
  outline-offset: 6px;
}

.brand img {
  display: block;
  width: auto;
  height: 156px;
  max-width: 480px;
  object-fit: contain;
  mix-blend-mode: normal;
  opacity: 0.92;
  filter: invert(1) contrast(1.08);
  transition: filter 520ms ease, opacity 520ms ease;
}

.topbar.is-menu-hover .brand img,
.topbar:has(.header-menu:hover) .brand img,
.topbar:has(.header-menu :focus-visible) .brand img {
  opacity: 0.96;
  filter: contrast(1.08);
}

.topbar-actions {
  justify-self: end;
  justify-content: flex-end;
  gap: 16px;
  position: relative;
}

.social-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid rgba(46, 41, 35, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  text-decoration: none;
}

.social-button:hover,
.social-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(46, 41, 35, 0.28);
  background: rgba(255, 255, 255, 0.86);
  outline: none;
}

.social-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.action-button {
  width: var(--reserve-button-width);
  min-width: 0;
  height: var(--reserve-button-height);
  padding: 0 20px;
  border: 0;
  border-radius: 6px;
  background: var(--surface-strong);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.action-button:hover,
.action-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(36, 22, 15, 0.08);
  outline: none;
}

.reserve-button {
  background: var(--reserve-bg);
  color: var(--reserve-text);
}

.reserve-button:hover,
.reserve-button:focus-visible {
  background: var(--reserve-bg-hover);
  color: var(--reserve-text);
}

.header-menu .reserve-button-scrolled {
  position: absolute;
  top: 50%;
  right: var(--reserve-button-inline-offset);
  z-index: 2;
  width: var(--reserve-button-width);
  height: var(--reserve-button-height);
  padding: 0 20px;
  border: 0;
  border-radius: 6px;
  background: var(--reserve-bg);
  color: var(--reserve-text);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-120%);
  transition: opacity 260ms ease, transform 430ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.header-menu .menu-trigger-scrolled,
.header-menu .language-switcher-scrolled {
  position: absolute;
  top: 50%;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-120%);
  transition: opacity 260ms ease, transform 430ms ease, color 180ms ease;
}

.header-menu .language-switcher-scrolled {
  right: var(--header-inline-padding);
  width: 48px;
  flex: 0 0 48px;
}

.header-menu .language-switcher-scrolled .language-button {
  height: var(--reserve-button-height);
  color: var(--text);
}

.header-menu .menu-trigger-scrolled {
  left: var(--header-inline-padding);
  width: 42px;
  height: var(--reserve-button-height);
  justify-content: flex-start;
  gap: 0;
  color: var(--text);
}

.header-menu .menu-trigger-scrolled .menu-icon {
  gap: 5px;
}

.header-menu .menu-trigger-scrolled .menu-icon span {
  width: 23px;
  background: currentColor;
}

.topbar.is-scrolled .reserve-button-scrolled,
.topbar.is-scrolled .menu-trigger-scrolled,
.topbar.is-scrolled .language-switcher-scrolled {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%);
}

.topbar.is-scrolled .reserve-button-scrolled {
  background: rgba(46, 41, 35, 0.68);
  color: #ffffff;
}

.topbar.is-scrolled .reserve-button-scrolled:hover,
.topbar.is-scrolled .reserve-button-scrolled:focus-visible {
  background: rgba(46, 41, 35, 0.78);
  color: #ffffff;
  transform: translateY(calc(-50% - 1px));
}

.topbar.is-scrolled .menu-trigger-scrolled:hover,
.topbar.is-scrolled .menu-trigger-scrolled:focus-visible,
.topbar.is-scrolled .language-switcher-scrolled:hover,
.topbar.is-scrolled .language-switcher-scrolled:focus-within {
  transform: translateY(calc(-50% - 1px));
}

.language-button {
  width: 48px;
  min-width: 0;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: center;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: color 520ms ease;
}

.language-button:hover,
.language-button:focus-visible {
  color: #ffffff;
  outline: none;
}

.topbar.is-menu-hover .language-button,
.topbar:has(.header-menu:hover) .language-button,
.topbar:has(.header-menu :focus-visible) .language-button,
.topbar.is-menu-hover .language-button:hover,
.topbar:has(.header-menu:hover) .language-button:hover,
.topbar:has(.header-menu :focus-visible) .language-button:hover,
.topbar.is-menu-hover .language-button:focus-visible,
.topbar:has(.header-menu :focus-visible) .language-button:focus-visible {
  color: var(--text);
}

.language-arrow {
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.language-button[aria-expanded="true"] .language-arrow {
  transform: translateY(2px) rotate(225deg);
}

.language-switcher {
  position: relative;
  width: 48px;
  flex: 0 0 48px;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  right: auto;
  min-width: 72px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
  transition: background 520ms ease, border-color 520ms ease;
  z-index: 80;
}

.language-menu button {
  width: 100%;
  height: auto;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  display: block;
}

.language-menu button:hover,
.language-menu button:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.topbar.is-menu-hover .language-menu,
.topbar:has(.header-menu:hover) .language-menu,
.topbar:has(.header-menu :focus-visible) .language-menu {
  border-color: rgba(46, 41, 35, 0.12);
  background: rgba(255, 255, 255, 0.96);
}

.topbar.is-menu-hover .language-menu button,
.topbar:has(.header-menu:hover) .language-menu button,
.topbar:has(.header-menu :focus-visible) .language-menu button {
  color: var(--text);
}

.topbar.is-menu-hover .language-menu button:hover,
.topbar:has(.header-menu:hover) .language-menu button:hover,
.topbar:has(.header-menu :focus-visible) .language-menu button:hover,
.topbar.is-menu-hover .language-menu button:focus-visible,
.topbar:has(.header-menu :focus-visible) .language-menu button:focus-visible {
  background: rgba(46, 41, 35, 0.08);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.56);
  opacity: 0;
  transition: opacity 320ms ease;
  backdrop-filter: blur(2px);
}

.site-menu {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  width: clamp(340px, 32vw, 520px);
  padding: 36px 48px 42px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  transform: translateX(-100%);
  transition: transform 360ms ease;
  box-shadow: 20px 0 45px rgba(33, 28, 24, 0.12);
  backdrop-filter: blur(14px);
}

body.menu-open .menu-backdrop {
  pointer-events: auto;
  opacity: 1;
}

body.menu-open .site-menu {
  transform: translateX(0);
}

.menu-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding-bottom: 24px;
}

.menu-close {
  position: relative;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-logo {
  display: flex;
  align-items: center;
  width: 148px;
  line-height: 0;
  text-decoration: none;
}

.menu-logo:focus-visible {
  outline: 1px solid rgba(46, 41, 35, 0.28);
  outline-offset: 6px;
}

.menu-logo img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  opacity: 0.96;
  filter: contrast(1.08);
}

.menu-close span {
  position: absolute;
  top: 50%;
  left: 4px;
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.menu-close span:first-child {
  transform: rotate(45deg);
}

.menu-close span:last-child {
  transform: rotate(-45deg);
}

.menu-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  flex: 0 0 auto;
  width: 100%;
  margin: 46px 0 22px;
}

.menu-nav a {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(46, 41, 35, 0.14);
  background: transparent;
  color: var(--text);
  font-family: var(--font-elegant);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, padding-left 180ms ease;
}

.menu-nav a:first-child {
  border-top: 1px solid rgba(46, 41, 35, 0.14);
}

.menu-nav a:hover,
.menu-nav a:focus-visible {
  color: #000000;
  outline: none;
  padding-left: 10px;
}

.menu-reserve-button {
  align-self: flex-start;
  width: 156px;
  min-width: 156px;
  height: 42px;
  margin: auto 0 18px;
  background: rgba(46, 41, 35, 0.68);
  color: #ffffff;
  letter-spacing: 0.18em;
}

.menu-reserve-button:hover,
.menu-reserve-button:focus-visible {
  color: #ffffff;
  background: rgba(46, 41, 35, 0.78);
}

.menu-language {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(46, 41, 35, 0.14);
}

.menu-language button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease;
}

.menu-language button:hover,
.menu-language button:focus-visible {
  color: #000000;
  outline: none;
}

.hero {
  position: relative;
  margin-top: 0;
}

.hero-image-frame {
  overflow: hidden;
  border-radius: 0;
  border-top: 0;
  box-shadow: none;
  background: #d8cbbb;
}

.hero-image-frame :is(img, video) {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center 58%;
}

.booking-bar {
  position: absolute;
  left: 50%;
  bottom: clamp(22px, 4vw, 54px);
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(190px, 1fr) minmax(108px, 0.48fr) minmax(238px, 0.95fr);
  align-items: end;
  gap: 12px;
  width: min(calc(100% - 68px), 1080px);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 48px rgba(33, 28, 24, 0.15);
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
}

.booking-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
  text-align: left;
}

.booking-field > span {
  color: rgba(46, 41, 35, 0.55);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.booking-date-button,
.booking-guests-button {
  position: relative;
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0 15px;
  border: 1px solid rgba(46, 41, 35, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  font: inherit;
  font-weight: 300;
  line-height: 1;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.booking-date-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: var(--font-elegant);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-align: left;
}

.booking-date-button span {
  flex: 1;
  color: rgba(46, 41, 35, 0.84);
  font: inherit;
  text-align: left;
}

.booking-date-button::after {
  content: "";
  position: absolute;
  right: 15px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  opacity: 0.55;
  transform: translateY(3px) rotate(45deg);
}

.booking-guests-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 0.98rem;
  cursor: pointer;
  text-align: left;
}

.booking-guests-button span {
  flex: 1;
  color: rgba(46, 41, 35, 0.84);
  font: inherit;
  text-align: left;
}

.booking-guests-button::after {
  content: "";
  position: absolute;
  right: 15px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  opacity: 0.62;
  transform: translateY(3px) rotate(45deg);
}

.booking-date-button:focus-visible,
.booking-guests-button:focus-visible,
.booking-date-field.is-open .booking-date-button,
.booking-guests-field.is-open .booking-guests-button {
  border-color: rgba(46, 41, 35, 0.42);
  box-shadow: 0 0 0 3px rgba(46, 41, 35, 0.08);
}

.booking-date-field.is-invalid .booking-date-button,
.booking-guests-field.is-invalid .booking-guests-button {
  border-color: rgba(132, 52, 40, 0.58);
}

.booking-date-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  left: 0;
  z-index: 9;
  min-width: 286px;
  padding: 12px;
  border: 1px solid rgba(46, 41, 35, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 34px rgba(33, 28, 24, 0.16);
  backdrop-filter: blur(14px);
}

.booking-date-panel[hidden] {
  display: none;
}

.booking-date-header {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.booking-date-header strong {
  color: var(--text);
  font-family: var(--font-elegant);
  font-size: 1.02rem;
  font-weight: 300;
  text-align: center;
}

.booking-date-header button,
.booking-date-grid button {
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.booking-date-header button {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 6px;
  font-size: 1.35rem;
  line-height: 1;
}

.booking-date-weekdays,
.booking-date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.booking-date-grid {
  grid-template-rows: repeat(6, 1fr);
}

.booking-date-weekdays {
  margin-bottom: 5px;
}

.booking-date-weekdays span {
  color: rgba(46, 41, 35, 0.45);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.booking-date-grid button,
.booking-date-grid span {
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 6px;
  font-size: 0.9rem;
}

.booking-date-grid button {
  font-family: var(--font-elegant);
  font-weight: 300;
}

.booking-date-grid button:hover,
.booking-date-grid button:focus-visible,
.booking-date-header button:hover,
.booking-date-header button:focus-visible {
  background: rgba(46, 41, 35, 0.08);
  outline: none;
}

.booking-date-grid button.is-selected {
  background: var(--accent);
  color: #ffffff;
}

.booking-date-grid button.is-today:not(.is-selected) {
  box-shadow: inset 0 0 0 1px rgba(46, 41, 35, 0.28);
}

.booking-date-grid button.is-disabled,
.booking-date-grid button:disabled {
  color: rgba(46, 41, 35, 0.22);
  cursor: not-allowed;
  pointer-events: none;
}

.booking-date-grid button.is-arrival-reference:disabled {
  background: rgba(47, 44, 41, 0.08);
  color: rgba(46, 41, 35, 0.76);
  box-shadow: inset 0 0 0 1px rgba(47, 44, 41, 0.48);
}

.booking-guests-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  left: 0;
  z-index: 8;
  display: flex;
  flex-direction: column;
  padding: 7px;
  border: 1px solid rgba(46, 41, 35, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 34px rgba(33, 28, 24, 0.16);
  backdrop-filter: blur(14px);
}

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

.booking-guests-menu button {
  height: 38px;
  padding: 0 12px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.96rem;
  font-weight: 300;
  text-align: left;
  cursor: pointer;
}

.booking-guests-menu button:hover,
.booking-guests-menu button:focus-visible,
.booking-guests-menu button.is-selected {
  background: rgba(46, 41, 35, 0.08);
  outline: none;
}

.booking-action {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 7px;
}

.booking-action > span {
  color: rgba(46, 41, 35, 0.58);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.booking-submit {
  width: 100%;
  height: 48px;
  min-width: 220px;
  padding: 0 24px;
  border: 0;
  border-radius: 6px;
  background: rgba(46, 41, 35, 0.68);
  color: #ffffff;
  font: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.booking-submit:hover,
.booking-submit:focus-visible {
  background: rgba(46, 41, 35, 0.78);
  outline: none;
  transform: translateY(-1px);
}

.home-intro {
  width: 100%;
  margin: 0;
  padding: clamp(50px, 5.2vw, 72px) max(24px, 6vw) clamp(70px, 7vw, 104px);
  background: #ffffff;
  text-align: center;
}

.home-location {
  margin: 0 0 14px;
  color: rgba(46, 41, 35, 0.58);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-intro h1 {
  max-width: 760px;
  margin: 0 auto clamp(16px, 2vw, 24px);
  color: rgba(46, 41, 35, 0.82);
  font-family: var(--font-elegant);
  font-size: clamp(2rem, 2.7vw, 3rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0;
}

.home-intro-text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.home-intro-text p {
  margin: 0;
  color: rgba(46, 41, 35, 0.72);
  font-family: var(--font-elegant);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: 0;
}

.home-scroll-section {
  background: #ffffff;
}

.home-detail-section {
  border-top: 1px solid rgba(46, 41, 35, 0.08);
}

.home-detail-section .detail-hero-no-image {
  padding-top: clamp(90px, 9vw, 132px);
}

#contatti .detail-hero-no-image {
  padding-bottom: clamp(28px, 3vw, 46px);
}

.home-feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 2.6vw, 38px);
  width: 100%;
  margin: 0;
  padding: clamp(76px, 7vw, 112px) clamp(24px, 3.8vw, 46px) clamp(92px, 8vw, 128px);
  background: #ffffff;
}

.home-feature:first-child {
  border-top: 0;
}

.home-feature {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0;
}

.home-feature-media {
  display: block;
  overflow: hidden;
  background: #e7e2da;
  text-decoration: none;
}

.home-feature-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 700ms ease;
}

.home-feature-media:hover img,
.home-feature-media:focus-visible img {
  transform: scale(1.035);
}

.home-feature-media:focus-visible {
  outline: 1px solid rgba(46, 41, 35, 0.34);
  outline-offset: 6px;
}

.home-feature-copy {
  max-width: 480px;
  padding-top: 18px;
  text-align: left;
}

.feature-kicker {
  margin: 0 0 16px;
  color: rgba(46, 41, 35, 0.66);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-feature-copy h2 {
  margin: 0 0 14px;
  color: rgba(46, 41, 35, 0.86);
  font-size: clamp(1.45rem, 1.7vw, 2rem);
  font-weight: 300;
  line-height: 1.22;
}

.home-feature-copy p:not(.feature-kicker) {
  margin: 0;
  color: rgba(46, 41, 35, 0.72);
  font-size: clamp(0.94rem, 0.98vw, 1.02rem);
  font-weight: 300;
  line-height: 1.48;
}

.home-feature-copy a {
  display: inline-block;
  margin-top: 36px;
  border-bottom: 1px solid rgba(46, 41, 35, 0.58);
  color: rgba(46, 41, 35, 0.82);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease;
}

.home-feature-copy a:hover,
.home-feature-copy a:focus-visible {
  border-color: #000000;
  color: #000000;
  outline: none;
}

.detail-page {
  padding-top: calc(var(--header-main-height) + var(--header-menu-height));
  background: #ffffff;
}

.detail-hero {
  position: relative;
  min-height: min(760px, calc(100vh - var(--header-main-height) - var(--header-menu-height)));
  background: #d8cbbb;
  overflow: hidden;
}

.detail-hero img {
  display: block;
  width: 100%;
  height: min(760px, calc(100vh - var(--header-main-height) - var(--header-menu-height)));
  object-fit: cover;
  object-position: center;
}

.detail-hero-no-image {
  min-height: auto;
  padding: clamp(98px, 11vw, 156px) 34px clamp(70px, 8vw, 112px);
  background: #ffffff;
  overflow: visible;
}

.detail-hero-no-image .detail-intro {
  position: static;
  width: min(calc(100% - 68px), 980px);
  margin: 0 auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transform: none;
}

.detail-intro {
  position: absolute;
  left: 50%;
  bottom: clamp(32px, 5vw, 68px);
  z-index: 5;
  width: min(calc(100% - 68px), 980px);
  margin: 0;
  padding: clamp(22px, 2.8vw, 34px) clamp(24px, 4vw, 48px);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 46px rgba(33, 28, 24, 0.14);
  backdrop-filter: blur(14px);
  text-align: center;
  transform: translateX(-50%);
}

.detail-intro .feature-kicker {
  margin-bottom: 10px;
}

.detail-intro h1 {
  margin: 0 0 14px;
  color: rgba(46, 41, 35, 0.72);
  font-size: clamp(1.9rem, 3vw, 3.25rem);
  font-weight: 300;
  line-height: 1.12;
}

.detail-intro p {
  margin: 0 auto;
  max-width: 900px;
  color: rgba(46, 41, 35, 0.64);
  font-size: clamp(0.95rem, 1.08vw, 1.05rem);
  font-weight: 300;
  line-height: 1.62;
}

.detail-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(46, 41, 35, 0.08);
}

.detail-note {
  min-height: 230px;
  padding: clamp(34px, 4vw, 58px);
  background: #ffffff;
  text-align: center;
}

.detail-note h2 {
  margin: 0 0 18px;
  color: rgba(46, 41, 35, 0.72);
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  font-weight: 300;
}

.detail-note p,
.detail-note a {
  margin: 0;
  color: rgba(46, 41, 35, 0.62);
  font-size: 0.98rem;
  line-height: 1.75;
}

.detail-note a {
  text-decoration: none;
}

.detail-note a:hover,
.detail-note a:focus-visible {
  color: #000000;
  outline: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: rgba(46, 41, 35, 0.08);
}

.service-item {
  min-height: 260px;
  padding: clamp(28px, 3.1vw, 44px) clamp(20px, 2.4vw, 34px);
  background: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border: 1px solid rgba(46, 41, 35, 0.14);
  border-radius: 50%;
  color: rgba(46, 41, 35, 0.62);
  background: #fbfaf8;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-item h2 {
  margin: 0 0 12px;
  color: rgba(46, 41, 35, 0.74);
  font-size: clamp(1.05rem, 1.25vw, 1.34rem);
  font-weight: 300;
  line-height: 1.18;
}

.service-item p {
  margin: 0;
  color: rgba(46, 41, 35, 0.6);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.55;
}

.location-map-section {
  padding: 0 clamp(24px, 6vw, 112px) clamp(58px, 7vw, 108px);
  background: #ffffff;
}

.location-map-frame {
  min-height: 540px;
  overflow: hidden;
  background: #eee8df;
}

.location-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 540px;
  border: 0;
}

.contact-reference-list {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: clamp(28px, 5vw, 82px);
  width: min(calc(100% - 68px), 1120px);
  margin: 0 auto clamp(24px, 3vw, 42px);
}

.contact-reference-item {
  min-width: 0;
}

.contact-reference-item span {
  display: block;
  margin-bottom: 8px;
  color: rgba(46, 41, 35, 0.46);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-reference-item p,
.contact-reference-item a {
  margin: 0;
  color: rgba(46, 41, 35, 0.78);
  font-size: clamp(1.05rem, 1.35vw, 1.34rem);
  font-weight: 300;
  line-height: 1.45;
}

.contact-reference-item a {
  text-decoration: none;
}

.contact-reference-item a:hover,
.contact-reference-item a:focus-visible {
  color: #000000;
  outline: none;
}

.house-page {
  overflow: hidden;
}

.house-carousel {
  position: relative;
  min-height: min(760px, calc(100vh - var(--header-main-height) - var(--header-menu-height)));
  overflow: hidden;
  background: #ede6dd;
  cursor: pointer;
}

.house-carousel-track {
  position: absolute;
  inset: 0;
}

.house-carousel-slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.018);
  transition: opacity 900ms ease, transform 3800ms ease;
}

.house-carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.house-carousel-controls {
  position: absolute;
  bottom: clamp(20px, 3vw, 42px);
  left: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(12px);
  color: var(--text);
  transform: translateX(-50%);
}

.house-carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 1.65rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.house-carousel-button:hover,
.house-carousel-button:focus-visible {
  color: #000000;
  outline: 1px solid rgba(46, 41, 35, 0.24);
  outline-offset: 2px;
}

.house-carousel-count {
  min-width: 54px;
  color: rgba(46, 41, 35, 0.76);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-align: center;
}

.house-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(62px, 8vh, 94px) clamp(18px, 7vw, 120px) clamp(78px, 10vh, 110px);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.house-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.house-lightbox-figure {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(78vw, 1180px);
  max-height: 76vh;
  margin: 0;
}

.house-lightbox-figure img {
  display: block;
  max-width: 100%;
  max-height: 76vh;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(46, 41, 35, 0.18);
}

.house-lightbox-close,
.house-lightbox-arrow {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.house-lightbox-close {
  top: 28px;
  right: 34px;
  width: 44px;
  height: 44px;
  font-size: 2.2rem;
}

.house-lightbox-arrow {
  top: 50%;
  width: 58px;
  height: 74px;
  font-size: 3.2rem;
  transform: translateY(-50%);
}

.house-lightbox-arrow-prev {
  left: clamp(16px, 3.4vw, 58px);
}

.house-lightbox-arrow-next {
  right: clamp(16px, 3.4vw, 58px);
}

.house-lightbox-close:hover,
.house-lightbox-close:focus-visible,
.house-lightbox-arrow:hover,
.house-lightbox-arrow:focus-visible {
  color: rgba(46, 41, 35, 0.58);
  outline: none;
}

.house-lightbox-count {
  position: absolute;
  left: 50%;
  bottom: 34px;
  color: var(--text);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  transform: translateX(-50%);
}

.house-section-intro {
  width: min(calc(100% - 68px), 960px);
  margin: 0 auto;
  padding: clamp(42px, 5vw, 70px) 0 clamp(14px, 2.4vw, 28px);
  text-align: center;
}

.house-section-intro .feature-kicker {
  margin-bottom: 10px;
}

.house-section-intro h1 {
  margin: 0 0 14px;
  color: rgba(46, 41, 35, 0.72);
  font-size: clamp(1.9rem, 3vw, 3.25rem);
  font-weight: 300;
  line-height: 1.12;
}

.house-section-intro p:not(.feature-kicker) {
  margin: 0 auto;
  max-width: 900px;
  color: rgba(46, 41, 35, 0.64);
  font-size: clamp(0.95rem, 1.08vw, 1.05rem);
  font-weight: 300;
  line-height: 1.62;
}

.room-suite-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.3vw, 34px);
  width: min(calc(100% - 68px), 1340px);
  margin: 0 auto clamp(58px, 7vw, 96px);
  padding: clamp(30px, 4vw, 52px) 0 0;
}

.room-suite {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
  background: #ffffff;
}

.room-suite-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #eee8df;
}

.room-suite-gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: inherit;
  background: #f3eee7;
  cursor: pointer;
}

.room-suite-slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  opacity: 0;
  transform: scale(1.018);
  transition: opacity 700ms ease, transform 1800ms ease;
}

.room-suite-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.room-suite:hover .room-suite-slide.is-active {
  transform: scale(1.025);
}

.room-suite-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0;
  transform: translateX(-50%);
}

.room-suite-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.room-suite-dot.is-active {
  border-color: #ffffff;
  background: #ffffff;
  transform: scale(1.08);
}

.room-suite-dot:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.room-suite-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 54px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 2.1rem;
  font-weight: 300;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  transform: translateY(-50%);
}

.room-suite-arrow-prev {
  left: 12px;
}

.room-suite-arrow-next {
  right: 12px;
}

.room-suite-arrow:hover,
.room-suite-arrow:focus-visible {
  color: rgba(255, 255, 255, 0.72);
  outline: none;
}

.room-suite-copy {
  order: -1;
  max-width: none;
  min-height: 2.1rem;
  text-align: center;
}

.room-suite-copy h2 {
  margin: 0;
  color: rgba(46, 41, 35, 0.78);
  font-size: clamp(1.15rem, 1.45vw, 1.6rem);
  font-weight: 300;
  line-height: 1.18;
}

.room-suite-copy .feature-kicker,
.room-suite-copy p:not(.feature-kicker) {
  display: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  column-gap: 34px;
  width: 100%;
  padding: 34px 34px 30px;
  border-top: 1px solid rgba(46, 41, 35, 0.14);
  background: #ffffff;
  color: var(--text);
  text-align: center;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  grid-row: 1 / span 2;
  align-self: stretch;
  gap: 5px;
  margin: 0;
  color: rgba(46, 41, 35, 0.64);
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.45;
  text-align: left;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-contact span span,
.footer-contact a span {
  color: rgba(46, 41, 35, 0.86);
  font-weight: 600;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #000000;
  outline: none;
}

.footer-code {
  margin-top: 1em;
}

.footer-brand {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  text-decoration: none;
}

.footer-brand:focus-visible {
  outline: 1px solid rgba(46, 41, 35, 0.32);
  outline-offset: 8px;
}

.footer-social {
  grid-column: 2;
  justify-content: center;
  margin-top: 14px;
}

.site-footer .social-button {
  border-color: rgba(46, 41, 35, 0.22);
  background: transparent;
  color: var(--text);
}

.site-footer .social-button:hover,
.site-footer .social-button:focus-visible {
  border-color: rgba(46, 41, 35, 0.42);
  background: rgba(46, 41, 35, 0.06);
}

.footer-menu {
  grid-column: 3;
  grid-row: 1 / span 2;
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  align-self: stretch;
  justify-content: center;
  gap: 6px;
  min-width: 140px;
  text-align: right;
}

.footer-menu p {
  margin: 0 0 6px;
  color: rgba(46, 41, 35, 0.84);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.footer-menu a {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(46, 41, 35, 0.64);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.35;
  text-align: right;
  cursor: pointer;
  text-decoration: none;
}

.footer-menu a:hover,
.footer-menu a:focus-visible {
  color: #000000;
  outline: none;
}

.footer-brand img {
  display: block;
  width: clamp(90px, 9vw, 130px);
  height: auto;
  mix-blend-mode: multiply;
  opacity: 0.94;
  filter: contrast(1.08);
}

@media (max-width: 820px) {
  .page-shell {
    width: 100%;
    padding: 0;
  }

  .topbar-main {
    grid-template-columns: minmax(82px, 1fr) auto minmax(104px, 1fr);
    justify-items: stretch;
    align-items: center;
    gap: 10px;
    height: auto;
    max-height: 210px;
    padding: 8px 16px 10px;
    transition: max-height 280ms ease, opacity 220ms ease, transform 280ms ease, padding 280ms ease;
  }

  .topbar.is-scrolled .topbar-main {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .menu-trigger,
  .topbar-actions,
  .brand {
    justify-self: auto;
  }

  .menu-trigger,
  .brand {
    height: auto;
  }

  .topbar-main > .menu-trigger {
    justify-self: start;
    align-self: center;
    min-height: 40px;
    margin-top: 0;
  }

  .topbar-main > .menu-trigger .menu-label {
    display: none;
  }

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

  .brand img {
    height: 92px;
  }

  .topbar-actions {
    justify-self: end;
    align-self: center;
    display: flex;
    justify-content: flex-end;
    justify-items: end;
    gap: 0;
    width: auto;
    margin-top: 0;
  }

  .topbar-actions .social-actions {
    display: none;
  }

  .topbar-main .reserve-button {
    width: 88px;
    height: 34px;
    padding: 0 8px;
    font-size: 0.72rem;
  }

  .topbar-main .language-switcher {
    display: none;
  }

  .header-menu {
    gap: clamp(14px, 4vw, 30px);
    min-height: 46px;
    padding: 0 14px;
    overflow-x: auto;
  }

  .header-menu > a,
  .header-menu button {
    flex: 0 0 auto;
    height: 46px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .header-menu .reserve-button-scrolled,
  .header-menu .menu-trigger-scrolled,
  .header-menu .language-switcher-scrolled {
    display: none;
  }

  body:not(.detail-template) .topbar:not(.is-scrolled) {
    color: #ffffff;
    box-shadow: none;
    backdrop-filter: blur(5px);
  }

  body:not(.detail-template) .topbar:not(.is-scrolled) .topbar-main {
    background: rgba(0, 0, 0, 0.08);
  }

  body:not(.detail-template) .topbar:not(.is-scrolled) .header-menu {
    background: rgba(255, 255, 255, 0.38);
    box-shadow: none;
  }

  body:not(.detail-template) .topbar:not(.is-scrolled) .brand img {
    opacity: 0.92;
    filter: invert(1) contrast(1.08);
  }

  body:not(.detail-template) .topbar:not(.is-scrolled) .topbar-main .reserve-button {
    background: var(--reserve-bg);
    color: var(--reserve-text);
  }

  .hero {
    margin-top: 0;
  }

  .hero-image-frame :is(img, video) {
    height: 100vh;
  }

  .booking-bar {
    bottom: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    width: calc(100% - 36px);
    max-width: 430px;
    gap: 8px;
    padding: 10px;
  }

  .booking-field {
    gap: 4px;
  }

  .booking-guests-field,
  .booking-action {
    grid-column: span 1;
  }

  .booking-field > span,
  .booking-action > span {
    font-size: 0.56rem;
    letter-spacing: 0.1em;
  }

  .booking-date-button,
  .booking-guests-button,
  .booking-submit {
    height: 38px;
  }

  .booking-date-button,
  .booking-guests-button {
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .booking-date-button::after,
  .booking-guests-button::after {
    right: 10px;
  }

  .booking-submit {
    min-width: 0;
    padding: 0 12px;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .booking-action > span {
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .booking-date-panel,
  .booking-guests-menu {
    position: fixed;
    top: 50%;
    bottom: auto;
    left: 50%;
    right: auto;
    width: min(318px, calc(100vw - 36px));
    z-index: 90;
    transform: translate(-50%, -50%);
  }

  .booking-date-panel {
    min-width: 0;
    padding: 10px;
  }

  .booking-date-header {
    grid-template-columns: 30px 1fr 30px;
    gap: 6px;
    margin-bottom: 8px;
  }

  .booking-date-header strong {
    font-size: 0.94rem;
  }

  .booking-date-header button {
    width: 30px;
    height: 30px;
  }

  .booking-date-weekdays,
  .booking-date-grid {
    gap: 3px;
  }

  .booking-date-grid button,
  .booking-date-grid span {
    border-radius: 5px;
    font-size: 0.78rem;
  }

  .booking-guests-menu {
    padding: 6px;
  }

  .booking-guests-menu button {
    height: 34px;
    font-size: 0.86rem;
  }

  .home-intro {
    width: 100%;
    padding: 42px 24px 22px;
  }

  .home-location {
    margin-bottom: 12px;
    font-size: 0.68rem;
  }

  .home-intro h1 {
    margin-bottom: 18px;
  }

  .home-intro-text {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-feature-list {
    grid-template-columns: 1fr;
    gap: 48px;
    width: 100%;
    margin: 0;
    padding: 62px 24px 70px;
  }

  .home-feature {
    max-width: 640px;
    margin: 0 auto;
  }

  .home-feature-copy {
    max-width: none;
  }

  .home-feature-media img {
    aspect-ratio: 4 / 5;
  }

  .detail-hero,
  .detail-hero img {
    min-height: 52vh;
    height: 52vh;
  }

  .detail-hero-no-image {
    min-height: auto;
    height: auto;
    padding: 72px 24px 54px;
  }

  #contatti .detail-hero-no-image {
    padding-bottom: 28px;
  }

  .detail-hero-no-image .detail-intro {
    width: 100%;
  }

  .detail-page {
    padding-top: 256px;
  }

  .detail-intro {
    bottom: 18px;
    width: calc(100% - 36px);
    padding: 20px 18px;
  }

  .house-carousel {
    min-height: 58vh;
  }

  .house-carousel-controls {
    bottom: 14px;
  }

  .house-lightbox {
    padding: 64px 18px 76px;
  }

  .house-lightbox-figure,
  .house-lightbox-figure img {
    max-width: 100%;
    max-height: 70vh;
  }

  .house-lightbox-close {
    top: 14px;
    right: 16px;
  }

  .house-lightbox-arrow {
    width: 42px;
    height: 62px;
    font-size: 2.5rem;
  }

  .room-suite-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
    width: calc(100% - 48px);
    padding-top: 34px;
  }

  .room-suite {
    gap: 6px;
  }

  .room-suite-copy {
    min-height: 2rem;
  }

  .room-suite-copy h2 {
    font-size: clamp(1.05rem, 4.2vw, 1.35rem);
  }

  .location-map-section {
    padding: 0 24px 52px;
  }

  .location-map-frame,
  .location-map-frame iframe {
    min-height: 420px;
  }

  .contact-reference-list {
    grid-template-columns: 1fr;
    width: calc(100% - 48px);
    gap: 16px;
    margin: 0 auto 24px;
    text-align: center;
  }

  .contact-reference-item span {
    margin-bottom: 8px;
    font-size: 0.68rem;
  }

  .contact-reference-item p,
  .contact-reference-item a {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(1rem, 4.4vw, 1.18rem);
  }

  .detail-content {
    grid-template-columns: 1fr;
  }

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

  .service-item {
    aspect-ratio: 1 / 1;
    min-height: 0;
    padding: 14px 10px;
    justify-content: center;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .service-icon svg {
    width: 21px;
    height: 21px;
  }

  .service-item h2 {
    margin-bottom: 6px;
    font-size: clamp(0.82rem, 3.5vw, 0.96rem);
  }

  .service-item p {
    display: block;
    font-size: 0.68rem;
    line-height: 1.28;
  }

  .site-menu {
    width: min(88vw, 390px);
    padding: 28px 32px 38px;
  }

  .menu-header-row {
    min-height: 74px;
    padding-bottom: 20px;
  }

  .menu-logo {
    width: 130px;
  }

  .menu-nav {
    margin: 34px 0 18px;
  }

  .menu-nav a {
    min-height: 58px;
    font-size: 0.82rem;
  }

  .menu-reserve-button {
    width: 148px;
    min-width: 148px;
    height: 40px;
  }

  .menu-language {
    gap: 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 22px 24px;
  }

  .footer-contact {
    order: 3;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    grid-column: 1;
    grid-row: auto;
    gap: 7px 14px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(46, 41, 35, 0.1);
    color: rgba(46, 41, 35, 0.68);
    font-size: 0.82rem;
    line-height: 1.55;
    text-align: center;
  }

  .footer-contact a,
  .footer-contact > span {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }

  .footer-contact a:first-child {
    grid-column: 1 / -1;
  }

  .footer-code {
    margin-top: 0;
  }

  .footer-brand {
    order: 1;
    grid-column: 1;
    justify-self: center;
  }

  .footer-brand img {
    width: clamp(132px, 34vw, 176px);
  }

  .footer-social {
    order: 2;
    grid-column: 1;
    justify-content: center;
    margin-top: 8px;
  }

  .footer-menu {
    display: none;
  }
}

@media (max-width: 520px) {
  .action-button {
    width: 128px;
    padding: 14px 18px;
    font-size: 0.82rem;
  }

  .social-button {
    width: 31px;
    height: 31px;
  }

  .social-button svg {
    width: 17px;
    height: 17px;
  }

  .menu-label,
  .language-button {
    font-size: 0.92rem;
  }

  .hero-image-frame {
    border-radius: 0;
  }

  .hero-image-frame :is(img, video) {
    height: 100vh;
  }

  .booking-bar {
    width: calc(100% - 24px);
    gap: 7px;
    padding: 9px;
  }

  .booking-date-button,
  .booking-guests-button {
    font-size: 0.76rem;
  }

  .booking-field > span,
  .booking-action > span {
    font-size: 0.52rem;
  }

  .booking-date-panel,
  .booking-guests-menu {
    width: min(304px, calc(100vw - 24px));
  }

  .home-intro {
    width: 100%;
    padding: 38px 18px 58px;
  }

  .home-feature-list {
    width: 100%;
    gap: 42px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .home-feature-media img {
    aspect-ratio: 4 / 5;
  }

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

  .service-item {
    padding: 10px 8px;
  }
}
