:root {
  --paper: #fbf7ef;
  --paper-2: #eee7dc;
  --ink: #1f241f;
  --muted: #67645d;
  --pine: #59663F;
  --leaf: #7a845f;
  --clay: #59663F;
  --sun: #d7a85f;
  --water: #59663F;
  --line: rgba(89, 102, 63, .2);
  --shadow: 0 22px 70px rgba(89, 102, 63, .14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  word-spacing: -.025em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, iframe { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select { font: inherit; }
:focus-visible { outline: 3px solid var(--sun); outline-offset: 3px; }

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 4000;
  transform: translateY(-180%);
  background: var(--paper);
  color: var(--ink);
  padding: .75rem 1rem;
  border: 1px solid var(--ink);
}
.skip-link:focus { transform: translateY(0); }

.eyebrow {
  color: var(--clay);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 58px;
  padding: .32rem clamp(1rem, 4vw, 4rem);
  color: var(--ink);
  background: rgba(251, 247, 239, .86);
  border-bottom: 1px solid rgba(89, 102, 63, .12);
  backdrop-filter: blur(18px);
  transition: background .28s ease, color .28s ease, padding .28s ease;
}
.site-header.is-solid {
  background: rgba(251, 247, 239, .96);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-block: .28rem;
}
.brand {
  justify-self: start;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
}
.brand img {
  width: 104px;
  height: auto;
  filter: none;
}
.is-solid .brand img { filter: none; }
.site-header nav {
  justify-self: center;
}
.nav-links {
  display: flex;
  gap: clamp(.75rem, 2vw, 1.55rem);
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  text-decoration: none;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
  white-space: nowrap;
}
.is-solid .nav-links a { text-shadow: none; }
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.header-actions .btn {
  min-height: 38px;
  padding: .55rem 1.05rem;
}
.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(255,255,255,.42);
}
.site-header.is-solid .language-toggle {
  background: rgba(89, 102, 63, .08);
}
.language-toggle a {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
}
.language-toggle a.is-active {
  background: currentColor;
}
.language-toggle a.is-active {
  color: var(--pine);
}
.site-header:not(.is-solid) .language-toggle a.is-active,
.site-header.is-solid .language-toggle a.is-active {
  background: var(--pine);
  color: #fff;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor, 0 -6px 0 currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .72rem 1.2rem;
  background: var(--clay);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .055em;
  font-size: .76rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); background: #44502f; }
.btn.secondary {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn.light {
  background: var(--paper);
  color: var(--pine);
}

.hero {
  min-height: 92svh;
  position: relative;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: var(--pine);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.4s ease, transform 8s ease;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-slide img,
.hero-slide video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.44) 0%, rgba(0,0,0,.08) 42%, rgba(0,0,0,.56) 100%),
    linear-gradient(90deg, rgba(0,0,0,.35), transparent 55%);
}
.hero-content {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 9rem 0 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
}
.hero-copy { max-width: 760px; }
h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: .98;
  letter-spacing: 0;
}
h1 { font-size: clamp(4rem, 10vw, 9rem); }
h2 { font-size: clamp(2.5rem, 6vw, 5.25rem); }
h3 { font-size: clamp(1.55rem, 2.3vw, 2.3rem); }
.hero-copy p {
  max-width: 590px;
  margin: 1.1rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}
.hero-meta {
  display: grid;
  gap: .85rem;
  min-width: 230px;
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,.42);
  background: rgba(0,0,0,.2);
  backdrop-filter: blur(12px);
  border-radius: 8px;
}
.hero-meta strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1;
}

.booking-panel {
  width: min(1180px, calc(100% - 2rem));
  margin: 1rem auto 0;
  position: relative;
  z-index: 100;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}
.booking-field {
  display: grid;
  gap: .25rem;
  background: var(--paper);
  padding: .72rem .95rem;
}
.booking-field label {
  font-size: .72rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .055em;
}
.booking-field input,
.booking-field select {
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  min-height: 30px;
  width: 100%;
}
.booking-panel .btn {
  border-radius: 0;
  min-height: 0;
  background: var(--pine);
}

