/* ============================================
   GIARDINI DI LUCE — design tokens
   ============================================ */
:root{
  --notte: #16233A;
  --notte-2: #1E3049;
  --tufo: #EDE4D3;
  --tufo-2: #E4D8C1;
  --inchiostro: #2B2118;
  --oro: #C9973E;
  --oro-chiaro: #E3B968;
  --salvia: #8B9A7C;
  --lino: #F6F1E6;

  --display: 'Cormorant', serif;
  --body: 'Archivo', sans-serif;

  --container: 1180px;
  --radius: 2px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body{
  margin:0;
  font-family: var(--body);
  color: var(--inchiostro);
  background: var(--tufo);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
h1,h2,h3{ font-family: var(--display); font-weight: 500; margin: 0 0 .4em; letter-spacing: .01em; }
p{ margin: 0 0 1em; }

.section-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow{
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--oro);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow.light{ color: var(--oro-chiaro); }
.center{ text-align:center; margin-left:auto; margin-right:auto; }

.section-lede{
  max-width: 560px;
  color: #5b4f40;
  font-size: 17px;
}
.section-lede.center{ margin-left:auto; margin-right:auto; }

/* faint film-grain overlay for texture, avoids flat AI gradient look */
.grain{
  position: fixed; inset:0; pointer-events:none; z-index: 500;
  opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================
   BUTTONS
   ============================================ */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 15px 30px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
}
.btn-gold{
  background: var(--oro);
  color: var(--notte);
}
.btn-gold:hover{ background: var(--oro-chiaro); transform: translateY(-2px); }
.btn-ghost{
  background: transparent;
  border-color: rgba(246,241,230,.55);
  color: var(--lino);
}
.btn-ghost:hover{ border-color: var(--lino); transform: translateY(-2px); }
.btn-small{ padding: 10px 20px; font-size: 11px; }

/* ============================================
   HEADER
   ============================================ */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 100;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
  padding: 22px 0;
}
.site-header.scrolled{
  background: rgba(22,35,58,.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
}
.header-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display:flex; align-items:center; justify-content:space-between;
  gap: 24px;
}
.logo{ display:flex; align-items:center; }
.logo-img{ height: 34px; width:auto; display:block; transition: opacity .3s; }
.logo:hover .logo-img{ opacity:.85; }
.footer-logo-img{ height: 30px; margin-bottom: 12px; }
.main-nav{ display:flex; gap: 34px; }
.main-nav a{
  color: var(--lino);
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after{
  content:''; position:absolute; left:0; right:100%; bottom:0; height:1px;
  background: var(--oro);
  transition: right .35s var(--ease);
}
.main-nav a:hover::after{ right:0; }

.header-actions{ display:flex; align-items:center; gap: 18px; }
.nav-toggle{
  display:none;
  flex-direction: column; justify-content:center; gap:5px;
  width: 34px; height:34px; background:none; border:none; cursor:pointer;
}
.nav-toggle span{ display:block; width:100%; height:1.5px; background: var(--lino); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle.open span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

/* mobile nav close button + backdrop */
.mobile-nav-close{
  display:none;
  position:absolute; top: 22px; right: 22px;
  background:none; border:none; color: var(--lino); font-size: 40px; line-height:1;
  cursor:pointer; width:44px; height:44px; align-items:center; justify-content:center;
  border-radius:50%; transition: background .3s;
}
.mobile-nav-close:hover{ background: rgba(244,247,248,.12); }
.nav-backdrop{
  position: fixed; inset:0; background: rgba(10,14,20,.6); z-index: 85;
  opacity:0; visibility:hidden; transition: opacity .4s var(--ease), visibility .4s;
}
.nav-backdrop.open{ opacity:1; visibility:visible; }
body.nav-locked{ overflow: hidden; }

/* ============================================
   HERO
   ============================================ */
.hero{
  position: relative;
  min-height: 100vh;
  display:flex; align-items:flex-end;
  overflow:hidden;
  background: var(--notte);
}
.hero-media{ position:absolute; inset:0; }
.hero-media img{
  width:100%; height:100%; object-fit:cover; object-position: center 78%;
  transform: scale(1.06);
  animation: hero-settle 8s var(--ease) forwards, hero-pan 18s ease-in-out 1s infinite alternate;
}
@keyframes hero-settle{ to{ transform: scale(1); } }
@keyframes hero-pan{
  from { object-position: center 78%; }
  to   { object-position: center 22%; }
}
@media (prefers-reduced-motion: reduce){
  .hero-media img{ animation: none; object-position: center 55%; }
}
.hero-scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(22,35,58,.32) 0%, rgba(22,35,58,.05) 22%, rgba(22,35,58,.1) 42%, rgba(22,35,58,.5) 68%, rgba(22,35,58,.94) 100%);
}
.hero-content{
  position:relative; z-index:2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px 100px;
  width:100%;
  color: var(--lino);
}
.hero-content .eyebrow{ color: var(--oro-chiaro); }
.hero h1{
  font-size: clamp(42px, 6.4vw, 84px);
  line-height: 1.04;
  color: var(--lino);
  max-width: 16ch;
  font-weight: 500;
}
.hero-lede{
  max-width: 480px;
  font-size: 17px;
  color: rgba(246,241,230,.85);
  margin-top: 22px;
  margin-bottom: 34px;
}
.hero-actions{ display:flex; gap:18px; flex-wrap:wrap; }

.scroll-cue{
  position:absolute; bottom: 28px; left:50%; transform:translateX(-50%);
  z-index:2; width: 22px; height: 36px; border: 1px solid rgba(246,241,230,.5); border-radius: 20px;
}
.scroll-cue span{
  position:absolute; top:7px; left:50%; width:3px; height:6px; margin-left:-1.5px;
  background: var(--oro-chiaro); border-radius:2px;
  animation: cue 2s ease-in-out infinite;
}
@keyframes cue{ 0%{ transform: translateY(0); opacity:1;} 70%{ transform: translateY(10px); opacity:0;} 100%{ opacity:0;} }

/* ============================================
   DIVIDER — the "arco di luce" signature device
   ============================================ */
.divider{ height: 40px; background: var(--tufo); }
.divider svg{ width:100%; height:100%; }
.divider path{ fill:none; stroke: var(--oro); stroke-width: 1; opacity:.55; }

.arch-glow{
  position:absolute; inset: -6% -6% -14% -6%;
  border: 1px solid rgba(201,151,62,.35);
  border-bottom: none;
  border-radius: 50% 50% 0 0 / 22% 22% 0 0;
  pointer-events:none;
  box-shadow: 0 0 40px 6px rgba(201,151,62,.18) inset;
}

/* ============================================
   MOOD GRID (inspired by editorial hero-tile pattern)
   ============================================ */
.mood{ padding: 90px 0 20px; }
.mood .section-inner{ margin-bottom: 44px; }
.mood h2{ font-size: clamp(26px,3vw,36px); }
.mood-grid{
  display:grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.mood-tile{
  position:relative; display:block; aspect-ratio: 3/4; overflow:hidden;
  background: var(--notte);
}
.mood-tile img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .8s var(--ease), filter .5s;
  filter: saturate(.96);
}
.mood-tile:hover img{ transform: scale(1.06); }
.mood-tile::after{
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 45%, rgba(22,35,58,.85) 100%);
}
.mood-cap{
  position:absolute; left:26px; right:26px; bottom:24px; z-index:2;
  display:flex; flex-direction:column; gap:4px;
  color: var(--lino);
}
.mood-cap em{ font-family: var(--display); font-style: italic; font-size: 15px; color: var(--oro-chiaro); }
.mood-cap strong{ font-family: var(--display); font-weight:500; font-size: 24px; }

