:root {
  --ink: #171816;
  --ink-soft: #4f514c;
  --paper: #f4f1eb;
  --paper-bright: #fbfaf7;
  --stone: #d8d2c8;
  --line: rgba(23, 24, 22, 0.16);
  --gold: #a98046;
  --gold-light: #d7bd91;
  --white: #fff;
  --serif: "Bodoni 72", Didot, "Bodoni MT", Georgia, serif;
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --page: min(94vw, 1440px);
  --ldg-psb-background: #fbfaf7;
  --ldg-psb-border-radius: 0.42em;
  --ldg-psb-box-shadow: none;
  --ldg-psb-padding: 0;
  --ldg-psb-input-background: #fbfaf7;
  --ldg-psb-button-border-radius: 3.58em;
  --ldg-psb-color-primary: #a98046;
  --ldg-psb-color-primary-lighter: #d7bd91;
  --ldg-psb-color-primary-darker: #5e4527;
  --ldg-psb-color-primary-contrast: #ffffff;
  --ldg-semantic-color-primary: #a98046;
  --ldg-semantic-color-primary-lighter: #d7bd91;
  --ldg-semantic-color-primary-darker: #5e4527;
  --ldg-semantic-color-primary-contrast: #ffffff;
  --ldg-component-modal-z-index: 999;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
  width: 100%;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
}

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

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 50%;
  display: flex;
  width: var(--page);
  height: 108px;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, height 180ms ease, width 180ms ease;
}