main > section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem);
}
.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.lead {
  font-size: clamp(1.07rem, 1.8vw, 1.28rem);
  color: var(--muted);
  margin: 1.2rem 0 2rem;
}
.media-stack {
  display: grid;
  grid-template-columns: 1fr .68fr;
  gap: .85rem;
  align-items: end;
}
.intro-video-frame {
  justify-self: end;
  width: min(390px, 100%);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--paper-2);
}
.intro-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-stack img,
.restaurant-grid img,
.room-card img,
.experience-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--paper-2);
}
.media-tall { aspect-ratio: 4 / 5; }
.media-small { aspect-ratio: 4 / 3; }
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 2rem;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat {
  background: var(--paper);
  padding: 1rem;
}
.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}
.stat-icon {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--pine);
}
.stat-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stat span { color: var(--muted); font-size: .9rem; }

.restaurant {
  background: var(--pine);
  color: var(--paper);
}
.restaurant .eyebrow { color: #f0b483; }
.restaurant .lead { color: rgba(251,247,239,.78); }
.restaurant-copy {
  max-width: 780px;
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}
.restaurant-copy p {
  margin: 0;
  color: rgba(251,247,239,.78);
  font-size: clamp(1.07rem, 1.8vw, 1.28rem);
  line-height: 1.55;
}
.restaurant-menu-btn {
  justify-self: start;
  margin-top: .15rem;
}
.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: minmax(240px, auto);
  gap: .9rem;
  margin-top: 2.4rem;
  align-items: stretch;
}
.restaurant-grid figure {
  margin: 0;
  position: relative;
  min-height: 300px;
  aspect-ratio: auto;
  overflow: hidden;
  grid-column: span 2;
}
.restaurant-grid figure:first-child {
  grid-column: span 4;
  grid-row: span 2;
  min-height: 520px;
}
.restaurant-grid figure:nth-child(2),
.restaurant-grid figure:nth-child(3),
.restaurant-grid figure:nth-child(4) {
  min-height: 250px;
}
.restaurant-grid figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: .45rem .65rem;
  background: rgba(0,0,0,.55);
  color: #fff;
  border-radius: 4px;
  font-size: .85rem;
}
.rooms-header {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}
.offers-btn {
  background: var(--pine);
  color: #fff;
  flex: 0 0 auto;
  margin-bottom: .8rem;
}
.offers-btn:hover {
  background: #44502f;
  color: #fff;
}
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.room-card {
  background: #fffaf3;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}
.room-card img { aspect-ratio: 4 / 5; }
.room-card-content {
  position: relative;
  z-index: 1;
  background: #fffaf3;
  color: var(--ink);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.room-card-content .eyebrow { color: var(--pine); }
.room-card-content h3 { color: var(--ink); }
.room-card p { margin: 0; color: var(--muted); }
.room-actions {
  display: grid;
  margin-top: auto;
}
.room-actions .btn {
  width: 100%;
  min-height: 40px;
  padding-inline: .9rem;
  text-align: center;
}
.experiences {
  background: var(--paper-2);
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(210px, auto);
  gap: 1rem;
  margin-top: 2.2rem;
}
.experience-cta {
  margin-top: 1.15rem;
}
.experience-grid a {
  color: inherit;
  text-decoration: none;
}
.experience-tile {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  color: #fff;
  border-radius: 8px;
  isolation: isolate;
  grid-column: span 4;
  transition: transform .25s ease;
}
.experience-tile.wide { grid-column: span 8; }
.experience-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.7));
}
.experience-tile img {
  position: absolute;
  inset: 0;
  transition: transform .7s ease;
}
.experience-tile:hover,
.experience-tile:focus-visible,
.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-3px);
}
.experience-tile:focus-visible,
.service-card:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}
.experience-tile:hover img { transform: scale(1.05); }
.experience-tile.logo-tile img {
  object-fit: contain;
  padding: 2rem;
  background: #f7efe2;
}
.experience-tile.logo-tile:hover img { transform: none; }
.experience-copy {
  position: absolute;
  z-index: 2;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
}
.experience-copy h3 {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.38);
}
.experience-copy p { margin: .4rem 0 0; color: rgba(255,255,255,.86); }
.service-card {
  grid-column: span 3;
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.1rem, 2vw, 1.5rem);
  background: #fffaf3;
  display: grid;
  align-content: end;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(89, 102, 63, .45);
  box-shadow: 0 18px 40px rgba(48, 58, 41, .12);
}
.service-card h3 {
  margin: 0 0 .55rem;
}
.service-card p {
  margin: 0;
  color: var(--muted);
}
.service-card-photo {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: #fff;
  background: var(--pine);
  isolation: isolate;
}
.service-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.72));
}
.service-card-photo img {
  position: absolute;
  inset: 0;
  transition: transform .7s ease;
}
.service-card-photo:hover img {
  transform: scale(1.05);
}
.service-card-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: clamp(1.1rem, 2vw, 1.5rem);
}
.service-card-photo h3,
.service-card-photo p {
  color: #fff;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.location-layout .btn.secondary {
  background: var(--pine);
  border-color: var(--pine);
  color: #fff;
}
.location-layout .btn.secondary:hover {
  background: #44502f;
  border-color: #44502f;
  color: #fff;
}
.map {
  min-height: 470px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper-2);
}
.map iframe { width: 100%; height: 470px; border: 0; }
.instagram-panel {
  grid-column: 1 / -1;
}
.instagram-panel .eyebrow { margin-top: 0; }
.instagram-carousel {
  display: grid;
  gap: 1rem;
}
.instagram-carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.instagram-controls {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.icon-button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fffaf3;
  color: var(--pine);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}