/* ============================================
   RECENSIONI
   ============================================ */
.recensioni{ padding: 90px 0 110px; }
.recensioni h2{ font-size: clamp(26px,3vw,36px); }

.recensioni-badges{
  display:flex; justify-content:center; gap: 18px; flex-wrap:wrap;
  margin-top: 40px;
}
.recensioni-badge{
  display:flex; flex-direction:column; align-items:center; gap:2px;
  padding: 16px 26px; background: var(--lino); border-radius: var(--radius);
  border: 1px solid rgba(43,33,24,.1); min-width: 150px;
  transition: border-color .3s, transform .3s;
}
.recensioni-badge:hover{ border-color: var(--oro); transform: translateY(-2px); }
.recensioni-badge strong{ font-family: var(--display); font-size: 22px; color: var(--inchiostro); }
.recensioni-badge span{ font-size: 12px; letter-spacing:.03em; color:#5b4f40; font-weight:600; }
.recensioni-badge em{ font-style:normal; font-weight:400; opacity:.75; }

.recensioni-carousel{
  display:flex; align-items:center; gap: 14px;
  margin-top: 56px; overflow:hidden;
}
.recensioni-track{
  display:flex; width:100%;
  transition: transform .5s var(--ease);
}
.recensione-card{
  flex: 0 0 calc(100% / 3 - 16px); margin: 0 8px;
  background: var(--lino); border-radius: var(--radius);
  padding: 30px 26px; display:flex; flex-direction:column;
  min-height: 210px;
}
.recensione-card svg{ width:26px; height:26px; color: var(--oro); margin-bottom: 14px; flex-shrink:0; }
.recensione-card p{ font-size: 14.5px; line-height:1.65; color: var(--inchiostro); flex:1; margin:0 0 16px; }
.recensione-source{ font-size:12px; font-weight:600; letter-spacing:.04em; color: var(--oro); text-transform:uppercase; }

.recensioni-carousel .gallery-nav{
  position:static; flex-shrink:0;
  background: var(--lino); border-color: rgba(43,33,24,.15); color: var(--inchiostro);
}
.recensioni-carousel .gallery-nav:hover{ background: var(--tufo-2); }

.recensioni-dots{ display:flex; justify-content:center; gap:8px; margin-top: 24px; }
.recensioni-dot{
  width:8px; height:8px; border-radius:50%; border:none; padding:0;
  background: rgba(43,33,24,.2); cursor:pointer; transition: background .3s, transform .3s;
}
.recensioni-dot.active{ background: var(--oro); transform: scale(1.25); }

@media (max-width: 980px){
  .recensione-card{ flex: 0 0 calc(50% - 16px); }
}
@media (max-width: 640px){
  /* The side arrows eat into the row and push the card past the screen edge.
     On a phone they're awkward to tap anyway, so the dots below take over
     and the card gets the full width back. */
  .recensioni-carousel{ gap: 0; }
  .recensioni-carousel .gallery-nav{ display: none; }
  .recensione-card{ flex: 0 0 calc(100% - 16px); margin: 0 8px; }
  .recensioni-dots{ margin-top: 20px; }
  .recensioni-dot{ width: 9px; height: 9px; }
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switcher{ position:relative; }
.lang-toggle{
  background:none; border: 1px solid rgba(246,241,230,.4); border-radius: var(--radius);
  color: var(--lino); font-family: var(--body); font-size: 12px; font-weight:600;
  letter-spacing:.06em; padding: 7px 12px; cursor:pointer;
  transition: border-color .3s;
}
.lang-toggle:hover{ border-color: var(--oro); }
.lang-list{
  position:absolute; top: calc(100% + 8px); right:0;
  list-style:none; margin:0; padding: 6px;
  background: var(--notte-2); border-radius: var(--radius);
  box-shadow: 0 20px 40px -12px rgba(0,0,0,.45);
  min-width: 150px;
  opacity:0; visibility:hidden; transform: translateY(-6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index: 200;
}
.lang-switcher.open .lang-list{ opacity:1; visibility:visible; transform: translateY(0); }
.lang-option{
  display:block; width:100%; text-align:left; background:none; border:none;
  color: rgba(246,241,230,.85); font-family: var(--body); font-size: 13px;
  padding: 9px 12px; border-radius: 2px; cursor:pointer;
}
.lang-option:hover{ background: rgba(246,241,230,.08); color: var(--lino); }
.lang-option.active{ color: var(--oro-chiaro); font-weight:600; }
.lang-switcher-mobile{ display:none; margin-top: 4px; }
.lang-switcher-mobile .lang-toggle{ border-color: rgba(246,241,230,.3); }
.lang-switcher-mobile .lang-list{ left:0; right:auto; }

/* ============================================
   GALLERIA
   ============================================ */
.galleria{ padding: 90px 0 20px; }
.galleria h2{ font-size: clamp(26px,3vw,36px); }
.galleria-grid{
  margin-top: 48px;
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  grid-auto-flow: dense;
}
.galleria-item{
  position:relative; overflow:hidden; border-radius: var(--radius);
  aspect-ratio: 1/1; cursor: pointer; background: var(--notte);
}
.galleria-item.wide{ grid-column: span 2; aspect-ratio: 2/1; }
.galleria-item img{ width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease); }
.galleria-item:hover img{ transform: scale(1.08); }
.galleria-item::after{
  content:''; position:absolute; inset:0; background: rgba(22,35,58,0); transition: background .3s;
}
.galleria-item:hover::after{ background: rgba(22,35,58,.12); }

/* ============================================
   GUIDED ASSISTANT
   A tree of pre-written answers, no model behind it:
   it cannot invent availability, prices or access codes.
   ============================================ */
.assistant-fab{
  position: fixed; right: 24px; bottom: 92px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  background: var(--oro); color:#fff; border:none; cursor:pointer;
  box-shadow: 0 10px 28px -6px rgba(0,0,0,.4);
  transition: transform .3s var(--ease), background .3s var(--ease);
  animation: whatsapp-in .5s var(--ease) .45s both;
}
.assistant-fab svg{ width: 34px; height: 34px; }
.assistant-fab:hover{ transform: translateY(-3px) scale(1.05); background: var(--oro-chiaro); }

.assistant-panel{
  position: fixed; right: 24px; bottom: 160px; z-index: 950;
  width: min(380px, calc(100vw - 32px));
  max-height: min(540px, calc(100vh - 210px));
  background: var(--lino); border-radius: 6px;
  box-shadow: 0 24px 60px -12px rgba(22,35,58,.42);
  display:flex; flex-direction:column; overflow:hidden;
  opacity:0; visibility:hidden; transform: translateY(12px) scale(.98);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.assistant-panel.open{ opacity:1; visibility:visible; transform: translateY(0) scale(1); }

.assistant-head{
  display:flex; align-items:center; justify-content:space-between;
  padding: 16px 18px; background: var(--notte); color: var(--lino); flex-shrink:0;
}
.assistant-title{ font-family: var(--display); font-size: 16px; font-weight:600; }
.assistant-close{
  background:none; border:none; color: var(--lino); font-size: 26px; line-height:1;
  cursor:pointer; width:30px; height:30px; display:flex; align-items:center; justify-content:center;
  border-radius:50%; transition: background .25s;
}
.assistant-close:hover{ background: rgba(246,241,230,.16); }

.assistant-body{ padding: 18px; overflow-y:auto; }
.assistant-msg{
  font-size: 14.5px; line-height:1.6; color: var(--inchiostro);
  background: var(--tufo); border-radius: 4px; padding: 14px 16px; margin: 0 0 14px;
}
.assistant-msg strong{ font-weight:600; }
.assistant-msg em{ font-size: 13px; color: #6B5D4D; }

.assistant-options{ display:flex; flex-direction:column; gap: 8px; }
.assistant-option{
  text-align:left; background:#fff; border:1px solid rgba(28,36,44,.14);
  border-radius: 4px; padding: 12px 14px; font-family: var(--body);
  font-size: 14px; color: var(--inchiostro); cursor:pointer;
  transition: border-color .25s, background .25s, transform .25s var(--ease);
}
.assistant-option:hover{ border-color: var(--oro); background: var(--tufo); transform: translateX(2px); }

.assistant-actions{ display:flex; flex-direction:column; gap:8px; margin-top: 14px; }
.assistant-action{
  display:block; text-align:center; padding: 12px 16px; border-radius: 4px;
  font-size: 13px; font-weight:600; letter-spacing:.06em; text-transform:uppercase;
  border:1px solid transparent; cursor:pointer; font-family: var(--body);
  transition: transform .25s var(--ease), background .25s;
}
.assistant-action-primary{ background: var(--oro); color:#fff; }
.assistant-action-primary:hover{ background: var(--oro-chiaro); transform: translateY(-1px); }
.assistant-action-wa{ background: rgba(37,211,102,.1); border-color: rgba(37,211,102,.5); color: #1a7a3f; }
.assistant-action-wa:hover{ background: rgba(37,211,102,.18); transform: translateY(-1px); }

.assistant-nav{ margin-top: 14px; }
.assistant-back{
  background:none; border:none; color: #6B5D4D; font-family: var(--body);
  font-size: 13px; cursor:pointer; padding: 6px 0;
}
.assistant-back:hover{ color: var(--oro); }

.assistant-foot{
  margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(43,33,24,.12);
  display:flex; flex-direction:column; gap:6px; align-items:flex-start;
}
.assistant-foot-text{ font-size: 12.5px; color: #6B5D4D; }
.assistant-foot-link{ font-size: 13px; font-weight:600; color: var(--oro); border-bottom:1px solid currentColor; }

body.rtl .assistant-fab, body.rtl .assistant-panel{ right:auto; left: 24px; }
body.rtl .assistant-option{ text-align: right; }
body.rtl .assistant-option:hover{ transform: translateX(-2px); }
body.rtl .assistant-foot{ align-items:flex-end; }

@media (max-width: 760px){
  .assistant-fab{ right: 16px; bottom: 80px; width: 52px; height: 52px; }
  .assistant-fab svg{ width: 30px; height: 30px; }
  .assistant-panel{
    right: 12px; left: 12px; bottom: 144px; width:auto;
    max-height: min(68vh, calc(100vh - 190px));
  }
  body.rtl .assistant-fab{ right:auto; left: 16px; }
  body.rtl .assistant-panel{ right: 12px; left: 12px; }
}

/* ============================================
   MODALS (suite panel + gallery lightbox)
   ============================================ */
.modal-overlay{
  position: fixed; inset:0; z-index: 1000;
  background: rgba(15,20,30,.86);
  display:flex; align-items:center; justify-content:center;
  padding: 24px;
  opacity:0; visibility:hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.modal-overlay.open{ opacity:1; visibility:visible; }
.modal-close{
  position:absolute; top: 18px; right: 22px; z-index: 20;
  background: none; border:none; color: var(--lino);
  font-size: 34px; line-height:1; cursor:pointer; font-family: var(--body);
  width:44px; height:44px; display:flex; align-items:center; justify-content:center;
  border-radius:50%; transition: background .3s;
}
.modal-close:hover{ background: rgba(246,241,230,.12); }

.suite-modal-panel{
  background: var(--tufo); border-radius: var(--radius);
  max-width: 980px; width:100%; max-height: 88vh; overflow-y:auto;
  display:grid; grid-template-columns: 1.15fr 1fr;
  transform: translateY(16px) scale(.98); transition: transform .35s var(--ease);
}
.modal-overlay.open .suite-modal-panel{ transform: translateY(0) scale(1); }

.suite-modal-gallery{ background: var(--notte); position:relative; }
.suite-modal-main{ position:relative; aspect-ratio: 1/1; background: var(--notte); }
.suite-modal-main img{ width:100%; height:100%; object-fit:contain; background: var(--notte); }
.gallery-nav{
  position:absolute; top:50%; transform:translateY(-50%);
  width: 40px; height:40px; border-radius:50%;
  background: rgba(22,35,58,.65); border: 1px solid rgba(246,241,230,.35);
  color: var(--lino); font-size: 22px; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition: background .3s;
}
.gallery-nav:hover{ background: rgba(22,35,58,.9); }
.gallery-nav.prev{ left: 14px; }
.gallery-nav.next{ right: 14px; }
.suite-modal-thumbs{ display:flex; gap:8px; padding: 12px; flex-wrap:wrap; }
.suite-modal-thumbs img{
  width: 56px; height:44px; object-fit:cover; border-radius:2px; cursor:pointer;
  opacity:.55; transition: opacity .25s; border: 1px solid transparent;
}
.suite-modal-thumbs img.active{ opacity:1; border-color: var(--oro); }

.suite-modal-body{ padding: 40px 38px; }
.suite-modal-body h3{ font-size: 28px; margin-bottom: 18px; }
.suite-modal-amenities{ display:flex; flex-wrap:wrap; gap: 10px; margin-bottom: 22px; }
.amenity-chip{
  display:inline-flex; align-items:center; gap:7px;
  background: var(--lino); border: 1px solid rgba(43,33,24,.12);
  border-radius: 20px; padding: 7px 14px 7px 10px;
  font-size: 12.5px; font-weight:600; color: var(--inchiostro);
}
.amenity-chip svg{ width:16px; height:16px; color: var(--oro); flex-shrink:0; }
.suite-modal-body p{ color:#5b4f40; font-size:15px; margin-bottom:26px; }

/* Lightbox */
.lightbox-overlay{ background: rgba(10,14,22,.95); }
.lightbox-img{ max-width: 88vw; max-height: 82vh; object-fit:contain; border-radius: 2px; }
.lightbox-nav{ position:fixed; top:50%; }
.lightbox-nav.prev{ left: 24px; }
.lightbox-nav.next{ right: 24px; }

@media (max-width: 760px){
  .suite-modal-panel{ grid-template-columns: 1fr; max-height: 92vh; }
  .suite-modal-body{ padding: 28px 24px; }
  .galleria-grid{ grid-template-columns: repeat(2,1fr); }
  .galleria-item.wide{ grid-column: span 2; }
}

/* ============================================
   STORIA
   ============================================ */
.storia{ padding: 130px 0 90px; }
.storia-grid{
  display:grid; grid-template-columns: .85fr 1fr; gap: 72px; align-items:center;
}
.storia-media{ position:relative; }
.storia-media img{ width:100%; border-radius: var(--radius); }
.storia-text h2{ font-size: clamp(30px, 3.4vw, 42px); max-width: 12ch; }
.storia-text p{ color:#5b4f40; font-size: 16px; }
.storia-quote{
  margin: 28px 0 0; padding: 20px 0 0 22px;
  border-left: 2px solid var(--oro);
}
.storia-quote p{
  font-family: var(--display); font-style: italic; font-size: 21px;
  color: var(--inchiostro); margin-bottom: 8px; line-height: 1.5;
}
.storia-quote cite{
  display:block; font-style: normal; font-size: 13px; letter-spacing:.04em;
  color: var(--oro); font-weight: 600;
}
body.rtl .storia-quote{ border-left:none; border-right: 2px solid var(--oro); padding: 20px 22px 0 0; }

/* ============================================
   SUITE
   ============================================ */
.suite{ padding: 40px 0 110px; }
.suite-grid{
  display:grid; grid-template-columns: repeat(2, 1fr); gap: 30px;
  margin-top: 56px;
}
.suite-card{
  background: var(--lino);
  border-radius: var(--radius);
  overflow:hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.suite-card:hover{ transform: translateY(-6px); box-shadow: 0 24px 50px -20px rgba(43,33,24,.35); }
.suite-card-media{ aspect-ratio: 4/3; overflow:hidden; position:relative; }
.suite-card-media img{ width:100%; height:100%; object-fit:cover; transition: transform .7s var(--ease); }
.suite-card:hover .suite-card-media img{ transform: scale(1.06); }
.suite-explore{
  position:absolute; right:16px; bottom:16px; z-index:2;
  background: rgba(22,35,58,.82); backdrop-filter: blur(4px);
  color: var(--lino); border: 1px solid rgba(246,241,230,.4); border-radius: var(--radius);
  font-family: var(--body); font-size: 12px; font-weight:600; letter-spacing:.06em; text-transform:uppercase;
  padding: 9px 18px; cursor:pointer;
  opacity:0; transform: translateY(6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), border-color .3s;
}
.suite-card:hover .suite-explore, .suite-explore:focus-visible{ opacity:1; transform:translateY(0); }
.suite-explore:hover{ border-color: var(--oro); }
@media (hover:none){ .suite-explore{ opacity:1; transform:none; } }
.suite-card-body{ padding: 28px 30px 32px; }
.suite-card-body h3{ font-size: 24px; margin-bottom:.3em; }
.suite-card-body h3 .suite-sub{
  /* part of the same name, so it stays inline and in the same colour as the
     rest of the title — only slightly lighter in weight */
  display:inline; font-size: inherit; font-family: inherit; font-style: inherit;
  color: inherit; text-transform: none; letter-spacing: inherit; font-weight: 400;
}
.suite-card-body p{ color:#5b4f40; font-size: 15px; margin-bottom: 18px; }
.suite-link{ font-size:13px; font-weight:600; letter-spacing:.04em; color: var(--inchiostro); border-bottom: 1px solid var(--oro); padding-bottom:2px; }
.suite-link:hover{ color: var(--oro); }

/* ============================================
   SERVIZI (dark section)
   ============================================ */
.servizi{ position:relative; padding: 110px 0; background: var(--notte); overflow:hidden; }
.servizi-bg{
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 60% 45% at 18% 15%, rgba(201,151,62,.16), transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 90%, rgba(139,154,124,.12), transparent 60%);
}
.servizi .section-inner{ position:relative; }
.servizi h2{ color: var(--lino); font-size: clamp(28px,3.2vw,38px); }
.servizi-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 44px 36px;
  margin-top: 60px;
}
.servizio{ text-align:center; color: rgba(246,241,230,.82); }
.servizio-icon{ width: 44px; height:44px; color: var(--oro-chiaro); margin: 0 auto 18px; }
.servizio h3{ color: var(--lino); font-size: 20px; margin-bottom: .5em; }
.servizio p{ font-size: 14px; line-height: 1.65; }

/* ============================================
   DOVE SIAMO
   ============================================ */
.dove-siamo{ padding: 110px 0; }
.dove-grid{ display:grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items:center; }
.dove-text h2{ font-size: clamp(28px,3.2vw,38px); }
.dove-text p{ color:#5b4f40; font-size:16px; max-width: 46ch; }
.dove-note{
  font-size: 14px; opacity: .82; margin-top: -4px;
  padding-left: 14px; border-left: 2px solid var(--oro);
}
.dove-contatti{ display:flex; gap:26px; margin-top: 20px; flex-wrap:wrap; }
.dove-contatti a{ font-weight:600; font-size:14px; border-bottom: 1px solid var(--oro); padding-bottom:2px; }
.dove-map{ border-radius: var(--radius); overflow:hidden; aspect-ratio: 4/3; filter: sepia(.12) saturate(1.05); }
.dove-map iframe{ width:100%; height:100%; border:0; }

/* ============================================
   CONTATTI
   ============================================ */
.contatti{ padding: 40px 0 130px; }
.contatti-grid{ display:grid; grid-template-columns: .8fr 1.2fr; gap: 64px; }
.contatti h2{ font-size: clamp(28px,3.2vw,38px); }
.contact-form{ display:flex; flex-direction:column; gap: 18px; }
.form-row{ display:flex; flex-direction:column; gap:8px; }
.form-row label{ font-size:12px; text-transform:uppercase; letter-spacing:.08em; font-weight:600; color:#5b4f40; }
.form-row input, .form-row textarea{
  border: 1px solid rgba(43,33,24,.2);
  background: var(--lino);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--inchiostro);
  resize: vertical;
  transition: border-color .3s;
}
.form-row input:focus, .form-row textarea:focus{ outline: none; border-color: var(--oro); }
.contact-form .btn{ align-self:flex-start; margin-top: 6px; }
.form-note{ font-size: 13px; color: var(--salvia); min-height: 1em; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer{ background: var(--notte); color: rgba(246,241,230,.75); padding: 64px 0 26px; }
.footer-grid{ display:grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(246,241,230,.12); }
.logo-word.light{ font-family: var(--display); font-style: italic; font-size: 24px; color: var(--lino); }
.footer-brand p{ margin-top: 10px; font-size: 14px; }
.footer-links, .footer-contact{ display:flex; flex-direction:column; gap: 12px; font-size: 14px; }
.footer-links a:hover, .footer-contact a:hover{ color: var(--oro-chiaro); }
.footer-fine{ text-align:center; font-size: 12px; color: rgba(246,241,230,.4); margin: 26px 0 0; }

/* ============================================
   REVEAL ANIMATION
   ============================================ */
.reveal{ opacity:0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in-view{ opacity:1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px){
  .storia-grid, .dove-grid, .contatti-grid{ grid-template-columns: 1fr; gap: 44px; }
  .suite-grid{ grid-template-columns: 1fr; }
  .servizi-grid{ grid-template-columns: repeat(2,1fr); gap: 44px; }
  .mood-grid{ grid-template-columns: repeat(2, 1fr); }
  .mood-tile{ aspect-ratio: 1/1; }
}

@media (max-width: 560px){
  .mood-grid{ grid-template-columns: 1fr; }
  .mood-tile{ aspect-ratio: 4/3; }
}

/* ============================================
   LANGUAGE: CJK / ARABIC TYPE FALLBACKS
   Cormorant/Archivo don't cover these scripts, so we
   swap in matching web fonts site-wide via [lang].
   ============================================ */
html[lang="zh"] body{ font-family: 'Noto Sans SC', var(--body); }
html[lang="zh"] h1, html[lang="zh"] h2, html[lang="zh"] h3,
html[lang="zh"] .logo-word, html[lang="zh"] .mood-cap strong{
  font-family: 'Noto Sans SC', var(--display); font-style: normal; font-weight:600;
}
html[lang="ar"] body{ font-family: 'Noto Naskh Arabic', var(--body); }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3,
html[lang="ar"] .logo-word, html[lang="ar"] .mood-cap strong{
  font-family: 'Noto Naskh Arabic', var(--display); font-style: normal; font-weight:600;
}

/* ============================================
   RTL SUPPORT (Arabic)
   Mirrors layout direction; visuals (photos, arch motif)
   stay as-is on purpose.
   ============================================ */
body.rtl{ direction: rtl; }
body.rtl .header-inner{ flex-direction: row-reverse; }
body.rtl .logo{ flex-direction: row-reverse; }
body.rtl .main-nav{ flex-direction: row-reverse; }
body.rtl .header-actions{ flex-direction: row-reverse; }
body.rtl .hero-content{ text-align: right; }
body.rtl .hero-actions{ flex-direction: row-reverse; justify-content:flex-end; }
body.rtl .storia-grid{ direction: rtl; }
body.rtl .dove-grid, body.rtl .contatti-grid{ direction: rtl; }
body.rtl .dove-contatti{ flex-direction: row-reverse; justify-content:flex-end; }
body.rtl .suite-link{ direction: rtl; }
body.rtl .form-row{ text-align: right; }
body.rtl .lang-list{ right:auto; left:0; text-align:right; }
body.rtl .lang-switcher-mobile .lang-list{ left:auto; right:0; }
body.rtl .footer-grid{ direction: rtl; }
body.rtl .mood-cap{ text-align: right; }
body.rtl .recensioni-carousel{ direction: ltr; }
body.rtl .recensione-card{ text-align: right; direction: rtl; }
body.rtl .whatsapp-fab{ right: auto; left: 24px; }

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-fab{
  position: fixed; right: 24px; bottom: 24px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 28px -6px rgba(0,0,0,.4);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  animation: whatsapp-in .5s var(--ease) .3s both;
}
.whatsapp-fab svg{ width: 40px; height: 40px; }
.whatsapp-fab:hover{ transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 32px -6px rgba(0,0,0,.48); }
@keyframes whatsapp-in{ from{ opacity:0; transform: scale(.6); } to{ opacity:1; transform: scale(1); } }
@media (prefers-reduced-motion: reduce){ .whatsapp-fab{ animation: none; } }

@media (max-width: 760px){
  .whatsapp-fab{ right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-fab svg{ width: 36px; height: 36px; }
  body.rtl .whatsapp-fab{ right: auto; left: 16px; }
}
body.rtl .scroll-cue{ left:50%; }

@media (max-width: 760px){
  .main-nav{
    position: fixed; top: 0; right:0; bottom:0;
    width: min(78vw, 320px);
    background: var(--notte);
    flex-direction: column; align-items:flex-start;
    padding: 100px 36px 40px; gap: 26px;
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    z-index: 90;
  }
  .main-nav.open{ transform: translateX(0); }
  .mobile-nav-close{ display:flex; }
  .nav-toggle{ display:flex; }
  .header-actions .btn-small{ display:none; }
  .lang-switcher-desktop{ display:none; }
  .lang-switcher-mobile{ display:block; }
  .servizi-grid{ grid-template-columns: 1fr; }
  .hero-content{ padding-bottom: 70px; }
  .hero-actions{ flex-direction:column; align-items:flex-start; }
  .btn{ width:100%; }
  .hero-actions .btn{ width:auto; }
}