.site-header.is-sticky {
  position: fixed;
  width: 100%;
  height: 76px;
  padding: 0 3vw;
  border-color: var(--line);
  color: var(--ink);
  background: rgba(244, 241, 235, 0.94);
  box-shadow: 0 8px 28px rgba(29, 28, 25, 0.06);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand img {
  width: 50px;
  height: 60px;
  border-radius: 2px;
  object-fit: contain;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.38);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.brand-copy small {
  margin-top: 7px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.23em;
}

.desktop-nav {
  display: flex;
  gap: clamp(24px, 3vw, 52px);
  margin-left: auto;
  margin-right: clamp(24px, 3.5vw, 58px);
  font-size: 13px;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.language-switch {
  display: inline-flex;
  gap: 5px;
  padding: 5px;
  border: 0;
  color: inherit;
  background: transparent;
  font-size: 11px;
  cursor: pointer;
}

.language-switch span:not(.active) {
  opacity: 0.48;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 27px;
  border: 1px solid var(--gold);
  border-radius: 0;
  color: var(--white);
  background: var(--gold);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  color: var(--ink);
  background: var(--gold-light);
  transform: translateY(-2px);
}

.button-small {
  min-height: 43px;
  padding: 0 22px;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 820px;
  grid-template-columns: 0.82fr 1.18fr;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  position: absolute;
  z-index: 1;
  top: 108px;
  left: 0;
  width: 43.8%;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 172px clamp(46px, 6vw, 108px) 94px max(3vw, calc((100vw - 1440px) / 2));
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

h1 {
  max-width: 670px;
  margin-bottom: 34px;
  font-size: clamp(60px, 6.5vw, 112px);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(46px, 5.2vw, 84px);
  letter-spacing: -0.04em;
}

h3 {
  font-size: clamp(42px, 4vw, 68px);
  letter-spacing: -0.035em;
}

.hero-intro {
  max-width: 470px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.69);
  font-size: clamp(16px, 1.3vw, 20px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 7px 0 5px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link span:last-child {
  transition: transform 180ms ease;
}

.text-link:hover span:last-child {
  transform: translate(3px, -3px);
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 24, 22, 0.46) 0%, transparent 32%, rgba(0, 0, 0, 0.08) 100%);
  content: "";
  pointer-events: none;
}

.hero-main {
  position: relative;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.hero-main .hero-slide {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 1100ms ease, transform 6500ms ease;
}

.hero-main .hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.hero-side {
  position: absolute;
  z-index: 4;
  right: 5vw;
  bottom: 0;
  width: min(27%, 270px);
  height: 39%;
  margin: 0;
  border: 10px solid var(--ink);
  border-bottom: 0;
}

.hero-side img {
  height: 100%;
  object-fit: cover;
}

.hero-note {
  position: absolute;
  z-index: 5;
  top: 144px;
  right: max(3vw, calc((100vw - 1440px) / 2));
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  color: var(--ink);
  background: rgba(244, 241, 235, 0.92);
  backdrop-filter: blur(10px);
}

.hero-note > span {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 0.8;
}

.hero-note p {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-carousel-controls {
  position: absolute;
  z-index: 6;
  bottom: 32px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 13px;
  color: var(--white);
  background: rgba(23, 24, 22, 0.5);
  backdrop-filter: blur(8px);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-carousel-controls > div {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-carousel-controls button {
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero-carousel-controls button::before {
  display: block;
  width: 16px;
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
  content: "";
  transition: background 180ms ease, transform 180ms ease;
}

.hero-carousel-controls button.is-active::before {
  transform: scaleY(2);
  background: var(--white);
}

.booking-shell {
  position: relative;
  z-index: 8;
  width: min(90vw, 1280px);
  margin: -58px auto 0;
  padding: 34px 42px 22px;
  color: var(--ink);
  background: var(--paper-bright);
  box-shadow: 0 22px 70px rgba(23, 24, 22, 0.14);
}

.booking-heading {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 24px;
}

.booking-heading .eyebrow,
.booking-heading h2 {
  margin-bottom: 0;
}

.booking-heading h2 {
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.lodgify-widget,
#lodgify-search-bar {
  width: 100%;
}

.lodgify-widget {
  min-height: 74px;
}

.lodgify-fallback {
  display: inline-flex;
}

.booking-note {
  margin: 11px 0 0;
  color: #77786f;
  font-size: 11px;
}

.intro-section {
  display: grid;
  width: var(--page);
  grid-template-columns: 1fr 0.74fr;
  gap: 12vw;
  align-items: end;
  margin: 0 auto;
  padding: 150px 4vw 98px;
}

.intro-section h2 {
  margin-bottom: 0;
}

.intro-section > p {
  max-width: 520px;
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: 17px;
}

.stays {
  width: var(--page);
  margin: 0 auto;
}

.stay-card {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(340px, 0.72fr);
  min-height: 630px;
  margin-bottom: 120px;
  background: var(--paper-bright);
}

.stay-card-reverse {
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1.65fr);
}

.stay-card-reverse .stay-gallery {
  order: 2;
}

.stay-card-reverse .stay-copy {
  order: 1;
}

.stay-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 2.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  min-width: 0;
  overflow: hidden;
  background: var(--ink);
}

.stay-gallery button {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--ink);
  cursor: zoom-in;
}

.stay-gallery button::after {
  position: absolute;
  inset: 0;
  background: rgba(23, 24, 22, 0.16);
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.stay-gallery button:hover::after {
  opacity: 1;
}

.stay-gallery img {
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.stay-gallery button:hover img {
  transform: scale(1.035);
}

.stay-gallery .gallery-main {
  grid-row: 1 / span 2;
}

.gallery-count {
  position: absolute !important;
  z-index: 5;
  right: 18px;
  bottom: 18px;
  padding: 9px 14px !important;
  color: var(--ink);
  background: var(--paper-bright) !important;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer !important;
}

.stay-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 74px clamp(42px, 5vw, 80px);
}

.stay-number {
  position: absolute;
  top: 28px;
  right: 32px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 24px;
}

.stay-copy .eyebrow {
  margin-bottom: 16px;
}

.stay-copy h3 {
  margin-bottom: 28px;
}

.stay-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.stay-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 30px 0 38px;
  padding: 21px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.stay-facts li {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  text-align: center;
}

.stay-facts li:last-child {
  border: 0;
}

.stay-facts strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.stay-facts span {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stay-copy .text-link {
  align-self: flex-start;
}

.stay-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 26px;
}

.stay-actions > a:last-child {
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12px;
}

.booking-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 30px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-trust span::before,
.booking-trust a::before {
  margin-right: 8px;
  color: var(--gold);
  content: "✓";
}

.booking-trust a {
  border-bottom: 1px solid var(--line);
}

.experience {
  padding: 142px max(3vw, calc((100vw - 1440px) / 2));
  color: var(--white);
  background: var(--ink);
}

.experience-title {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  margin-bottom: 84px;
}

.experience-title h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.amenity {
  position: relative;
  min-height: 230px;
  padding: 39px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.amenity > span {
  position: absolute;
  top: 20px;
  right: 22px;
  color: var(--gold);
  font-size: 10px;
}

.amenity h3 {
  margin: 54px 0 15px;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.amenity p {
  max-width: 310px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.architecture {
  display: grid;
  width: var(--page);
  grid-template-columns: 0.63fr 1.37fr;
  gap: 8vw;
  margin: 0 auto;
  padding: 150px 0;
}

.architecture-copy {
  align-self: center;
  padding-left: 4vw;
}

.architecture-copy > p:last-child {
  max-width: 430px;
  color: var(--ink-soft);
}

.architecture-images {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr 0.72fr;
  gap: 14px;
}

.architecture-images img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.architecture-wide {
  grid-column: 1 / -1;
  min-height: 390px !important;
}

.location {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 610px;
  color: var(--white);
  background: #242722;
}

.location-map {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: #d1c8b9;
}

.location-map::before,
.location-map::after,
.map-lines::before,
.map-lines::after {
  position: absolute;
  border: 1px solid rgba(44, 48, 40, 0.26);
  border-radius: 50%;
  content: "";
}

.location-map::before {
  top: -28%;
  left: -18%;
  width: 100%;
  height: 88%;
  transform: rotate(18deg);
}

.location-map::after {
  right: -30%;
  bottom: -30%;
  width: 105%;
  height: 90%;
  transform: rotate(-28deg);
}

.map-lines::before {
  top: 16%;
  right: 8%;
  width: 70%;
  height: 42%;
  transform: rotate(-12deg);
}

.map-lines::after {
  bottom: 2%;
  left: 8%;
  width: 53%;
  height: 56%;
  transform: rotate(33deg);
}

.map-label {
  position: absolute;
  color: rgba(36, 39, 34, 0.42);
  font-family: var(--serif);
  font-style: italic;
}

.map-label-one {
  right: 9%;
  bottom: 12%;
  font-size: 29px;
}

.map-label-two {
  top: 18%;
  left: 15%;
  font-size: 20px;
}

.map-marker {
  position: absolute;
  z-index: 3;
  top: 48%;
  left: 53%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.map-marker i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 7px rgba(215, 189, 145, 0.22);
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(48px, 6vw, 96px);
}

.location-copy p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.62);
}

.location-copy address {
  margin: 26px 0 38px;
  font-family: var(--serif);
  font-size: 21px;
  font-style: normal;
  line-height: 1.45;
}

.location-copy .text-link {
  align-self: flex-start;
}

.faq-section {
  display: grid;
  width: var(--page);
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 9vw;
  margin: 0 auto;
  padding: 130px 4vw 50px;
}

.faq-heading h2 {
  max-width: 570px;
  margin-bottom: 0;
  font-size: clamp(38px, 4vw, 66px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-family: var(--serif);
  font-size: 21px;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--gold);
  content: "+";
  font-family: var(--sans);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.intro-section,
.stays,
.experience,
.architecture,
.location,
.faq-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 700px;
}

/* Pagine dei singoli appartamenti */
.property-body {
  background: var(--paper-bright);
}

.property-header {
  display: flex;
  width: var(--page);
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.property-header .brand img {
  box-shadow: none;
}

.property-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 12px;
}

.property-hero {
  display: grid;
  width: var(--page);
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 6vw;
  align-items: center;
  margin: 0 auto;
  padding: 68px 4vw 84px;
}

.property-hero h1 {
  margin: 8px 0 24px;
  font-size: clamp(56px, 7vw, 108px);
}

.property-lead {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 18px;
}

.property-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.property-cover {
  min-height: 610px;
  height: 72vh;
  max-height: 790px;
  object-fit: cover;
}

.property-facts {
  display: grid;
  width: var(--page);
  grid-template-columns: repeat(6, 1fr);
  margin: 0 auto;
  padding: 0 4vw 80px;
}

.property-facts div {
  min-height: 110px;
  padding: 24px 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.property-facts div:first-child {
  border-left: 1px solid var(--line);
}

.property-facts strong,
.property-facts span {
  display: block;
}

.property-facts strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.property-facts span {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.property-story {
  display: grid;
  width: var(--page);
  grid-template-columns: 0.75fr 1.25fr;
  gap: 9vw;
  margin: 0 auto;
  padding: 85px 4vw 110px;
}

.property-story h2 {
  font-size: clamp(38px, 4.4vw, 68px);
}

.property-story-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  color: var(--ink-soft);
}

.property-gallery {
  display: grid;
  width: var(--page);
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: 360px;
  gap: 4px;
  margin: 0 auto;
  padding: 0 3vw 110px;
}

.property-gallery img {
  height: 100%;
  object-fit: cover;
}

.property-gallery img:first-child,
.property-gallery img:nth-child(4) {
  grid-row: span 2;
}

.property-booking {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  padding: 90px max(7vw, calc((100vw - 1280px) / 2));
  color: var(--white);
  background: var(--ink);
}

.property-booking h2 {
  max-width: 760px;
  margin-bottom: 12px;
}

.property-booking p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

.property-cin {
  margin-top: 22px !important;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.property-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  font-size: 12px;
}

.closing-cta {
  padding: 140px 5vw 148px;
  text-align: center;
}

.closing-cta h2 {
  margin-bottom: 22px;
}

.closing-cta > p:not(.eyebrow) {
  margin-bottom: 38px;
  color: var(--ink-soft);
}

.closing-cta > div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

footer {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto auto;
  gap: 36px 7vw;
  align-items: center;
  padding: 54px max(3vw, calc((100vw - 1440px) / 2));
  border-top: 1px solid var(--line);
  background: var(--paper-bright);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-brand img {
  width: 58px;
  height: 70px;
  border-radius: 2px;
  object-fit: contain;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.footer-brand span {
  font-size: 8px;
  letter-spacing: 0.21em;
}

.footer-links {
  display: flex;
  gap: 30px;
  font-size: 12px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--ink-soft);
  font-size: 11px;
}

.footer-legal p {
  margin: 0;
}

.footer-legal a {
  border-bottom: 1px solid currentColor;
  color: inherit;
}

.cin-list {
  display: flex;
  grid-column: 1 / -1;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #77786f;
  font-size: 9px;
  letter-spacing: 0.05em;
}

.business-details {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 8px 24px;
  color: #77786f;
  font-size: 10px;
}

.business-details a {
  border-bottom: 1px solid rgba(23, 24, 22, 0.24);
}

.whatsapp-fab {
  position: fixed;
  z-index: 45;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 9px 18px 9px 9px;
  border-radius: 999px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 12px 36px rgba(18, 78, 53, 0.28);
  font-size: 13px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(18, 78, 53, 0.36);
}

.whatsapp-fab span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--white);
  background: rgba(16, 17, 15, 0.96);
}

.lightbox::backdrop {
  background: rgba(16, 17, 15, 0.84);
}

.lightbox[open] {
  display: grid;
  grid-template-columns: 90px 1fr 90px;
  align-items: center;
}

.lightbox figure {
  display: flex;
  height: 88vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.lightbox figure img,
.lightbox figure video {
  width: auto;
  max-width: min(82vw, 1320px);
  height: auto;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox figure video {
  background: #000;
}

.lightbox figcaption {
  display: flex;
  width: min(82vw, 1320px);
  justify-content: space-between;
  margin-top: 15px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-arrow {
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 31px;
  font-size: 35px;
  font-weight: 200;
}

.lightbox-arrow {
  height: 100%;
  font-size: 25px;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 32px;
    height: 32px;
    place-content: center;
    gap: 6px;
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 23px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 40;
    inset: 0;
    display: flex;
    transform: translateY(-105%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    color: var(--white);
    background: var(--ink);
    font-family: var(--serif);
    font-size: 42px;
    opacity: 0;
    transition: transform 300ms ease, opacity 300ms ease;
  }

  .menu-open .mobile-menu {
    transform: translateY(0);
    opacity: 1;
  }

  .menu-open .site-header {
    position: fixed;
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: none;
  }

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

  .hero-copy {
    padding-right: 45px;
  }

  .booking-shell {
    padding-right: 26px;
    padding-left: 26px;
  }

  .stay-card,
  .stay-card-reverse {
    grid-template-columns: 1.35fr 0.75fr;
  }

  .stay-card-reverse .stay-gallery {
    order: 1;
  }

  .stay-card-reverse .stay-copy {
    order: 2;
  }

  .stay-copy {
    padding-right: 42px;
    padding-left: 42px;
  }

  .architecture {
    gap: 5vw;
  }
}

@media (max-width: 820px) {
  .site-header {
    width: 90vw;
    height: 84px;
  }

  .site-header.is-sticky {
    height: 68px;
    padding: 0 5vw;
  }

  .brand img {
    width: 40px;
    height: 48px;
  }

  .brand-copy small {
    display: none;
  }

  .header-actions .button {
    display: none;
  }

  .header-actions {
    gap: 12px;
  }

  .hero {
    display: flex;
    min-height: 850px;
    flex-direction: column;
  }

  .hero-copy {
    min-height: 610px;
    justify-content: flex-end;
    padding: 136px 5vw 78px;
  }

  .hero-visual {
    position: absolute;
    z-index: 0;
    inset: 0;
    opacity: 0.46;
  }

  .hero-visual::after {
    background: linear-gradient(180deg, rgba(23, 24, 22, 0.22), rgba(23, 24, 22, 0.5) 45%, var(--ink) 88%);
  }

  .hero-main img {
    object-position: 58% center;
  }

  .hero-side,
  .hero-note,
  .hero-carousel-controls {
    display: none;
  }

  .booking-shell {
    width: 90vw;
    margin-top: -140px;
    padding: 26px 22px 20px;
  }

  .booking-heading {
    display: block;
  }

  .booking-heading .eyebrow {
    margin-bottom: 9px;
  }

  .intro-section {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 115px 2vw 70px;
  }

  .stays {
    width: 90vw;
  }

  .stay-card,
  .stay-card-reverse {
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin-bottom: 72px;
  }

  .stay-card-reverse .stay-gallery {
    order: 0;
  }

  .stay-gallery {
    height: 470px;
  }

  .stay-copy {
    padding: 64px 9vw;
  }

  .experience {
    padding: 105px 5vw;
  }

  .experience-title {
    grid-template-columns: 1fr;
    margin-bottom: 60px;
  }

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

  .architecture {
    grid-template-columns: 1fr;
    padding: 110px 0;
  }

  .architecture-copy {
    padding: 0 2vw 30px;
  }

  .architecture-images {
    height: 680px;
  }

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

  .location-map {
    min-height: 430px;
  }

  .location-copy {
    padding: 84px 8vw;
  }

  footer {
    grid-template-columns: 1fr auto;
  }

  .footer-links {
    display: none;
  }

  .cin-list {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 540px) {
  .hero-copy {
    min-height: 660px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 45px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .booking-shell {
    margin-top: -124px;
  }

  .stay-gallery {
    height: 330px;
    grid-template-columns: 1fr;
  }

  .stay-gallery .gallery-main {
    grid-row: 1 / -1;
  }

  .stay-gallery > button:not(.gallery-main):not(.gallery-count) {
    display: none;
  }

  .stay-copy {
    padding: 58px 28px;
  }

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

  .amenity {
    min-height: 190px;
  }

  .architecture-images {
    display: flex;
    height: auto;
    flex-direction: column;
  }

  .architecture-images img,
  .architecture-wide {
    min-height: 300px !important;
  }

  .location-map {
    min-height: 340px;
  }

  .closing-cta {
    padding: 105px 5vw;
  }

  .closing-cta > div {
    flex-direction: column;
    gap: 23px;
  }

  footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .lightbox[open] {
    display: block;
  }

  .lightbox figure {
    height: 100vh;
  }

  .lightbox figure img,
  .lightbox figure video {
    max-width: 100vw;
    max-height: 78vh;
  }

  .lightbox figcaption {
    width: 88vw;
  }

  .lightbox-arrow {
    position: absolute;
    z-index: 3;
    bottom: 22px;
    width: 50%;
    height: 60px;
  }

  .lightbox-prev {
    left: 0;
  }

  .lightbox-next {
    right: 0;
  }

  .whatsapp-fab {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 7px;
  }

  .whatsapp-fab strong {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

@media (max-width: 820px) {
  .booking-trust {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 90px;
  }

  .property-header {
    min-height: 78px;
  }

  .property-header .brand-copy,
  .property-nav > a:not(.button) {
    display: none;
  }

  .property-hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .property-cover {
    min-height: 460px;
    height: 62vh;
  }

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

  .property-facts div:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .property-story,
  .property-story-copy,
  .property-booking {
    grid-template-columns: 1fr;
  }

  .property-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 330px;
  }

  .property-gallery img:first-child,
  .property-gallery img:nth-child(4) {
    grid-row: span 1;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