.icon-button:hover {
  background: var(--pine);
  color: #fff;
}
.instagram-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--pine) transparent;
}
.instagram-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 340px);
  gap: 1rem;
  padding-bottom: .35rem;
}
.instagram-post {
  scroll-snap-align: start;
  border-radius: 8px;
  overflow: hidden;
  background: #fffaf3;
  aspect-ratio: 4 / 5;
}
.instagram-post a {
  display: block;
  width: 100%;
  height: 100%;
}
.instagram-post a:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: -3px;
}
.instagram-post img {
  width: 100%;
  height: 100%;
  transition: transform .45s ease;
}
.instagram-post:hover img {
  transform: scale(1.04);
}

.badges {
  padding-block: clamp(3rem, 5vw, 4.5rem);
  border-block: 1px solid var(--line);
  background: #fffaf3;
}
.badge-grid {
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  text-align: center;
}
.badge {
  display: grid;
  gap: 1rem;
  justify-items: center;
  align-content: start;
}
.badge-logo-link {
  display: inline-flex;
  border-radius: 50%;
  text-decoration: none;
}
.badge img {
  width: min(170px, 45vw);
  height: auto;
  mix-blend-mode: multiply;
}
.badge p { margin: 0; color: var(--muted); }

.contact {
  background: var(--water);
  color: #fff;
}
.contact .lead { color: rgba(255,255,255,.82); }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-panel {
  justify-self: end;
  padding-top: clamp(2.3rem, 4.6vw, 4.6rem);
  width: min(440px, 100%);
  display: grid;
  gap: 1.5rem;
}
.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 0;
}
.contact-list a { text-decoration-thickness: 1px; text-underline-offset: 4px; }
.whatsapp-button {
  width: max-content;
  background: #fff;
  color: var(--pine);
}
.whatsapp-button:hover {
  background: #fffaf3;
  color: var(--pine);
}
.whatsapp-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.contact form {
  background: #fffaf3;
  color: var(--ink);
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.3);
  display: grid;
  gap: 1rem;
}
.form-field {
  display: grid;
  gap: .35rem;
}
.form-field label {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.form-field input,
.form-field textarea {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: .75rem .85rem;
  background: #fff;
  color: var(--ink);
}
.form-field textarea { min-height: 130px; resize: vertical; }

footer {
  background: var(--pine);
  color: var(--paper);
  padding: 4rem clamp(1rem, 4vw, 4rem) 2rem;
}
.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(120px, 160px) minmax(130px, .65fr) minmax(250px, 1fr) minmax(150px, .7fr);
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: start;
}
.footer-grid > :first-child {
  line-height: 0;
}
.footer-logo {
  display: block;
  width: clamp(112px, 11vw, 148px);
  height: auto;
  filter: brightness(1.8);
}
.footer-links {
  display: grid;
  gap: .6rem;
}
.footer-links a {
  color: rgba(251,247,239,.75);
  text-decoration: none;
}
.footer-links a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.footer-legal-info {
  color: rgba(251,247,239,.75);
  font-size: .92rem;
  line-height: 1.55;
}
.footer-legal-info span { display: block; }
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.social-icons a {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
}
.social-icons svg { width: 20px; height: 20px; fill: currentColor; }
.legal {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
  color: rgba(251,247,239,.68);
  font-size: .85rem;
  display: grid;
  gap: .4rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3500;
  width: min(900px, calc(100% - 2rem));
  margin: 0 auto;
  background: #fffaf3;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 8px;
  padding: 1rem;
  display: none;
  gap: 1rem;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.cookie-consent-pending .cookie-banner,
.cookie-banner.is-visible { display: grid; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: .92rem; }
.cookie-banner a { color: var(--pine); font-weight: 700; }
.cookie-actions {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1800;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1f9d57;
  color: #fff;
  box-shadow: 0 12px 32px rgba(0,0,0,.22);
  transition: bottom .2s ease;
}
.cookie-consent-pending .whatsapp-float,
body.has-cookie-banner .whatsapp-float { bottom: 6.6rem; }
.whatsapp-float svg { width: 28px; height: 28px; fill: currentColor; }

.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.cursor-dot {
  width: 4px;
  height: 4px;
  background: #fff;
  mix-blend-mode: difference;
}
.cursor-outline {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.72);
  background: rgba(255,255,255,.04);
  mix-blend-mode: difference;
  transition: width .2s ease, height .2s ease, background-color .2s ease, border-color .2s ease, opacity .2s ease;
}
.custom-cursor-enabled,
.custom-cursor-enabled a,
.custom-cursor-enabled button,
.custom-cursor-enabled input,
.custom-cursor-enabled select,
.custom-cursor-enabled textarea {
  cursor: none;
}
.custom-cursor-enabled .cursor-dot,
.custom-cursor-enabled .cursor-outline {
  opacity: 1;
}
.custom-cursor-active .cursor-outline {
  width: 22px;
  height: 22px;
  border-color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.12);
}

