:root {
  --terracotta: #C25E3A;
  --terracotta-2: #A04527;
  --cobalt: #1E456C;
  --cobalt-2: #143352;
  --sand: #F2EAD9;
  --sand-2: #E8DDC4;
  --olive: #6B7F5F;
  --cream: #FBF7EE;
  --ink: #2A1F19;
  --ink-80: rgba(34,30,26,0.82);
  --ink-60: rgba(34,30,26,0.58);
  --ink-40: rgba(34,30,26,0.38);
  --ink-20: rgba(34,30,26,0.18);
  --gold: #D9A648;
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Manrope', system-ui, sans-serif;
  --font-hand: 'Caveat', cursive;
  --gutter: clamp(20px, 4vw, 56px);
  --read: 720px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { margin:0!important; padding:0!important; max-width:100vw!important; width:100%!important; overflow-x:hidden!important; }
main { display: block; width: 100%; }
body > nav, body > main, body > main > section, body > main > header, body > footer, body > main > div.full-bleed {
  width: 100vw !important; max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
}
body { font-family: var(--font-sans); background: var(--sand); color: var(--ink); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; background: var(--sand-2); }
img.broken { background: linear-gradient(135deg, var(--sand-2) 0%, var(--sand) 100%); }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--terracotta); color: var(--cream); }
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.66 0 0 0 0 0.55 0 0 0 0 0.4 0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  z-index: 1; opacity: 0.6;
}
body > * { position: relative; z-index: 2; }
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 18px var(--gutter); display: flex; justify-content: space-between; align-items: center; transition: all 0.4s var(--ease); color: var(--cream); }
.nav.scrolled { background: rgba(252,249,242,0.94); backdrop-filter: blur(14px); color: var(--ink); padding: 12px var(--gutter); box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.nav-brand { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 22px; display: inline-flex; align-items: center; }
.nav-brand em { color: var(--gold); font-style: italic; }
.nav-brand img { height: 84px; width: auto; display: block; background: transparent; filter: brightness(0) invert(1); transition: filter 0.4s var(--ease), height 0.4s var(--ease); }
.nav.scrolled .nav-brand img { height: 66px; filter: none; }
@media (max-width: 900px) { .nav-brand img { height: 64px; } .nav.scrolled .nav-brand img { height: 56px; } }
.nav-menu { display: flex; gap: 30px; list-style: none; }
.nav-menu a { font-size: 13px; letter-spacing: 0.04em; font-weight: 500; }
.nav-cta { background: var(--terracotta); color: var(--cream); padding: 11px 22px; border-radius: 999px; font-size: 13px; font-weight: 600; }
.nav-cta:hover { background: var(--terracotta-2); }
.nav-burger { display: none; }
@media (max-width: 900px) {
  .nav-menu li:not(.nav-lang) { display: none; }
  .nav-menu { gap: 0; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
  .nav-burger span { width: 22px; height: 2px; background: currentColor; transition: transform 0.4s ease, opacity 0.3s ease; }
}
.lang-switch { position: relative; display: inline-flex; }
.lang-btn { display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: 999px; font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; color: inherit; border: 1.5px solid currentColor; background: transparent; cursor: pointer; transition: background 0.3s, color 0.3s, border-color 0.3s; }
.nav.scrolled .lang-btn { border-color: rgba(34,30,26,0.3); }
.lang-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.lang-cur { font-weight: 700; }
.lang-arr { font-size: 8px; transition: transform 0.3s; opacity: 0.7; }
.lang-switch.open .lang-arr { transform: rotate(180deg); }
.lang-dropdown { position: absolute; top: calc(100% + 10px); right: 0; background: var(--cream); border-radius: 10px; padding: 6px; min-width: 170px; box-shadow: 0 14px 36px -10px rgba(34,30,26,0.25); display: flex; flex-direction: column; gap: 2px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity 0.25s, transform 0.25s, visibility 0.25s; z-index: 200; border: 1px solid rgba(34,30,26,0.06); }
.lang-switch.open .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dropdown button { text-align: left; padding: 10px 14px; border-radius: 6px; font-family: var(--font-sans); font-size: 13px; font-weight: 500; color: var(--ink); background: transparent; border: 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.2s, color 0.2s; }
.lang-dropdown button .code { font-size: 10px; letter-spacing: 0.2em; opacity: 0.5; }
.lang-dropdown button:hover { background: var(--sand); color: var(--terracotta); }
.lang-dropdown button.active { background: var(--terracotta); color: var(--cream); }
.lang-dropdown button.active .code { opacity: 0.85; }
@media (max-width: 900px) { .lang-btn { padding: 6px 10px; font-size: 10px; } }
.skiptranslate { display: none !important; }
body { top: 0 !important; }
.goog-te-banner-frame, .goog-te-balloon-frame, .goog-tooltip, .goog-tooltip:hover, .goog-text-highlight { display: none !important; background: transparent !important; box-shadow: none !important; }
#goog-gt-tt, .goog-te-balloon-frame { display: none !important; }
.goog-te-gadget { font-size: 0 !important; height: 0 !important; overflow: hidden !important; }
font[style*="background-color"] { background: transparent !important; }
font.goog-text-highlight { background: transparent !important; box-shadow: none !important; }
.nav-drawer { position: fixed; inset: 0; z-index: 999; background: var(--sand); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; opacity: 0; visibility: hidden; transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease); padding: 90px 24px 60px; overflow-y: auto; }
.nav-drawer::before { content: ""; position: absolute; inset: 14px; border: 1.5px dashed rgba(34,30,26,0.18); pointer-events: none; }
.nav-drawer .drawer-eyebrow { font-family: var(--font-hand); font-size: 28px; color: var(--terracotta); transform: rotate(-3deg); margin-bottom: 8px; opacity: 0; transition: opacity 0.5s var(--ease) 0.1s; }
.nav-drawer.open { opacity: 1; visibility: visible; }
.nav-drawer.open .drawer-eyebrow { opacity: 1; }
.nav-drawer a { color: var(--ink); font-family: var(--font-display); font-style: italic; font-size: clamp(2rem, 8vw, 2.8rem); font-weight: 400; line-height: 1; opacity: 0; transform: translateY(12px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease), color 0.3s; position: relative; padding-bottom: 6px; }
.nav-drawer a:not(.drawer-cta)::after { content: ""; position: absolute; left: 50%; bottom: 0; width: 0; height: 2px; background: var(--gold); transform: translateX(-50%); transition: width 0.4s var(--ease); }
.nav-drawer a:not(.drawer-cta):hover { color: var(--terracotta); }
.nav-drawer a:not(.drawer-cta):hover::after { width: 60%; }
.nav-drawer.open a { opacity: 1; transform: translateY(0); }
.nav-drawer.open a:nth-child(2) { transition-delay: 0.12s; }
.nav-drawer.open a:nth-child(3) { transition-delay: 0.18s; }
.nav-drawer.open a:nth-child(4) { transition-delay: 0.24s; }
.nav-drawer.open a:nth-child(5) { transition-delay: 0.30s; }
.nav-drawer.open a:nth-child(6) { transition-delay: 0.36s; }
.nav-drawer .drawer-cta { margin-top: 24px; padding: 16px 36px; background: var(--gold); color: var(--ink); border-radius: 0; font-family: var(--font-sans); font-style: normal; font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; box-shadow: 6px 6px 0 var(--ink); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.nav-drawer .drawer-cta:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.nav-drawer-close { position: absolute; top: 22px; right: 22px; width: 44px; height: 44px; border: 1.5px solid var(--ink); border-radius: 50%; color: var(--ink); font-size: 26px; line-height: 1; display: flex; align-items: center; justify-content: center; background: var(--cream); cursor: pointer; transition: background 0.3s, transform 0.3s; }
.nav-drawer-close:hover { background: var(--terracotta); color: var(--cream); border-color: var(--terracotta); transform: rotate(90deg); }
body.menu-open { overflow: hidden; }
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hero { position: relative; height: 100vh; height: 100dvh; min-height: 600px; overflow: hidden; color: var(--cream); display: flex; align-items: center; }
@media (max-height: 700px) { .hero h1 { font-size: clamp(2.4rem, 6vw, 5rem) !important; } .hero .subtitle { margin-bottom: 28px; } }
.hero-bg { position: absolute; inset: 0; background: #111; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.52) 50%, rgba(0,0,0,0.68) 100%); }
.hero-wave { position: absolute; bottom: -2px; left: 0; right: 0; z-index: 2; width: 100%; height: 80px; }
.hero-content { position: relative; z-index: 3; padding: 0 var(--gutter); width: 100%; max-width: 1440px; margin: 0 auto; }
.hero-pill { display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px; background: rgba(252,249,242,0.15); backdrop-filter: blur(10px); border: 1px solid rgba(252,249,242,0.3); border-radius: 999px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; margin-bottom: 32px; }
.hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: 0.5; transform: scale(1.3);} }
.hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.6rem, 7vw, 6rem); line-height: 1.16; letter-spacing: -0.01em; max-width: 18ch; margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--cream); background: var(--terracotta); padding: 0 0.2em 0.06em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.hero .subtitle { font-family: var(--font-display); font-weight: 300; font-style: italic; font-size: clamp(1.15rem, 1.7vw, 1.5rem); max-width: 38ch; margin-bottom: 36px; opacity: 0.95; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { background: var(--terracotta); color: var(--cream); padding: 17px 30px; border-radius: 999px; font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 12px; transition: all 0.3s var(--ease); box-shadow: 0 12px 40px -8px rgba(42,90,56,0.5); }
.btn-primary:hover { background: var(--terracotta-2); transform: translateY(-3px); }
.btn-ghost-light { background: transparent; color: var(--cream); padding: 17px 30px; border-radius: 999px; border: 1.5px solid rgba(252,249,242,0.5); font-weight: 600; font-size: 14px; transition: all 0.3s var(--ease); }
.btn-ghost-light:hover { background: var(--cream); color: var(--ink); }
/* ==========================================================
   STRUCT A: VERTICAL STORYTELLING
   - Single column reading-width
   - Full-bleed photo breaks
   - Polaroid stack
   - Postcards layout for dintorni
   ========================================================== */

/* CHAPTER (single col centered) */
.chapter { padding: clamp(80px, 12vw, 140px) var(--gutter); }
.chapter-inner { max-width: var(--read); margin: 0 auto; }
#villa { padding-bottom: 0; }
#villa .chapter-quote { margin-bottom: 24px; }
.chapter-cluster { padding-top: clamp(8px, 2vw, 20px); padding-bottom: clamp(56px, 9vw, 100px); }
.chapter-num {
  font-family: var(--font-hand);
  color: var(--terracotta);
  font-size: 36px;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  transform: rotate(-3deg);
}
.chapter-tag { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-60); font-weight: 600; margin-bottom: 28px; display: inline-block; padding-bottom: 6px; border-bottom: 2px solid var(--terracotta); }
.chapter-h {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 40px;
}
.chapter-h em { font-style: italic; color: var(--terracotta); }
.chapter-body p { font-size: 17px; line-height: 1.8; color: var(--ink-80); margin-bottom: 22px; }
.chapter-body p:first-letter:not(.no-cap) {
  /* Optional drop cap could go here */
}
.chapter-body .first-p::first-letter {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 400;
  float: left;
  line-height: 0.85;
  margin: 6px 14px 0 0;
  color: var(--terracotta);
}
.chapter-quote {
  margin: 56px 0;
  padding: 32px 40px;
  border-left: 4px solid var(--terracotta);
  background: rgba(42,90,56,0.06);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.5;
}
.chapter-quote cite { display: block; margin-top: 16px; font-size: 13px; font-style: normal; color: var(--ink-60); letter-spacing: 0.16em; text-transform: uppercase; font-family: var(--font-sans); font-weight: 600; }
.full-bleed {
  height: 70vh; min-height: 480px;
  position: relative; overflow: hidden;
  margin: 0;
}
.full-bleed img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); }
.full-bleed.with-quote::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.55) 100%); }
.fb-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 var(--gutter); color: var(--cream);
}
.fb-overlay blockquote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 3rem); line-height: 1.3;
  max-width: 26ch;
}
.fb-overlay cite { display: block; margin-top: 24px; font-size: 12px; font-style: normal; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.8; font-family: var(--font-sans); }
@media (max-width: 700px) { .full-bleed { height: 50vh; min-height: 360px; } }
.numbers-flex {
  background: var(--cream);
  padding: 60px var(--gutter);
  border-top: 1px dashed var(--ink-20);
  border-bottom: 1px dashed var(--ink-20);
}
.numbers-flex-inner {
  max-width: var(--read); margin: 0 auto;
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.nf { text-align: center; }
.nf .v { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 500; line-height: 1; color: var(--terracotta); }
.nf .v em { font-style: italic; color: var(--gold); font-size: 0.55em; vertical-align: super; }
.nf .l { font-family: var(--font-hand); font-size: 18px; color: var(--ink-60); margin-top: 4px; transform: rotate(-2deg); display: inline-block; }
.photo-cluster {
  margin: 56px 0;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  height: 360px;
}
.photo-cluster .pc-main, .photo-cluster .pc-side { overflow: hidden; border-radius: 4px; }
.photo-cluster .pc-side { display: flex; flex-direction: column; gap: 16px; }
.photo-cluster .pc-side > div { flex: 1; overflow: hidden; }
.photo-cluster img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); cursor: pointer; }
.photo-cluster img:hover { transform: scale(1.04); }
@media (max-width: 700px) { .photo-cluster { grid-template-columns: 1fr; height: auto; } .photo-cluster .pc-main { height: 240px; } .photo-cluster .pc-side { flex-direction: row; } .photo-cluster .pc-side > div { height: 160px; } }
.inline-list {
  list-style: none;
  margin: 32px 0;
}
.inline-list li {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink-80);
  padding: 12px 0;
  border-bottom: 1px dotted var(--ink-20);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: baseline;
}
.inline-list .num-il { font-style: italic; color: var(--terracotta); font-size: 18px; }
.inline-list em { color: var(--terracotta); font-style: italic; }
.polaroid-section {
  background: var(--cream);
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.polaroid-section .chapter-inner { max-width: 1200px; }
.polaroid-section .chapter-h { text-align: center; }
.polaroid-section .chapter-tag { display: block; text-align: center; margin: 0 auto 28px; width: fit-content; }
.polaroid-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1100px; margin-left: auto; margin-right: auto;
}
.polaroid {
  background: var(--cream);
  padding: 12px 12px 60px;
  box-shadow: 0 8px 30px -10px rgba(0,0,0,0.18);
  cursor: pointer;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  position: relative;
}
.polaroid:nth-child(odd) { transform: rotate(-2deg); }
.polaroid:nth-child(even) { transform: rotate(2deg); }
.polaroid:nth-child(3n) { transform: rotate(-3deg); }
.polaroid:hover { transform: rotate(0deg) translateY(-8px) scale(1.04); box-shadow: 0 24px 60px -10px rgba(0,0,0,0.3); z-index: 10; }
.polaroid img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.polaroid .pcap {
  position: absolute; bottom: 12px; left: 16px; right: 16px;
  font-family: var(--font-hand); font-size: 18px; color: var(--ink-80); text-align: center;
}
.polaroid-cta { text-align: center; margin-top: 60px; }
.polaroid-cta button { background: var(--cobalt); color: var(--cream); padding: 16px 32px; border-radius: 999px; font-weight: 600; font-size: 14px; transition: background 0.3s; }
.polaroid-cta button:hover { background: var(--cobalt-2); }
@media (max-width: 900px) { .polaroid-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .polaroid-grid { grid-template-columns: 1fr; max-width: 280px; } }
.rooms-section .chapter-inner { max-width: 1100px; }
.room-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 8px; }
.room-grid-single { display: flex; justify-content: center; margin-top: 8px; }
.room-grid-single .room-card { max-width: 620px; width: 100%; }
.room-group { margin-bottom: 72px; }
.room-group:last-child { margin-bottom: 0; }
.room-group-h { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: clamp(22px, 2.6vw, 30px); color: var(--terracotta); text-align: center; margin-bottom: 32px; padding-bottom: 14px; border-bottom: 1px dashed var(--ink-20); }
.room-card { background: var(--cream); box-shadow: 0 8px 30px -10px rgba(0,0,0,0.18); padding: 14px 14px 30px; position: relative; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.room-card:nth-child(odd) { transform: rotate(-1deg); }
.room-card:nth-child(even) { transform: rotate(1deg); }
.room-card:hover { transform: rotate(0deg) translateY(-6px); box-shadow: 0 20px 50px -10px rgba(0,0,0,0.26); z-index: 5; }
.room-card .rc-gallery { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr); gap: 6px; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 2px; margin-bottom: 22px; }
.room-card .rc-gallery img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: transform 0.6s var(--ease); }
.room-card .rc-gallery img:hover { transform: scale(1.04); }
.room-card .rc-body { padding: 0 10px; }
.room-card .rc-title { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 26px; color: var(--ink); margin-bottom: 12px; }
.room-card .rc-desc { font-size: 15px; line-height: 1.7; color: var(--ink-80); margin-bottom: 20px; }
.room-card .rc-amenities { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; padding: 0; }
.room-card .rc-amenities li { font-size: 11px; letter-spacing: 0.04em; font-weight: 600; color: var(--terracotta); background: rgba(42,90,56,0.08); border: 1px solid rgba(42,90,56,0.25); padding: 6px 12px; border-radius: 999px; }
.room-card .rc-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--terracotta); color: var(--cream); padding: 12px 26px; border-radius: 999px; font-weight: 600; font-size: 13px; transition: background 0.3s; }
.room-card .rc-cta:hover { background: var(--terracotta-2); }
@media (max-width: 900px) { .room-grid { grid-template-columns: 1fr; gap: 48px; } }
.postcards { background: var(--sand); padding: clamp(80px, 12vw, 140px) var(--gutter); }
.postcards .chapter-inner { max-width: 1200px; }
.postcards .chapter-h { text-align: center; max-width: 22ch; margin-left: auto; margin-right: auto; }
.postcards .chapter-tag { display: block; text-align: center; margin: 0 auto 28px; width: fit-content; }
.postcards-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 28px;
}
.postcard {
  background: var(--cream);
  padding: 14px;
  box-shadow: 0 6px 20px -8px rgba(0,0,0,0.15), 0 1px 3px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.5s var(--ease);
}
.postcard:nth-child(2n) { transform: rotate(1.5deg); }
.postcard:nth-child(3n) { transform: rotate(-1.5deg); }
.postcard:hover { transform: rotate(0deg) translateY(-6px) scale(1.02); z-index: 5; }
.postcard .pc-img { aspect-ratio: 4/3; overflow: hidden; }
.postcard .pc-img img { width:100%; height:100%; object-fit: cover; }
.postcard .pc-stamp {
  position: absolute; top: -8px; right: -6px;
  width: 60px; height: 70px;
  background: var(--terracotta); color: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-display); font-style: italic;
  transform: rotate(8deg);
  border: 3px dashed var(--cream);
  text-align: center;
  line-height: 1.1;
  padding: 4px;
}
.postcard .pc-stamp .min { font-size: 18px; font-weight: 500; }
.postcard .pc-stamp .lab { font-size: 9px; font-style: normal; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-sans); }
.postcard .pc-body { padding: 16px 8px 8px; }
.postcard .pc-body h3 { font-family: var(--font-display); font-weight: 500; font-size: 24px; line-height: 1.1; margin-bottom: 4px; color: var(--ink); }
.postcard .pc-body .desc { font-family: var(--font-hand); font-size: 18px; color: var(--ink-60); }
@media (max-width: 900px) { .postcards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .postcards-grid { grid-template-columns: 1fr; gap: 56px 0; } }
.letters { background: var(--cream); padding: clamp(80px, 12vw, 140px) var(--gutter); }
.letters .chapter-inner { max-width: 1100px; }
.letters .chapter-h { text-align: center; }
.letters .chapter-tag { display: block; text-align: center; margin: 0 auto 28px; width: fit-content; }
.letters-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.letter {
  background: var(--sand);
  padding: 36px 32px;
  border: 1px solid var(--ink-20);
  position: relative;
}
.letter::before { content: ""; position: absolute; top: 12px; right: 16px; width: 32px; height: 4px; background: var(--terracotta); transform: rotate(-15deg); }
.letter .stars { color: var(--gold); font-size: 16px; margin-bottom: 12px; letter-spacing: 0.2em; }
.letter p { font-family: var(--font-display); font-style: italic; font-size: 19px; line-height: 1.5; color: var(--ink); margin-bottom: 24px; }
.letter .sign { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px dashed var(--ink-20); }
.letter .name { font-family: var(--font-hand); font-size: 24px; color: var(--terracotta); }
.letter .date { font-size: 11px; color: var(--ink-60); letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; }
@media (max-width: 700px) { .letters-grid { grid-template-columns: 1fr; } }
.faqs { background: var(--sand); padding: clamp(80px, 12vw, 140px) var(--gutter); }
.faqs .chapter-inner { max-width: 760px; }
.faqs .chapter-h { text-align: center; }
.faqs .chapter-tag { display: block; text-align: center; margin: 0 auto 28px; width: fit-content; }
.faq-stack { margin-top: 56px; display: flex; flex-direction: column; gap: 28px; }
.faq-block { padding: 24px 0; border-bottom: 1px dotted var(--ink-20); }
.faq-block h4 { font-family: var(--font-display); font-size: 24px; font-weight: 500; margin-bottom: 12px; color: var(--ink); }
.faq-block p { font-size: 16px; line-height: 1.7; color: var(--ink-80); }
.booking-section { background: var(--cobalt); color: var(--cream); padding: clamp(80px, 12vw, 140px) var(--gutter); }
.booking-section .chapter-inner { max-width: 980px; }
.booking-section .chapter-tag { color: var(--gold); border-color: var(--gold); display: block; text-align: center; margin: 0 auto 28px; width: fit-content; }
.booking-section .chapter-h { text-align: center; color: var(--cream); }
.booking-section .chapter-h em { color: var(--gold); }
.voucher {
  margin-top: 56px;
  background: var(--cream); color: var(--ink);
  border-radius: 4px;
  display: grid; grid-template-columns: 1fr 1.4fr;
  position: relative;
  box-shadow: 0 30px 80px -10px rgba(0,0,0,0.3);
  overflow: hidden;
}
.voucher::before {
  content: ""; position: absolute; top: 0; bottom: 0;
  left: calc(100% / 2.4 + 0px);
  width: 2px;
  background-image: radial-gradient(circle, var(--ink-20) 30%, transparent 30%);
  background-size: 2px 12px;
  background-repeat: repeat-y;
}
.voucher-side { padding: 40px; background: var(--terracotta); color: var(--cream); display: flex; flex-direction: column; justify-content: space-between; }
.voucher-side .vs-tag { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; opacity: 0.8; }
.voucher-side .vs-title { font-family: var(--font-display); font-size: 32px; font-style: italic; margin-top: 8px; line-height: 1.1; }
.voucher-side .vs-bottom > div { margin-bottom: 12px; }
.voucher-side .vs-bottom small { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.7; }
.voucher-side .vs-bottom span, .voucher-side .vs-bottom a { display: block; font-family: var(--font-display); font-size: 17px; font-style: italic; }
.voucher-side .vs-btn { display: flex; align-items: center; justify-content: center; gap: 10px; border: 1.5px solid rgba(252,249,242,0.55); border-radius: 999px; padding: 13px 18px; font-family: var(--font-sans) !important; font-style: normal !important; font-size: 13px !important; font-weight: 600; color: var(--cream); margin-bottom: 12px; transition: background 0.3s, color 0.3s; text-align: center; }
.voucher-side .vs-btn svg { flex-shrink: 0; }
.voucher-side .vs-btn:hover { background: var(--cream); color: var(--terracotta-2); }
.voucher-side .vs-btn .btn-stack { display: flex; flex-direction: column; align-items: center; line-height: 1.35; }
.voucher-side .vs-btn .btn-stack small { font-size: 11px; font-weight: 500; letter-spacing: 0.02em; text-transform: none; opacity: 0.85; }
.booking-intro { text-align: center; font-family: var(--font-display); font-style: italic; font-size: clamp(17px, 2vw, 20px); color: rgba(252,249,242,0.92); max-width: 52ch; margin: 0 auto; }
.form-note { font-size: 13px; line-height: 1.55; color: var(--ink-60); margin: -14px 0 20px; }
.voucher-form { padding: 40px; }
.voucher-form h3 { font-family: var(--font-display); font-size: 26px; margin-bottom: 24px; font-style: italic; color: var(--cobalt); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 6px; }
.field input, .field select { width: 100%; padding: 12px 14px; background: var(--sand); border: 1px solid transparent; border-radius: 6px; font-size: 15px; color: var(--ink); outline: none; transition: all 0.3s; }
.field input:focus, .field select:focus { background: var(--cream); border-color: var(--terracotta); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-row3 { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 14px; }
.qty { display: flex; align-items: center; gap: 6px; padding: 4px; background: var(--sand); border-radius: 6px; }
.qty button { width: 30px; height: 30px; border-radius: 50%; background: var(--terracotta); color: var(--cream); font-size: 16px; font-weight: 600; }
.qty input { flex: 1; text-align: center; background: transparent; border: 0; font-weight: 600; outline: none; padding: 4px 0; }
.btn-submit { width: 100%; background: var(--cobalt); color: var(--cream); padding: 16px; border-radius: 999px; font-weight: 700; font-size: 14px; letter-spacing: 0.06em; margin-top: 8px; transition: background 0.3s; }
.btn-submit:hover { background: var(--cobalt-2); }
.disclaimer { text-align: center; margin-top: 12px; font-size: 11px; color: var(--ink-60); }
@media (max-width: 800px) { .voucher { grid-template-columns: 1fr; } .voucher::before { display: none; } }
@media (max-width: 500px) { .field-row, .field-row3 { grid-template-columns: 1fr; } }
.map-section { padding: 0; background: var(--sand); }
.map-section iframe { width: 100%; height: 460px; border: 0; display: block; filter: sepia(20%) saturate(0.9); }
footer { background: var(--ink); color: var(--sand); padding: 64px var(--gutter) 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; }
.footer-brand h4 { font-family: var(--font-display); font-style: italic; font-size: 32px; font-weight: 400; color: var(--gold); margin-bottom: 12px; }
.footer-brand .footer-logo { height: 130px; width: auto; background: transparent; margin-bottom: 16px; }
.footer-brand p { color: rgba(242,236,222,0.7); font-size: 14px; max-width: 36ch; }
.footer-col h5 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 600; }
.footer-col a, .footer-col p { display: block; color: rgba(242,236,222,0.75); font-size: 14px; margin-bottom: 8px; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(242,236,222,0.15); margin-top: 48px; padding-top: 20px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: rgba(242,236,222,0.5); }
.footer-bottom a { color: var(--gold); }
@media (max-width: 700px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } }
.lb { position: fixed; inset: 0; z-index: 9990; background: rgba(38,51,58,0.96); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.4s; }
.lb.open { opacity: 1; visibility: visible; }
.lb-img { max-width: 90vw; max-height: 85vh; }
.lb-close, .lb-arrow { position: absolute; width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid rgba(252,249,242,0.4); display: flex; align-items: center; justify-content: center; color: var(--cream); transition: background 0.3s; }
.lb-close { top: 24px; right: 24px; }
.lb-close::before, .lb-close::after { content:""; position:absolute; width: 18px; height: 1.5px; background: currentColor; }
.lb-close::before { transform: rotate(45deg); }
.lb-close::after { transform: rotate(-45deg); }
.lb-arrow.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-arrow.next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-arrow:hover { background: var(--terracotta); border-color: var(--terracotta); }
.lb-counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); font-family: var(--font-hand); font-size: 22px; color: var(--gold); }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity:1!important; transform:none!important; } }
.flatpickr-calendar { background: var(--cream)!important; border-radius: 4px!important; box-shadow: 0 20px 50px -10px rgba(0,0,0,0.2)!important; font-family: var(--font-sans)!important; border: 1px solid var(--ink-20)!important; }
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange { background: var(--terracotta)!important; border-color: var(--terracotta)!important; }
.flatpickr-day:hover { background: rgba(42,90,56,0.18)!important; }
.flatpickr-day.today { border-color: var(--terracotta)!important; }
.flatpickr-current-month { font-family: var(--font-display)!important; font-style: italic!important; }
/* =========================================================
   LEGAL · POLICY MODAL · COOKIE BANNER (Villa Ruffi Mykonos)
========================================================= */
.map-container { position: relative; width: 100%; height: 460px; }
.map-container iframe { width: 100%; height: 100%; border: 0; display: block; filter: sepia(20%) saturate(0.9); }
.map-blocked { position: absolute; inset: 0; background: var(--sand-2); display: flex; align-items: center; justify-content: center; color: var(--ink-80); padding: 32px 24px; }
.map-blocked-inner { text-align: center; max-width: 440px; }
.map-blocked svg { margin-bottom: 14px; color: var(--terracotta); opacity: .8; }
.map-blocked h4 { font-family: var(--font-display); font-weight: 500; font-style: italic; font-size: clamp(1.3rem, 2.5vw, 1.6rem); color: var(--ink); margin-bottom: 8px; letter-spacing: -0.01em; }
.map-blocked p { font-size: 14px; line-height: 1.6; color: var(--ink-60); margin-bottom: 20px; }
.btn-consent-map { background: var(--terracotta); color: var(--cream); padding: 13px 26px; border-radius: 999px; border: 0; font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; cursor: pointer; transition: background 0.3s, transform 0.3s; }
.btn-consent-map:hover { background: var(--terracotta-2); transform: translateY(-1px); }
.map-policy-link { display: inline-block; margin-top: 14px; font-size: 12px; color: var(--ink-60); text-decoration: none; border-bottom: 1px solid var(--ink-20); padding-bottom: 2px; font-family: var(--font-display); font-style: italic; font-size: 14px; }
.map-policy-link:hover { color: var(--terracotta); border-bottom-color: var(--terracotta); }
.footer-legal { display: flex; justify-content: center; align-items: center; gap: 22px; flex-wrap: wrap; padding: 18px var(--gutter) 0; font-size: 12px; color: rgba(242,236,222,0.6); border-top: 1px solid rgba(242,236,222,0.12); font-family: var(--font-display); font-style: italic; font-size: 14px; }
.footer-legal a { color: rgba(242,236,222,0.7); text-decoration: none; padding-bottom: 2px; border-bottom: 1px solid transparent; transition: color 0.3s, border-color 0.3s; }
.footer-legal a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.footer-legal .sep { width: 3px; height: 3px; background: rgba(242,236,222,0.3); border-radius: 50%; }
@media (max-width: 600px) { .footer-legal { gap: 12px; font-size: 13px; } .footer-legal .sep { display: none; } }
.cookie-banner { position: fixed; left: clamp(16px, 3vw, 32px); right: clamp(16px, 3vw, 32px); bottom: clamp(16px, 3vw, 32px); z-index: 150; background: var(--ink); color: var(--cream); border-radius: 4px; box-shadow: 0 30px 80px rgba(34,30,26,0.45); padding: clamp(20px, 2.5vw, 26px) clamp(22px, 3vw, 32px); display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; transform: translateY(24px); opacity: 0; pointer-events: none; transition: transform .5s var(--ease), opacity .4s var(--ease); max-width: 1080px; margin: 0 auto; border: 1px solid rgba(200,148,56,0.25); }
.cookie-banner.visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cookie-banner-text { font-size: 13.5px; line-height: 1.6; color: rgba(252,249,242,0.85); }
.cookie-banner-text h5 { font-family: var(--font-display); font-weight: 500; font-style: italic; font-size: 20px; color: var(--cream); margin-bottom: 6px; letter-spacing: -0.01em; }
.cookie-banner-text a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner-text a:hover { color: var(--cream); }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; align-items: center; }
.cookie-btn { font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 12px 20px; border-radius: 999px; cursor: pointer; transition: all .25s ease; border: 1px solid transparent; white-space: nowrap; }
.cookie-btn.ghost { background: transparent; color: rgba(252,249,242,0.8); border-color: rgba(252,249,242,0.22); }
.cookie-btn.ghost:hover { color: var(--ink); border-color: var(--cream); background: var(--cream); }
.cookie-btn.primary { background: var(--terracotta); color: var(--cream); border-color: var(--terracotta); }
.cookie-btn.primary:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.cookie-btn.link { background: transparent; color: rgba(252,249,242,0.6); border: 0; padding: 12px 10px; text-decoration: underline; text-underline-offset: 4px; }
.cookie-btn.link:hover { color: var(--cream); }
@media (max-width: 820px) { .cookie-banner { grid-template-columns: 1fr; gap: 16px; padding: 20px 20px 18px; } .cookie-banner-actions { justify-content: flex-start; } .cookie-btn { flex: 1 1 calc(50% - 5px); text-align: center; padding: 12px 10px; } .cookie-btn.link { flex-basis: 100%; } }
.legal-overlay { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: clamp(16px, 3vw, 48px); background: rgba(34,30,26,0.78); backdrop-filter: saturate(1.1) blur(6px); -webkit-backdrop-filter: saturate(1.1) blur(6px); opacity: 0; transition: opacity .35s var(--ease); }
.legal-overlay.open { display: flex; opacity: 1; }
.legal-card { background: var(--cream); color: var(--ink); width: 100%; max-width: 860px; max-height: 92vh; border-radius: 4px; box-shadow: 0 40px 100px rgba(34,30,26,0.5); display: flex; flex-direction: column; overflow: hidden; transform: translateY(16px) scale(0.98); transition: transform .45s var(--ease); border: 1px solid var(--sand-2); }
.legal-overlay.open .legal-card { transform: translateY(0) scale(1); }
.legal-head { padding: 30px clamp(24px, 4vw, 44px) 22px; border-bottom: 1px solid rgba(34,30,26,0.1); display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; background: var(--cream); position: sticky; top: 0; z-index: 2; }
.legal-head .kicker { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--terracotta-2); font-weight: 600; display: block; margin-bottom: 8px; }
.legal-head h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.8rem, 3.6vw, 2.4rem); line-height: 1.1; color: var(--ink); letter-spacing: -0.01em; }
.legal-head h3 em { font-style: italic; color: var(--terracotta); font-weight: 400; }
.legal-head .updated { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-40); margin-top: 8px; }
.legal-close { position: relative; flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--ink-20); background: transparent; cursor: pointer; color: var(--ink); transition: background .25s ease, border-color .25s ease, transform .25s ease; }
.legal-close:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); transform: rotate(90deg); }
.legal-close::before, .legal-close::after { content: ''; position: absolute; left: 50%; top: 50%; width: 14px; height: 1px; background: currentColor; }
.legal-close::before { transform: translate(-50%,-50%) rotate(45deg); }
.legal-close::after { transform: translate(-50%,-50%) rotate(-45deg); }
.legal-body { padding: 24px clamp(24px, 4vw, 44px) clamp(32px, 5vw, 48px); overflow-y: auto; flex: 1; font-size: 14.5px; line-height: 1.75; color: var(--ink-80); overscroll-behavior: contain; }
.legal-body::-webkit-scrollbar { width: 8px; }
.legal-body::-webkit-scrollbar-thumb { background: var(--ink-20); border-radius: 4px; }
.legal-body .lead { font-size: 15.5px; font-family: var(--font-display); font-style: italic; color: var(--ink-80); margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid rgba(34,30,26,0.1); }
.legal-body h4 { font-family: var(--font-display); font-weight: 500; font-size: 1.35rem; color: var(--ink); margin-top: 34px; margin-bottom: 12px; letter-spacing: -0.01em; scroll-margin-top: 120px; }
.legal-body h4:first-of-type { margin-top: 0; }
.legal-body h5 { font-family: var(--font-sans); font-weight: 700; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); margin-top: 22px; margin-bottom: 10px; }
.legal-body p { margin-bottom: 12px; }
.legal-body p strong, .legal-body li strong { color: var(--ink); font-weight: 700; }
.legal-body ul, .legal-body ol { padding-left: 20px; margin-bottom: 14px; }
.legal-body li { margin-bottom: 6px; }
.legal-body a { color: var(--terracotta-2); text-decoration: underline; text-underline-offset: 3px; }
.legal-body a:hover { color: var(--terracotta); }
.legal-body .callout { background: var(--sand-2); border-left: 3px solid var(--terracotta); padding: 14px 18px; margin: 18px 0; font-size: 14px; border-radius: 2px; }
.legal-body .placeholder { display: inline-block; background: rgba(200,148,56,0.18); color: var(--terracotta-2); padding: 1px 8px; border-radius: 3px; font-weight: 600; font-size: 0.95em; border: 1px dashed var(--gold); }
.legal-body table { width: 100%; border-collapse: collapse; margin: 14px 0 22px; font-size: 13.5px; }
.legal-body table th, .legal-body table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid rgba(34,30,26,0.1); vertical-align: top; }
.legal-body table th { font-family: var(--font-sans); font-weight: 700; color: var(--ink); background: var(--sand-2); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.legal-body table td { color: var(--ink-80); }
.legal-body .cookie-block { background: #fff; border: 1px solid rgba(34,30,26,0.1); border-radius: 3px; padding: 18px 22px; margin: 16px 0; }
.legal-body .cookie-block h5 { margin-top: 0; margin-bottom: 8px; }
.legal-body .cookie-block .tag { display: inline-block; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; padding: 2px 8px; border-radius: 999px; margin-left: 6px; font-weight: 700; vertical-align: 1px; }
.legal-body .tag-tech { background: rgba(34,30,26,0.1); color: var(--ink); }
.legal-body .tag-third { background: rgba(42,90,56,0.18); color: var(--terracotta-2); }
.legal-body .cookie-block dl { margin-top: 8px; font-size: 13px; }
.legal-body .cookie-block dl div { display: grid; grid-template-columns: 150px 1fr; padding: 6px 0; border-bottom: 1px dashed rgba(34,30,26,0.1); }
.legal-body .cookie-block dl div:last-child { border-bottom: 0; }
.legal-body .cookie-block dt { font-weight: 700; color: var(--ink); font-size: 12px; }
.legal-body .cookie-block dd { color: var(--ink-80); font-size: 13px; }
.legal-body .foot-note { margin-top: 30px; padding-top: 18px; border-top: 1px solid rgba(34,30,26,0.1); font-size: 12.5px; color: var(--ink-60); font-family: var(--font-display); font-style: italic; font-size: 14px; }
.cookie-prefs-card { max-width: 620px; }
.cookie-prefs-body { padding: 22px 32px 8px; overflow-y: auto; flex: 1; font-size: 14px; line-height: 1.6; color: var(--ink-80); }
.cookie-prefs-body p { margin-bottom: 12px; }
.cookie-prefs-body a { color: var(--terracotta-2); text-decoration: underline; text-underline-offset: 3px; }
.cookie-category { padding: 16px 0; border-bottom: 1px solid rgba(34,30,26,0.1); display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: flex-start; }
.cookie-category:last-of-type { border-bottom: 0; }
.cookie-category-title { font-weight: 700; font-size: 14px; color: var(--ink); margin-bottom: 4px; }
.cookie-category-desc { font-size: 13px; color: var(--ink-60); line-height: 1.55; }
.cookie-category .status { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-40); margin-top: 6px; font-weight: 700; }
.switch { position: relative; width: 46px; height: 26px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.switch .slider { position: absolute; inset: 0; background: var(--ink-20); border-radius: 999px; cursor: pointer; transition: background .2s ease; }
.switch .slider::before { content: ''; position: absolute; left: 3px; top: 3px; width: 20px; height: 20px; background: var(--cream); border-radius: 50%; transition: transform .2s var(--ease); }
.switch input:checked + .slider { background: var(--terracotta); }
.switch input:checked + .slider::before { transform: translateX(20px); }
.switch input:disabled + .slider { background: rgba(42,90,56,0.55); cursor: not-allowed; }
.cookie-prefs-foot { padding: 18px 32px 24px; border-top: 1px solid rgba(34,30,26,0.1); display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.cookie-prefs-foot .cookie-btn.ghost { color: var(--ink-60); border-color: var(--ink-20); }
.cookie-prefs-foot .cookie-btn.ghost:hover { color: var(--cream); border-color: var(--ink); background: var(--ink); }
.cookie-prefs-foot .cookie-btn.primary { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.cookie-prefs-foot .cookie-btn.primary:hover { background: var(--terracotta); border-color: var(--terracotta); }
@media (max-width: 500px) { .cookie-prefs-body, .cookie-prefs-foot, .legal-head { padding-left: 20px; padding-right: 20px; } .cookie-prefs-foot { flex-direction: column; } .cookie-prefs-foot .cookie-btn { width: 100%; text-align: center; } }
body.no-scroll { overflow: hidden; }
:root {
  --terracotta: #C25E3A;
  --terracotta-2: #A04527;
  --cobalt: #1E456C;
  --cobalt-2: #143352;
  --sand: #F2EAD9;
  --sand-2: #E8DDC4;
  --olive: #6B7F5F;
  --cream: #FBF7EE;
  --ink: #2A1F19;
  --ink-80: rgba(34,30,26,0.82);
  --ink-60: rgba(34,30,26,0.58);
  --ink-40: rgba(34,30,26,0.38);
  --ink-20: rgba(34,30,26,0.18);
  --line: rgba(34,30,26,0.14);
  --gold: #D9A648;
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Manrope', system-ui, sans-serif;
  --font-hand: 'Caveat', cursive;
  --gutter: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
html, body { margin:0!important; padding:0!important; max-width:100vw!important; width:100%!important; overflow-x:clip!important; }
body > nav, body > main, body > main > section, body > footer {
  width: 100vw !important; max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
}
body { font-family: var(--font-sans); background: var(--cream); color: var(--ink); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 12px var(--gutter); display: flex; justify-content: space-between; align-items: center; transition: all 0.4s var(--ease); color: var(--ink); background: rgba(252,249,242,0.94); backdrop-filter: blur(14px); box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.nav-brand img { height: 54px; width: auto; display: block; background: transparent; }
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
  .nav-burger span { width: 22px; height: 2px; background: currentColor; transition: transform 0.4s ease, opacity 0.3s ease; }
}
.container { max-width: 1160px; margin: 0 auto; padding: 0 var(--gutter); }
.breadcrumb { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-60); margin-bottom: 18px; transition: color 0.3s, gap 0.3s; }
.breadcrumb::before { content: '\2190'; color: var(--terracotta); }
.breadcrumb:hover { color: var(--terracotta); gap: 12px; }
.pd-hero-sec { padding: 118px 0 0; }
.sec-label { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-60); font-weight: 600; }
.pd-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.1rem, 4.2vw, 3.4rem); line-height: 1.1; letter-spacing: -0.01em; color: var(--ink); margin-top: 8px; }
.pd-title em { font-style: italic; color: var(--terracotta); }
.pd-subline { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 18px; font-size: 15px; color: var(--ink-80); }
.pd-subline .dot { color: var(--ink-40); }
.pd-rating { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--ink); }
.pd-rating svg { color: var(--gold); }
.pd-mosaic-sec { padding: 22px 0 0; }
.pd-mosaic { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 8px; border-radius: 14px; overflow: hidden; aspect-ratio: 16/7.4; }
.pd-mosaic-main, .pd-mosaic-cell { position: relative; overflow: hidden; cursor: pointer; background: var(--sand-2); display: block; border: 0; padding: 0; }
.pd-mosaic-main img, .pd-mosaic-cell img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.pd-mosaic-main:hover img, .pd-mosaic-cell:hover img { transform: scale(1.05); }
.pd-mosaic-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px; }
.pd-show-all { position: absolute; right: 20px; bottom: 20px; z-index: 3; background: var(--cream); color: var(--ink); border: 1px solid var(--line); border-radius: 999px; padding: 11px 20px; font-size: 12.5px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 10px 30px -8px rgba(34,30,26,0.35); transition: transform 0.3s var(--ease), background 0.3s; }
.pd-show-all svg { width: 15px; height: 15px; }
.pd-show-all:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
@media (max-width: 800px) {
  .pd-mosaic { grid-template-columns: 1fr; aspect-ratio: 4/3; border-radius: 10px; }
  .pd-mosaic-grid { display: none; }
  .pd-show-all { right: 14px; bottom: 14px; padding: 9px 16px; font-size: 11.5px; }
}
.pd-body-sec { padding: 46px 0 8px; }
.pd-body-grid { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start; }
.pd-col-main { min-width: 0; }
.pd-col-side { position: relative; align-self: stretch; }
.pd-divider { height: 1px; background: var(--line); margin: 32px 0; }
@media (max-width: 980px) { .pd-body-grid { grid-template-columns: 1fr; } .pd-col-side { order: -1; } }
.pd-highlights { display: flex; flex-direction: column; gap: 22px; }
.pd-highlight { display: flex; gap: 16px; align-items: flex-start; }
.pd-highlight .ico { flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--sand-2); color: var(--terracotta); display: flex; align-items: center; justify-content: center; }
.pd-highlight .ico svg { width: 19px; height: 19px; }
.pd-highlight b { display: block; font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.pd-highlight p { font-size: 13.5px; color: var(--ink-60); line-height: 1.5; }
.pd-section h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(20px, 2.2vw, 24px); color: var(--ink); margin-bottom: 16px; letter-spacing: -0.01em; }
.pd-section .prose p { font-size: 15px; line-height: 1.75; color: var(--ink-80); margin-bottom: 14px; }
.pd-sleep-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pd-sleep-card { display: flex; align-items: center; gap: 16px; border: 1px solid var(--line); border-radius: 10px; padding: 20px 22px; background: var(--sand); }
.pd-sleep-card .ico { flex: none; width: 38px; height: 38px; color: var(--cobalt); }
.pd-sleep-card b { display: block; font-size: 14.5px; color: var(--ink); }
.pd-sleep-card p { font-size: 12.5px; color: var(--ink-60); margin-top: 2px; }
@media (max-width: 560px) { .pd-sleep-grid { grid-template-columns: 1fr; } }
.pd-amenities { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; }
@media (max-width: 560px) { .pd-amenities { grid-template-columns: 1fr; } }
.pd-amenity { display: flex; align-items: center; gap: 14px; font-size: 14.5px; color: var(--ink-80); }
.pd-amenity .ico { flex: none; width: 28px; height: 28px; color: var(--olive); display: flex; align-items: center; justify-content: center; }
.pd-amenity .ico svg { width: 19px; height: 19px; }
.pd-booking-card { position: sticky; top: 100px; border: 1px solid var(--line); border-radius: 16px; padding: 26px; background: var(--cream); box-shadow: 0 30px 60px -30px rgba(34,30,26,0.28); }
.pd-booking-title { font-family: var(--font-display); font-size: 19px; font-weight: 500; font-style: italic; color: var(--ink); margin-bottom: 18px; }
.pd-booking-dates { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.pd-date-box { padding: 10px 14px; border-right: 1px solid var(--line); }
.pd-date-box:last-child { border-right: 0; }
.pd-date-box label { display: block; font-size: 9.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-60); margin-bottom: 4px; }
.pd-date-box input { width: 100%; border: 0; background: transparent; font-size: 13.5px; font-weight: 500; color: var(--ink); font-family: var(--font-sans); cursor: pointer; }
.pd-guests { position: relative; margin-top: 10px; }
.pd-guests-toggle { width: 100%; text-align: left; border: 1px solid var(--line); border-radius: 10px; padding: 10px 14px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; background: transparent; }
.pd-guests-toggle .lbl { display: block; font-size: 9.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-60); margin-bottom: 4px; }
.pd-guests-toggle .val { font-size: 13.5px; font-weight: 500; color: var(--ink); }
.pd-guests-toggle svg { width: 13px; height: 13px; color: var(--ink-60); transition: transform 0.3s; flex: none; }
.pd-guests.open .pd-guests-toggle svg { transform: rotate(180deg); }
.pd-guests-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: var(--cream); border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px;
  box-shadow: 0 20px 44px -14px rgba(34,30,26,0.3); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity 0.25s, transform 0.25s, visibility 0.25s; z-index: 20;
}
.pd-guests.open .pd-guests-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.pd-guest-row { display: flex; align-items: center; justify-content: space-between; padding: 6px 0; gap: 16px; }
.pd-guest-row b { display: block; font-size: 14px; color: var(--ink); font-weight: 600; }
.pd-counter { display: flex; align-items: center; gap: 12px; flex: none; }
.pd-counter button { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); color: var(--ink); font-size: 15px; display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s; }
.pd-counter button:hover:not(:disabled) { background: var(--terracotta); color: var(--cream); border-color: var(--terracotta); }
.pd-counter button:disabled { opacity: 0.35; cursor: not-allowed; }
.pd-counter span { min-width: 16px; text-align: center; font-weight: 600; }
.pd-guests-max { font-size: 11.5px; color: var(--ink-60); margin-top: 8px; padding-top: 10px; border-top: 1px dashed var(--line); }
.pd-cta { width: 100%; margin-top: 18px; background: var(--terracotta); color: var(--cream); border-radius: 10px; padding: 15px 18px; font-size: 14.5px; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 10px; transition: background 0.3s, transform 0.3s, box-shadow 0.3s; box-shadow: 0 14px 30px -12px rgba(42,90,56,0.55); border: 0; cursor: pointer; }
.pd-cta:hover { background: var(--terracotta-2); transform: translateY(-2px); }
.pd-note { margin-top: 12px; font-size: 11.5px; color: var(--ink-60); text-align: center; line-height: 1.5; }
.pd-know-sec { padding: 60px 0 100px; background: var(--sand); border-top: 1px solid var(--line); margin-top: 44px; }
.pd-know-title { font-family: var(--font-display); font-weight: 500; font-style: italic; font-size: clamp(24px, 3vw, 32px); color: var(--ink); margin-bottom: 36px; letter-spacing: -0.015em; }
.pd-know-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
@media (max-width: 900px) { .pd-know-grid { grid-template-columns: 1fr; gap: 18px; } }
.pd-know-card { background: var(--cream); border: 1px solid var(--line); border-radius: 14px; padding: 30px 28px 22px; box-shadow: 0 18px 40px -30px rgba(34,30,26,0.22); }
.pd-know-ico { width: 46px; height: 46px; border-radius: 50%; background: var(--sand-2); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--terracotta); margin-bottom: 16px; }
.pd-know-ico svg { width: 21px; height: 21px; }
.pd-know-card h4 { font-family: var(--font-display); font-weight: 500; font-size: 19px; color: var(--ink); padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.pd-know-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.pd-know-card li { font-size: 14px; color: var(--ink-80); line-height: 1.55; padding: 12px 0 12px 22px; position: relative; border-bottom: 1px dashed var(--line); }
.pd-know-card li:last-child { border-bottom: 0; padding-bottom: 2px; }
.pd-know-card li::before { content: ''; position: absolute; left: 4px; top: 19px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.pd-lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(20,15,10,0.96); display: none; flex-direction: column; }
.pd-lightbox.open { display: flex; }
.pd-lightbox-top { display: flex; justify-content: flex-end; padding: 18px clamp(16px, 3vw, 32px); }
.pd-lightbox-close { position: relative; width: 44px; height: 44px; border-radius: 50%; background: rgba(252,249,242,0.08); border: 1px solid rgba(252,249,242,0.22); cursor: pointer; }
.pd-lightbox-close::before, .pd-lightbox-close::after { content:''; position:absolute; left:50%; top:50%; width:16px; height:1.5px; background: var(--cream); }
.pd-lightbox-close::before { transform: translate(-50%,-50%) rotate(45deg); }
.pd-lightbox-close::after { transform: translate(-50%,-50%) rotate(-45deg); }
.pd-lightbox-scroll { flex: 1; overflow-y: auto; padding-bottom: 60px; }
.pd-lightbox-counter { text-align: center; color: rgba(252,249,242,0.55); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 0 18px; }
.pd-lightbox-scroll .row { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; padding: 0 clamp(16px,3vw,32px); }
.pd-lightbox-scroll .row img { width: 100%; border-radius: 6px; }
.pd-mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: var(--cream); border-top: 1px solid var(--line); box-shadow: 0 -12px 30px rgba(34,30,26,0.14); padding: 12px var(--gutter); display: none; align-items: center; justify-content: space-between; gap: 14px; }
.pd-mobile-bar-dates { font-size: 12px; color: var(--ink-60); line-height: 1.3; }
.pd-mobile-bar-dates b { display: block; font-size: 13.5px; color: var(--ink); }
.pd-mobile-bar-btn { flex: none; background: var(--terracotta); color: var(--cream); padding: 13px 20px; border-radius: 999px; font-size: 13px; font-weight: 600; border: 0; cursor: pointer; }
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.inRange { background: var(--terracotta)!important; border-color: var(--terracotta)!important; }
.flatpickr-day.inRange { background: rgba(42,90,56,0.18)!important; border-color: transparent!important; color: var(--ink)!important; box-shadow: none!important; }
.legal-body h4 { font-family: var(--font-display); font-weight: 500; font-size: 1.35rem; color: var(--ink); margin-top: 34px; margin-bottom: 12px; letter-spacing: -0.01em; }
@media (max-width: 980px) { .pd-mobile-bar { display: flex; } body { padding-bottom: 76px; } }
.breadcrumb { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-60); margin-bottom: 20px; transition: color 0.3s, gap 0.3s; }
.page-hero { padding: 130px 0 40px; background: var(--cream); border-bottom: 1px solid var(--line); }
.chapter-tag { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-60); font-weight: 600; margin-bottom: 20px; display: inline-block; padding-bottom: 6px; border-bottom: 2px solid var(--terracotta); }
.page-hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.3rem, 5vw, 4rem); line-height: 1.1; letter-spacing: -0.01em; color: var(--ink); max-width: 18ch; margin-top: 10px; }
.page-hero h1 em { font-style: italic; color: var(--terracotta); }
.page-hero p { font-family: var(--font-display); font-style: italic; font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-80); max-width: 58ch; margin-top: 18px; }
.panorama { margin-top: 40px; position: relative; aspect-ratio: 21/8; border-radius: 6px; overflow: hidden; }
.panorama img { width: 100%; height: 100%; object-fit: cover; }
.panorama .cap { position: absolute; left: 20px; bottom: 16px; background: rgba(34,30,26,0.6); backdrop-filter: blur(6px); color: var(--cream); padding: 8px 16px; border-radius: 999px; font-family: var(--font-hand); font-size: 17px; }
@media (max-width: 700px) { .panorama { aspect-ratio: 4/3; } }
.mag-sec { padding: 56px 0 90px; }
.mag-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 800px) { .mag-grid { grid-template-columns: 1fr; } }
.mag-card { background: var(--cream); border: 1px solid var(--line); border-radius: 8px; padding: 34px 30px; display: flex; flex-direction: column; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.3s; }
.mag-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(34,30,26,0.28); border-color: var(--terracotta); }
.mag-card .cat { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 14px; }
.mag-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.mag-badges span { font-size: 11.5px; font-weight: 600; color: var(--cobalt); background: var(--sand-2); border-radius: 999px; padding: 5px 12px; }
.mag-card h3 { font-family: var(--font-display); font-size: clamp(24px, 2.4vw, 29px); font-weight: 500; color: var(--ink); line-height: 1.15; letter-spacing: -0.01em; }
.mag-card h3 em { font-style: italic; color: var(--terracotta); }
.mag-card p { margin-top: 12px; color: var(--ink-80); font-size: 14.5px; flex: 1; line-height: 1.65; }
.mag-card .go { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13px; font-weight: 600; color: var(--terracotta); display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s; }
.mag-card .go::after { content: '\2192'; transition: transform 0.3s; }
.mag-card:hover .go::after { transform: translateX(4px); }
.closing-cta { padding: 0 0 90px; text-align: center; }
.btn-primary { background: var(--terracotta); color: var(--cream); padding: 17px 32px; border-radius: 999px; font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 12px; transition: all 0.3s var(--ease); box-shadow: 0 12px 40px -8px rgba(42,90,56,0.5); }
.closing-cta .sub-link { display: block; margin-top: 20px; font-size: 13px; color: var(--ink-60); }
.closing-cta .sub-link a { color: var(--terracotta); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.container { max-width: 820px; margin: 0 auto; padding: 0 var(--gutter); }
.dest-hero { padding: 140px 0 44px; background: var(--cream); border-bottom: 1px solid var(--line); }
.dest-hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.2rem, 4.6vw, 3.6rem); line-height: 1.1; letter-spacing: -0.01em; color: var(--ink); margin-top: 8px; }
.dest-hero h1 em { font-style: italic; color: var(--terracotta); }
.dest-hero .lead { font-family: var(--font-display); font-style: italic; font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--ink-80); max-width: 56ch; margin-top: 18px; }
.mag-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.mag-badges span { font-size: 11.5px; font-weight: 600; color: var(--cobalt); background: var(--sand-2); border-radius: 999px; padding: 6px 14px; }
.dest-body { padding: clamp(48px, 7vw, 80px) 0; }
.article-figure { margin: 38px auto 8px; }
.article-figure img { width: 100%; max-height: 520px; object-fit: cover; border-radius: 14px; display: block; }
.article-figure figcaption { margin-top: 10px; font-size: 12px; color: var(--ink-60); }
.prose p { font-size: 16.5px; line-height: 1.85; color: var(--ink-80); margin-bottom: 20px; }
.prose p:first-of-type::first-letter { font-family: var(--font-display); font-size: 62px; font-weight: 400; float: left; line-height: 0.85; margin: 6px 12px 0 0; color: var(--terracotta); }
.dest-tips { margin-top: 40px; padding-top: 32px; border-top: 1px dashed var(--line); }
.dest-tips h4 { font-family: var(--font-display); font-weight: 500; font-style: italic; font-size: 22px; color: var(--ink); margin-bottom: 16px; }
.dest-tips ul { display: flex; flex-direction: column; gap: 12px; list-style: none; }
.dest-tips li { padding-left: 24px; position: relative; font-size: 15px; color: var(--ink-80); line-height: 1.65; }
.dest-tips li::before { content: '\2014'; position: absolute; left: 0; color: var(--gold); }
.dest-tips li strong { color: var(--ink); }
.dest-cta { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.btn-primary { background: var(--terracotta); color: var(--cream); padding: 16px 30px; border-radius: 999px; font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 12px; transition: all 0.3s var(--ease); box-shadow: 0 12px 40px -8px rgba(42,90,56,0.5); }
.dest-cta .other { font-size: 13px; color: var(--ink-60); }
.dest-cta .other a { color: var(--terracotta); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.legal-body ul { padding-left: 20px; margin-bottom: 14px; }

/* ===== TEMA RISERVA DEL FRIGNANO ===== */
/* =============================================================
   RISERVA DEL FRIGNANO — tema e correzioni
   Viene accodato a site.css (il design system estratto dal
   template Villa Ruffi Mykonos), quindi vince sulla cascata.
   ============================================================= */

/* --- 1. PALETTE ------------------------------------------------
   Colori presi dal logo della struttura: verde bosco #205030,
   oro #B88030. Le variabili conservano i nomi del template per
   non dover riscrivere 1.400 righe di regole.                    */
:root {
  --terracotta:   #2A5A38;   /* colore primario: verde bosco     */
  --terracotta-2: #1C4227;   /* hover                            */
  --cobalt:       #3A4A52;   /* secondario: pietra               */
  --cobalt-2:     #26333A;
  --olive:        #6B7F5F;
  --sand:         #F2ECDE;   /* fondo pagina                     */
  --sand-2:       #E7DECA;
  --cream:        #FCF9F2;
  --ink:          #221E1A;
  --ink-80: rgba(34,30,26,0.86);
  /* 0,62 e 0,42 del template non arrivano a 4,5:1 sui fondi sand/cream:
     alzati fino a superare la soglia AA misurata con qa_live.py */
  --ink-60: rgba(34,30,26,0.72);
  --ink-40: rgba(34,30,26,0.66);
  --ink-20: rgba(34,30,26,0.18);
  --line:   rgba(34,30,26,0.14);
  --gold:       #C89438;     /* decorativo, su fondo molto scuro */
  --gold-ink:   #8A6420;     /* testo su fondo chiaro (AA)       */
  --gold-su-scuro: #E2B565;  /* testo su pietra/cobalto (AA)     */
}

/* --- 2. CORREZIONI AL TEMPLATE ---------------------------------
   Difetti noti dei 6 template (vedi DIFETTI-TEMPLATE.md).        */

/* 2a. overflow-x:hidden su html,body rende il body contenitore di
   scroll e rompe position:sticky della card prenotazione.        */
html, body { overflow-x: visible !important; }
@supports (overflow: clip) { html, body { overflow-x: clip !important; } }

/* 2b. il drawer chiuso restava nel tab order */
.nav-drawer[hidden] { display: none !important; }
.nav-drawer { visibility: hidden; }
.nav-drawer.open { visibility: visible; }

/* 2c. griglia foto delle card unità: senza min-height:0 le foto
   verticali sbilanciano la 2×2 */
.rc-gallery img { min-height: 0; }

/* 2d. il breadcrumb inline-flex finiva sulla stessa riga dell'occhiello */
.breadcrumb { display: flex; width: fit-content; }

/* 2e. accessibilità: focus visibile e skip link (assenti nel template) */
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 3px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: var(--cream); padding: 12px 20px;
  border-radius: 0 0 6px 0; font-size: 14px; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* 2f. le figure vogliono height:auto, altrimenti l'attributo height= del
   markup (necessario per la CLS) vince e schiaccia la foto.
   ATTENZIONE alla specificità: con `img[width][height]` (0,2,1) la regola
   batteva `.pd-mosaic-main img` (0,1,1) e le foto in cover uscivano
   incorniciate di beige. Con `img[width]` (0,1,1) le regole in cover,
   che vengono dopo, vincono a pari specificità. */
img[width] { height: auto; }
.pd-mosaic-main img, .pd-mosaic-cell img, .rc-gallery img, .pc-img img,
.polaroid img, .hero-bg img, .full-bleed img, .mag-card img,
.pc-main img, .pc-side img, .bf-img img, .bc-img img, .rc-img img,
.art-hero img { height: 100%; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* --- 3. NAV: logo, lingue --------------------------------------
   Attenzione: la regola 2f `img[width][height]{height:auto}` ha
   specificità (0,2,1) e batteva `.nav-brand img` (0,1,1). Qui i
   selettori sono pareggiati e vengono dopo, così vincono. */
/* Il logo della struttura è quadrato: nella barra, a 60px, la scritta
   diventava illeggibile. Si usa un lockup orizzontale (monogramma +
   marchio) generato da immagini.py, in bianco sull'hero e a colori
   quando la barra diventa chiara. */
.nav .nav-brand { position: relative; display: inline-flex; align-items: center; flex: none; }
/* senza flex:none il marchio si comprime quando il menu è largo: sotto i
   900px il lockup usciva schiacciato del 30% in orizzontale */
.nav .nav-brand img { flex: none; }
.nav .nav-brand img { filter: none; height: 46px; width: auto; transition: height .4s var(--ease), opacity .3s var(--ease); }
.nav .nav-brand .logo-scuro { position: absolute; left: 0; top: 50%; transform: translateY(-50%); }
/* Barra chiara (tutte le pagine tranne l'hero della home): logo a colori */
.nav .nav-brand .logo-chiaro { opacity: 0; }
.nav .nav-brand .logo-scuro { opacity: 1; }
/* Il secondo blocco .nav del CSS unito rendeva la barra sempre opaca, anche
   sopra la foto dell'hero. Le pagine con hero la riportano trasparente. */
.nav.nav-hero:not(.scrolled) {
  background: transparent; box-shadow: none; backdrop-filter: none;
  color: var(--cream); padding: 18px var(--gutter);
}
.nav.nav-hero:not(.scrolled) .nav-brand .logo-chiaro { opacity: 1; }
.nav.nav-hero:not(.scrolled) .nav-brand .logo-scuro { opacity: 0; }
.nav.nav-hero:not(.scrolled) .nav-burger span { background: var(--cream); }
.nav.scrolled .nav-brand img { height: 40px; }
@media (max-width: 900px) {
  .nav .nav-brand img { height: 38px; }
  .nav.scrolled .nav-brand img { height: 34px; }
}
/* Il marchio nel piede aveva altezza fissa e `max-width:100%`: quando la
   colonna si stringe (tablet e telefono) la larghezza veniva tagliata e il
   logo usciva schiacciato fino al 34%. Si dimensiona in larghezza. */
/* Serve battere `.footer-brand .footer-logo` (0,2,0) del template:
   `footer .footer-logo` è (0,1,1) e perdeva sull'altezza fissa. */
footer .footer-brand .footer-logo { width: min(240px, 100%); height: auto; margin-bottom: 14px; }
.lang-dropdown a {
  display: flex; justify-content: space-between; gap: 14px; align-items: center;
  padding: 9px 14px; border-radius: 7px; font-size: 13px; color: var(--ink);
  font-family: var(--font-sans); font-weight: 500;
}
.lang-dropdown a:hover { background: var(--sand); color: var(--terracotta); }
.lang-dropdown a.attiva { background: var(--terracotta); color: var(--cream); }
.lang-dropdown .code { font-size: 11px; letter-spacing: .1em; opacity: .8; }

/* HERO — il blocco di testo era più alto dell'hero stesso su schermi bassi
   (a 1440×760 la pill finiva 14px SOTTO la barra fissa e i pulsanti 28px
   sotto il bordo inferiore, coperti dall'onda). Il template dimensionava
   tutto solo sulla larghezza: qui le misure seguono anche l'altezza della
   finestra, così l'hero sta dentro il viewport su qualunque portatile. */
/* il template fissa `height: 100vh` + `overflow:hidden`: su schermi molto
   piccoli il testo veniva semplicemente tagliato. Con min-height l'hero si
   allunga quando serve, restando a tutta altezza ovunque altrove. */
.hero { height: auto; min-height: 100vh; min-height: 100svh; }
.hero-content { padding-top: clamp(84px, 10vh, 120px); padding-bottom: clamp(40px, 6vh, 72px); }
.hero h1 { font-size: clamp(38px, min(6.4vw, 8.6vh), 84px); }
.hero .subtitle { font-size: clamp(15px, min(1.35vw, 2.1vh), 19px); max-width: 46ch; }
.hero-pill { margin-bottom: clamp(14px, 2.4vh, 26px); }
.hero-actions { margin-top: clamp(18px, 3vh, 34px); }
@media (max-height: 780px) {
  .hero .subtitle { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
}
@media (max-height: 700px) {
  .hero-content { padding-top: 76px; padding-bottom: 34px; }
  .hero .subtitle { -webkit-line-clamp: 2; margin-top: 10px; }
  .hero-pill { margin-bottom: 10px; }
  .hero-actions { margin-top: 14px; }
}
/* Sul telefono la barra è alta ~74px: il padding deve superarla di almeno
   una trentina di pixel, altrimenti la pill le finisce appiccicata sotto. */
@media (max-width: 900px) { .hero-content { padding-top: 112px; } }
@media (max-width: 900px) and (max-height: 700px) { .hero-content { padding-top: 104px; padding-bottom: 30px; } }
/* Schermi minuscoli: il contenuto resta più alto dello spazio utile anche
   ridotto. Con l'allineamento in alto il padding comanda davvero e niente
   finisce più sotto la barra. */
@media (max-height: 620px), (max-width: 380px) {
  .hero { align-items: flex-start; }
  /* l'onda in fondo all'hero è alta una cinquantina di pixel: senza questo
     margine i pulsanti ci finiscono sotto */
  .hero-content { padding-bottom: 64px; }
}

/* --- 4. AVVISO PRIVACY (non è un banner di consenso) ------------ */
.avviso {
  position: fixed; left: clamp(14px,3vw,30px); right: clamp(14px,3vw,30px); bottom: clamp(14px,3vw,30px);
  z-index: 150; max-width: 1000px; margin: 0 auto; background: var(--ink); color: var(--cream);
  border: 1px solid rgba(200,148,56,.28); border-radius: 5px; padding: 20px clamp(20px,3vw,30px);
  display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center;
  box-shadow: 0 26px 70px rgba(34,30,26,.42);
}
.avviso[hidden] { display: none; }
.avviso-testo h2 { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 20px; margin-bottom: 5px; }
.avviso-testo p { font-size: 13.5px; line-height: 1.6; color: rgba(252,249,242,.86); }
.avviso-testo a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.avviso-btn {
  background: var(--gold); color: var(--ink); border: 0; border-radius: 999px;
  padding: 12px 26px; font-size: 13px; font-weight: 700; cursor: pointer; white-space: nowrap;
}
.avviso-btn:hover { background: var(--cream); }
@media (max-width: 720px) { .avviso { grid-template-columns: 1fr; gap: 14px; } .avviso-btn { width: 100%; } }

/* --- 5. MAPPA -------------------------------------------------- */
.map-section { background: var(--cream); padding: clamp(60px,8vw,110px) 0 0; }
.map-wrap { display: grid; grid-template-columns: minmax(280px, 400px) 1fr; gap: 0; align-items: stretch; }
.map-info { padding: clamp(28px,4vw,56px) var(--gutter); display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.map-info address { font-style: normal; font-size: 15px; line-height: 1.8; color: var(--ink-80); }
.map-info address a { text-decoration: underline; text-underline-offset: 3px; }
.map-info .map-cin { font-size: 12px; letter-spacing: .04em; color: var(--ink-40); }
.map-info .btn-ghost {
  align-self: flex-start; border: 1.5px solid var(--ink-20); border-radius: 999px;
  padding: 11px 22px; font-size: 13px; font-weight: 600;
}
.map-info .btn-ghost:hover { border-color: var(--terracotta); color: var(--terracotta); }
.map-container { position: relative; min-height: 440px; background: var(--sand-2); }
.map-container .leaflet-container { position: absolute; inset: 0; height: 100%; width: 100%; }
.map-blocked { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; padding: 28px; }
.map-blocked-inner { max-width: 400px; display: flex; flex-direction: column; align-items: center; gap: 12px; color: var(--ink-60); }
.map-blocked-inner h3 { font-family: var(--font-display); font-size: 24px; font-weight: 500; color: var(--ink); }
.map-blocked-inner p { font-size: 13.5px; line-height: 1.6; }
.btn-consent-map { background: var(--terracotta); color: var(--cream); border: 0; border-radius: 999px; padding: 12px 24px; font-size: 13px; font-weight: 600; cursor: pointer; }
.btn-consent-map:hover { background: var(--terracotta-2); }
.map-policy-link { font-size: 12.5px; text-decoration: underline; text-underline-offset: 3px; color: var(--ink-60); }
@media (max-width: 900px) { .map-wrap { grid-template-columns: 1fr; } .map-container { min-height: 340px; } }

/* --- 6. PAGINE LEGALI / FAQ / CREDITI --------------------------- */
.doc-hero { padding: calc(var(--gutter) + 96px) var(--gutter) 34px; background: var(--cream); border-bottom: 1px solid var(--line); }
.doc-hero .inner { max-width: 860px; margin: 0 auto; }
.doc-hero .occhiello { display: block; font-family: var(--font-hand); font-size: 22px; color: var(--gold-ink); margin-bottom: 4px; }
.doc-hero h1 { font-family: var(--font-display); font-size: clamp(34px,5vw,54px); font-weight: 400; line-height: 1.08; letter-spacing: -.02em; }
.doc-hero .sommario { margin-top: 14px; font-size: 15.5px; line-height: 1.7; color: var(--ink-60); max-width: 62ch; }
.doc-hero .aggiornato { margin-top: 16px; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-40); }
.doc-body { max-width: 860px; margin: 0 auto; padding: clamp(34px,5vw,64px) var(--gutter) clamp(60px,8vw,110px); }
.doc-body h2 { font-family: var(--font-display); font-size: clamp(23px,2.6vw,30px); font-weight: 500; margin: 42px 0 14px; letter-spacing: -.01em; }
.doc-body h2:first-child { margin-top: 0; }
.doc-body h3 { font-size: 16px; font-weight: 700; margin: 24px 0 8px; }
.doc-body p { font-size: 15.5px; line-height: 1.8; color: var(--ink-80); margin-bottom: 14px; }
.doc-body ul { margin: 0 0 16px 0; padding: 0; list-style: none; }
.doc-body ul li { position: relative; padding: 8px 0 8px 22px; font-size: 15.5px; line-height: 1.7; color: var(--ink-80); border-bottom: 1px solid var(--line); }
.doc-body ul li::before { content: ""; position: absolute; left: 3px; top: 18px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.doc-body a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }
.doc-table { width: 100%; border-collapse: collapse; margin: 6px 0 18px; font-size: 15px; }
.doc-table th, .doc-table td { text-align: left; vertical-align: top; padding: 11px 12px; border-bottom: 1px solid var(--line); line-height: 1.6; }
.doc-table th { width: 34%; font-weight: 600; color: var(--ink); background: var(--cream); }
.doc-table td { color: var(--ink-80); }
.doc-scroll { overflow-x: auto; }
.doc-nota { margin-top: 34px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-40); line-height: 1.7; }
.doc-altri { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; }
.doc-altri a { border: 1.5px solid var(--ink-20); border-radius: 999px; padding: 9px 18px; font-size: 13px; text-decoration: none; }
.doc-altri a:hover { border-color: var(--terracotta); color: var(--terracotta); }
code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .92em; background: var(--sand-2); padding: 2px 6px; border-radius: 3px; }

.faq-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.faq-nav a { border: 1.5px solid var(--ink-20); border-radius: 999px; padding: 9px 18px; font-size: 13px; font-weight: 500; text-decoration: none; }
.faq-nav a:hover { border-color: var(--terracotta); color: var(--terracotta); }
.faq-gruppo { margin-bottom: 44px; scroll-margin-top: 110px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h3 { font-family: var(--font-sans); font-size: 16.5px; font-weight: 600; margin: 0; }
.faq-item summary { cursor: pointer; list-style: none; padding: 20px 40px 20px 0; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 6px; top: 16px; font-size: 24px; color: var(--gold-ink); font-weight: 300; transition: transform .3s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .risposta { padding: 0 0 20px; font-size: 15.5px; line-height: 1.8; color: var(--ink-80); max-width: 68ch; }

.crediti-lista { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 22px; }
.credito { font-size: 13px; line-height: 1.6; color: var(--ink-60); }
.credito img { border-radius: 4px; margin-bottom: 8px; aspect-ratio: 3/2; object-fit: cover; }
.credito b { display: block; color: var(--ink); font-size: 14px; margin-bottom: 3px; }

/* --- 7. GALLERIA ----------------------------------------------- */
.gal-filtri { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 0 0 34px; }
.gal-filtri button { border: 1.5px solid var(--ink-20); border-radius: 999px; padding: 9px 20px; font-size: 13px; font-weight: 500; color: var(--ink-60); }
.gal-filtri button:hover { border-color: var(--terracotta); color: var(--terracotta); }
.gal-filtri button[aria-pressed="true"] { background: var(--terracotta); border-color: var(--terracotta); color: var(--cream); }
.gal-grid { columns: 3 300px; column-gap: 16px; }
.gal-grid figure { break-inside: avoid; margin: 0 0 16px; position: relative; cursor: zoom-in; }
.gal-grid img { width: 100%; border-radius: 4px; display: block; }
.gal-grid figcaption { font-size: 12.5px; color: var(--ink-40); padding: 6px 2px 0; }
.gal-grid figure[hidden] { display: none; }

/* --- 8. ASSISTENTE VIRTUALE ------------------------------------ */
.azc-launcher { position: fixed; right: 20px; bottom: 20px; z-index: 140; width: 56px; height: 56px; border-radius: 50%;
  background: var(--terracotta); color: var(--cream); border: 0; cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(34,30,26,.3); }
.azc-launcher:hover { background: var(--terracotta-2); }
.azc-badge { position: absolute; top: -3px; right: -3px; background: var(--gold); color: var(--ink); font-size: 11px; font-weight: 700; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.azc-panel { position: fixed; right: 20px; bottom: 20px; z-index: 141; width: min(380px, calc(100vw - 32px)); height: min(560px, calc(100vh - 40px));
  background: var(--cream); border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 26px 70px rgba(34,30,26,.34);
  display: none; flex-direction: column; overflow: hidden; }
.azc-panel.open { display: flex; }
.azc-head { background: var(--terracotta); color: var(--cream); padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; }
.azc-head strong { display: block; font-size: 14.5px; font-weight: 600; }
.azc-head span { font-size: 11.5px; opacity: .82; }
.azc-head button { color: var(--cream); font-size: 26px; line-height: 1; padding: 0 4px; }
.azc-body { flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px; background: var(--sand); }
.azc-msg { max-width: 84%; padding: 10px 13px; border-radius: 14px; font-size: 14px; line-height: 1.5; word-wrap: break-word; }
.azc-msg.user { align-self: flex-end; background: var(--terracotta); color: var(--cream); border-bottom-right-radius: 4px; }
.azc-msg.bot { align-self: flex-start; background: var(--cream); border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.azc-msg a { color: var(--gold-ink); text-decoration: underline; word-break: break-word; }
.azc-typing { align-self: flex-start; background: var(--cream); border: 1px solid var(--line); border-radius: 14px; padding: 12px 15px; display: flex; gap: 4px; }
.azc-typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--ink-40); animation: azcb 1.4s infinite ease-in-out both; }
.azc-typing span:nth-child(2) { animation-delay: .16s; }
.azc-typing span:nth-child(3) { animation-delay: .32s; }
@keyframes azcb { 0%,80%,100% { transform: scale(.6); opacity: .5 } 40% { transform: scale(1); opacity: 1 } }
.azc-suggest { padding: 8px 12px; display: flex; flex-wrap: wrap; gap: 6px; border-top: 1px solid var(--line); background: var(--cream); }
.azc-chip { background: var(--sand); border: 1px solid var(--line); border-radius: 14px; padding: 6px 12px; font-size: 12px; color: var(--ink-80); cursor: pointer; }
.azc-chip:hover { background: var(--terracotta); color: var(--cream); border-color: var(--terracotta); }
.azc-input-wrap { display: flex; align-items: flex-end; gap: 8px; padding: 10px; border-top: 1px solid var(--line); background: var(--cream); }
.azc-input { flex: 1; border: 1px solid var(--ink-20); border-radius: 18px; padding: 9px 14px; font-size: 14px; font-family: inherit; resize: none; max-height: 96px; line-height: 1.4; background: var(--cream); color: var(--ink); }
.azc-input:focus { outline: none; border-color: var(--terracotta); }
.azc-send { background: var(--terracotta); color: var(--cream); width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.azc-send:disabled { opacity: .5; cursor: not-allowed; }
.azc-send svg { width: 17px; height: 17px; }
.azc-foot { font-size: 10.5px; color: var(--ink-40); text-align: center; padding: 6px 10px 9px; background: var(--cream); line-height: 1.4; }
@media (max-width: 640px) { .azc-panel { right: 8px; bottom: 8px; width: calc(100vw - 16px); height: calc(100vh - 16px); border-radius: 10px; } }

/* Testo oro sul fondo pietra della sezione prenotazione: la tonalità
   decorativa non arriva a 4,5:1, serve quella schiarita. */
.booking-section .chapter-tag { color: var(--gold-su-scuro); border-color: var(--gold-su-scuro); }
.booking-section .chapter-h em, .vs-tag { color: var(--gold-su-scuro); }
.map-blocked-inner p, .map-policy-link { color: var(--ink-80); }
.gal-grid figcaption { color: var(--ink-60); }

/* Aree cliccabili: sotto i 24px non passano il criterio WCAG 2.5.8.
   I contatori +/- e i link di piede sul telefono ci arrivavano appena. */
.qty button, .pd-counter button { min-width: 36px; min-height: 36px; }
@media (max-width: 900px) {
  .footer-col a, .footer-legal a, .breadcrumb, .doc-altri a, .faq-nav a { padding-block: 6px; display: inline-block; }
  .footer-col a, .footer-legal a { min-height: 28px; }
}
.footer-bottom span { color: rgba(252,249,242,0.72); }
.footer-bottom a, .map-policy-link, .map-info address a,
.pd-note a, .doc-nota a { display: inline-block; padding-block: 5px; }

/* Il CSS del template definisce .container DUE volte: 1160px nelle pagine
   annuncio e 820px nelle pagine dintorni. Unendo i fogli vinceva l'ultima
   e le pagine unità uscivano strizzate in mezza pagina. Qui si rimette la
   larghezza piena e si restringe solo dove serve leggere. */
.container { max-width: 1160px; }
.dest-hero .container, .dest-body .container, .doc-hero .inner { max-width: 860px; }

/* --- 9. RITOCCHI VARI ------------------------------------------ */
.footer-cin { font-size: 11.5px; letter-spacing: .05em; opacity: .6; margin-top: 8px; }
.footer-col h2 { font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 14px; opacity: .75; }
.chapter-num, .drawer-eyebrow, .hero-pill .dot { color: var(--gold-ink); }
.nav .lang-btn { border-color: currentColor; }
.pd-know-card li::before, .dest-tips li::before { background: var(--gold-ink); }
.article-figure figcaption, .figura-credito { font-size: 12px; color: var(--ink-40); line-height: 1.55; padding-top: 14px; }
.figura { margin: 30px 0; }
.figura img { width: 100%; border-radius: 4px; }
.sconto-box { background: var(--ink); color: var(--cream); border-radius: 5px; padding: clamp(22px,3vw,32px); text-align: center; margin: 0 auto; max-width: 760px; }
.sconto-box strong { color: var(--gold); }
.rooms-cta { text-align: center; margin-top: 44px; }

/* --- 10. DIDASCALIE: ARIA FRA LA FOTO E IL SUO TESTO ------------
   Segnalazione di Francesco (08/09): le didascalie stanno appiccicate
   all'immagine di sopra. Il difetto è del template ed è di tre tipi.

   a) `.polaroid .pcap` era in POSIZIONE ASSOLUTA, ancorata a `bottom:12px`
      dentro una cornice con soli 60px di padding in basso. Una didascalia di
      una riga stava larga; una di tre righe (qui: «il patio coperto con vista
      sulle colline dell'appennino modenese», 18px di font a mano) cresce
      verso l'ALTO e finisce addosso alla foto — o sopra.
      Rimedio: la didascalia torna nel flusso, la cornice diventa una colonna
      flex e lo spazio dalla foto è fisso qualunque sia la lunghezza del testo.
   b) `.gal-grid figcaption` aveva `padding: 6px 2px 0`: sei pixel.
   c) `.article-figure figcaption` era a 7px (corretto sopra, ora 14px). */

.polaroid {
  padding: 12px 12px 20px;
  display: flex;
  flex-direction: column;
}
.polaroid .pcap {
  position: static;
  bottom: auto; left: auto; right: auto;
  margin-top: 18px;
  line-height: 1.35;
}
@media (max-width: 500px) {
  .polaroid .pcap { margin-top: 14px; }
}

.gal-grid figcaption { padding: 14px 2px 0; line-height: 1.45; }

/* --- 11. SEZIONE SERVIZI: LE CLASSI NON ESISTEVANO NEL TEMPLATE --------
   `.amenity-grid`, `.amenity` e `.am-ico` sono nostre: nel CSS del template
   non c'e' una sola regola che le nomini, quindi la sezione «Tutto quello che
   serve, gia' compreso» usciva NUDA — voci impilate in una colonna sola, icona
   sopra il testo invece che accanto. E' lo stesso errore gia' pagato sulle
   pagine del blog: quando adatti un template, verifica che le classi che scrivi
   esistano davvero nel suo foglio di stile.
   Lo stile qui sotto non e' inventato: e' quello di `.pd-highlight` (righe
   632-637 di site.css), il blocco identico delle pagine unita' — stessa
   struttura icona + titolo + testo, stesso design system. */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 44px;
  margin-top: 48px;
}
.amenity { display: flex; gap: 16px; align-items: flex-start; }
.amenity .am-ico {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  background: var(--sand-2); color: var(--gold-ink);
  display: flex; align-items: center; justify-content: center;
}
.amenity .am-ico svg { width: 19px; height: 19px; }
.amenity b { display: block; font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.amenity p { font-size: 13.5px; color: var(--ink-60); line-height: 1.5; }
@media (max-width: 800px) {
  .amenity-grid { grid-template-columns: 1fr; gap: 24px; margin-top: 36px; }
}

/* `.avviso-azioni` e' il contenitore del pulsante nella banda informativa:
   nel CSS non aveva una sola regola e funzionava per caso, perche' il pulsante
   riempiva il blocco. Qui lo si allinea davvero. */
.avviso-azioni { display: flex; align-items: center; justify-content: flex-end; }
@media (max-width: 720px) { .avviso-azioni { justify-content: stretch; } }