.legal-page {
  background: var(--paper);
}
.legal-main {
  padding: 8.5rem clamp(1rem, 4vw, 4rem) 5rem;
}
.legal-content {
  width: min(860px, 100%);
  margin: 0 auto;
}
.legal-content h1 {
  margin: .4rem 0 2rem;
}
.legal-content h2 {
  margin-top: 2.4rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.legal-content h3 {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--pine);
}
.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}
.legal-content a {
  color: var(--pine);
  font-weight: 700;
}
.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--pine);
  font-weight: 700;
  text-underline-offset: 4px;
}

.menu-main {
  padding-top: 5.8rem;
}
.menu-hero,
.menu-section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}
.menu-hero {
  display: grid;
  gap: 1rem;
  padding: clamp(4rem, 9vw, 8rem) 0 clamp(2rem, 5vw, 4rem);
}
.menu-hero h1 {
  font-size: clamp(5rem, 13vw, 11rem);
}
.menu-hero p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}
.menu-page-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.menu-section {
  padding-block: clamp(3rem, 7vw, 6rem);
}
.paper-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.paper-heading h2 {
  grid-column: 1;
}
.paper-heading .btn {
  grid-column: 2;
  grid-row: 1 / span 2;
}
.menu-paper {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(89,102,63,.22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(89,102,63,.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(89,102,63,.045) 1px, transparent 1px),
    #fffaf3;
  background-size: 26px 26px;
  box-shadow: 0 28px 80px rgba(89,102,63,.16);
}
.menu-paper::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 12%, rgba(215,168,95,.12), transparent 22rem),
    linear-gradient(90deg, rgba(255,255,255,.4), transparent 24%, rgba(89,102,63,.05));
}
.image-paper {
  padding: clamp(.55rem, 1.5vw, 1.2rem);
}
.image-paper img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 4px;
  border: 1px solid rgba(89,102,63,.16);
}
.menu-image-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: zoom-in;
}
.menu-image-link img {
  transition: transform .2s ease, filter .2s ease;
}
.menu-image-link:hover img {
  transform: scale(1.01);
  filter: brightness(1.02);
}
.menu-zoom-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  background: rgba(31, 36, 31, .86);
}
.menu-zoom-overlay.is-open {
  display: block;
}
.menu-zoom-viewport {
  width: 100vw;
  height: 100svh;
  overflow: auto;
  padding: 5rem 1.25rem 2rem;
  overscroll-behavior: contain;
}
.menu-zoom-image {
  width: min(1400px, 96vw);
  max-width: none;
  height: auto;
  margin: 0 auto;
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0,0,0,.34);
}
.menu-zoom-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  min-height: 44px;
  border-color: rgba(251,247,239,.75);
  background: var(--paper);
  color: var(--ink);
}
.menu-zoom-close:hover {
  background: #fff;
  color: var(--ink);
}
body.menu-zoom-open {
  overflow: hidden;
}
.menu-book {
  padding: clamp(1.2rem, 4vw, 3rem);
}
.menu-book > * {
  position: relative;
  z-index: 1;
}
.menu-cover {
  min-height: 210px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  border-bottom: 1px solid rgba(89,102,63,.18);
  margin-bottom: 2rem;
}
.menu-cover h2 {
  font-size: clamp(5rem, 12vw, 10rem);
}
.menu-columns {
  column-count: 2;
  column-gap: clamp(2rem, 5vw, 4rem);
}
.menu-category {
  break-inside: avoid;
  margin-bottom: 2rem;
}
.menu-category h3 {
  margin-bottom: .8rem;
  color: var(--pine);
  font-size: clamp(2rem, 4vw, 3rem);
}
.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(89,102,63,.14);
}
.menu-item span,
.menu-note,
.allergen-note p {
  color: var(--muted);
}
.menu-item em {
  display: block;
  margin-top: .12rem;
  font-style: normal;
  font-size: .9rem;
  color: rgba(103,100,93,.82);
}
.menu-item strong {
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
}
.menu-note {
  margin: .8rem 0 0;
  font-size: .92rem;
}
.allergen-note {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(89,102,63,.18);
}
.allergen-note h3 {
  font-size: 1.35rem;
  color: var(--pine);
}

.experience-main {
  padding-top: 5.8rem;
}
.experience-hero,
.experience-page-section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}
.experience-hero {
  display: grid;
  gap: 1rem;
  padding: clamp(4rem, 9vw, 8rem) 0 clamp(2rem, 5vw, 4rem);
}
.experience-hero h1 {
  font-size: clamp(4.8rem, 11vw, 10rem);
}
.experience-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}
.experience-page-section {
  padding-block: clamp(3rem, 7vw, 6rem);
}
.experience-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.experience-detail-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf3;
  box-shadow: 0 18px 60px rgba(89,102,63,.1);
}
.experience-detail-card.wide {
  grid-column: 1 / -1;
}
.experience-detail-card img {
  width: 100%;
  height: clamp(280px, 34vw, 460px);
  object-fit: cover;
}
.experience-detail-card:not(.wide) img {
  height: clamp(260px, 28vw, 380px);
}
.experience-detail-card > div {
  padding: clamp(1.2rem, 3vw, 2rem);
}
.experience-detail-card h2,
.services-directory h2 {
  margin: .35rem 0 .8rem;
}
.experience-detail-card p,
.service-directory-grid p {
  margin: 0;
  color: var(--muted);
}
.experience-detail-card p + p,
.service-directory-grid p + p {
  margin-top: .65rem;
}
.service-price {
  font-weight: 700;
  color: var(--pine) !important;
}
.services-directory {
  border-top: 1px solid var(--line);
}
.service-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.service-directory-grid article {
  min-height: 230px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.1rem, 2vw, 1.5rem);
  background: #fffaf3;
}
.service-directory-icon {
  width: 2.45rem;
  height: 2.45rem;
  margin-bottom: 1.4rem;
  color: var(--pine);
}
.service-directory-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-directory-grid h3 {
  margin: 0 0 .55rem;
  min-height: 2.7em;
  display: flex;
  align-items: flex-start;
}

.reveal {
  opacity: 1;
  transform: none;
}
.js-enabled .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.js-enabled .reveal.is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }
  .brand { justify-self: start; }
  .brand img { width: 88px; }
  .site-header nav { justify-self: start; }
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: 74px 1rem auto 1rem;
    display: none;
    background: rgba(251, 247, 239, .98);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { text-shadow: none; }
  .hero-content,
  .split,
  .location-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-meta { max-width: 100%; }
  .booking-panel { grid-template-columns: repeat(2, 1fr); }
  .booking-panel .btn { min-height: 56px; grid-column: span 2; }
  .room-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child {
    min-height: 0;
  }
  .restaurant-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }
  .restaurant-grid figure,
  .restaurant-grid figure:first-child {
    grid-column: auto;
    grid-row: auto;
    min-height: 360px;
  }
  .experience-tile,
  .experience-tile.wide { grid-column: span 12; }
  .service-card { grid-column: span 6; }
  .contact-panel {
    justify-self: start;
    padding-top: 0;
  }
  .paper-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .paper-heading .btn {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
  }
  .menu-columns {
    column-count: 1;
  }
  .experience-page-grid,
  .service-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header { padding-inline: 1rem; }
  .header-actions { gap: .4rem; }
  .header-actions .btn { padding-inline: .85rem; font-size: .68rem; }
  .language-toggle a {
    width: 30px;
    height: 26px;
    font-size: .64rem;
  }
  .brand img { width: 72px; }
  .hero { min-height: 88svh; }
  .hero-content { padding-top: 7rem; }
  .hero-meta { display: none; }
  .booking-panel,
  .booking-panel .btn,
  .stat-row,
  .badge-grid {
    grid-template-columns: 1fr;
  }
  .booking-panel .btn { grid-column: auto; }
  .media-stack,
  .rooms-header {
    display: grid;
    grid-template-columns: 1fr;
  }
  .restaurant-grid { grid-template-columns: 1fr; }
  .service-card { grid-column: span 12; }
  .restaurant-grid figure,
  .restaurant-grid figure:first-child { min-height: 280px; }
  .room-card img {
    object-position: center bottom;
  }
  .room-card-content {
    background: #fffaf3;
    color: var(--ink);
    box-shadow: 0 -1px 0 var(--line);
  }
  .instagram-carousel-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .instagram-track { grid-auto-columns: minmax(240px, 86vw); }
  .cookie-banner { grid-template-columns: 1fr; }
  .cookie-actions { justify-content: flex-start; }
  .cookie-consent-pending .whatsapp-float,
  body.has-cookie-banner .whatsapp-float { bottom: 10.5rem; }
  main > section.contact {
    padding-bottom: 2.25rem;
  }
  footer {
    padding-top: 1.4rem;
  }
  .footer-grid {
    gap: 1.25rem;
  }
  .footer-logo {
    width: 88px;
  }
  .menu-main {
    padding-top: 5.8rem;
  }
  .experience-main {
    padding-top: 5.8rem;
  }
  .menu-hero h1 {
    font-size: clamp(4.2rem, 26vw, 7rem);
  }
  .experience-hero h1 {
    font-size: clamp(3.15rem, 14vw, 4.8rem);
  }
  .experience-page-grid,
  .service-directory-grid {
    grid-template-columns: 1fr;
  }
  .experience-detail-card img,
  .experience-detail-card:not(.wide) img {
    height: 280px;
  }
  .menu-cover {
    min-height: 150px;
  }
  .menu-cover h2 {
    font-size: clamp(4rem, 24vw, 6rem);
  }
  .menu-item {
    grid-template-columns: 1fr;
    gap: .25rem;
  }
  .menu-item strong {
    white-space: normal;
  }
  #mezza-pensione {
    width: min(100% - .5rem, 1180px);
  }
  #mezza-pensione .image-paper {
    padding: .35rem;
    border-radius: 6px;
  }
  #mezza-pensione .menu-image-link {
    cursor: zoom-in;
  }
  .menu-zoom-viewport {
    padding: 4.5rem .75rem 1.5rem;
  }
  .menu-zoom-image {
    width: 230vw;
    margin-inline: 0;
  }
}
