/* ================================================================
   RESIDENZA SCALE NAPOLETANE — Main Stylesheet
   Design: Dark editorial, Cormorant Garamond + DM Sans, navy/amber
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

/* ── Variables ───────────────────────────────────────────── */
:root {
  --bg:       #F7F3EC;
  --dark:     #14253A;
  --dark-2:   #0C1A28;
  --accent:   #C8894A;
  --accent-l: #DFA96A;
  --accent-p: #EEC48A;
  --ivory:    #FAF8F3;
  --mid:      #E8DDD0;
  --text:     #14253A;
  --muted:    #7A6E62;
  --line:     rgba(200,137,74,.2);

  --f-head: 'Cormorant Garamond', Georgia, serif;
  --f-body: 'DM Sans', -apple-system, sans-serif;

  --nav-h:  72px;
  --max-w:  1300px;
  --t:      .3s ease;
  --ts:     .6s ease;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--f-body);
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
input, textarea, select { font: inherit; cursor: text; }
address { font-style: normal; }

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--accent); }

/* ── Loader ──────────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
}
.loader-text {
  font-family: var(--f-head); font-size: 1.8rem; font-style: italic;
  color: var(--accent-l); letter-spacing: .15em; opacity: 0;
}
.loader-bar {
  width: 180px; height: 1px;
  background: rgba(255,255,255,.1); position: relative; overflow: hidden;
}
.loader-bar::after {
  content: ''; position: absolute; inset: 0;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  animation: loadBar 1.8s ease forwards;
}
@keyframes loadBar { to { transform: scaleX(1); } }

/* ── Navigation ──────────────────────────────────────────── */
#main-nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 2rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all .6s cubic-bezier(.16,1,.3,1);
  color: #fff;
}
#main-nav.dark {
  background: rgba(20,37,58,.97);
  backdrop-filter: blur(24px);
  padding: 1.1rem 4rem;
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  font-family: var(--f-head); font-size: 1.1rem; font-weight: 400;
  color: #fff; letter-spacing: .15em; text-transform: uppercase;
  line-height: 1.2;
}
.nav-logo em  { font-style: italic; color: var(--accent-l); }
.nav-logo span {
  display: block; font-family: var(--f-body); font-size: .58rem;
  letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-top: 2px;
}
.nav-links {
  display: flex; align-items: center; gap: 2.8rem; list-style: none;
}
.nav-links a {
  font-size: .65rem; font-weight: 400; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.65);
  transition: color .3s;
}
.nav-links a:hover { color: #fff; }
.nav-reserve {
  background: none !important;
  border: 1px solid rgba(255,255,255,.3) !important;
  color: rgba(255,255,255,.85) !important;
  padding: .5rem 1.6rem !important;
  transition: all .3s !important;
  letter-spacing: .2em;
}
.nav-reserve:hover { border-color: var(--accent) !important; color: var(--accent-l) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; padding: 4px; cursor: pointer;
}
.hamburger span {
  display: block; width: 22px; height: 1px;
  background: #fff; transition: all .35s; transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; background: var(--dark);
  z-index: 998; display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  padding: 4rem; opacity: 0; pointer-events: none; transition: opacity .5s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--f-head); font-size: clamp(2.4rem,7vw,4rem);
  font-style: italic; font-weight: 300;
  color: rgba(255,255,255,.65); line-height: 1.2;
  transition: color .3s; display: block;
}
.mobile-menu a:hover { color: #fff; }
.mm-label {
  font-size: .68rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.5rem;
  font-family: var(--f-body); font-weight: 400;
}

/* ── Hero ────────────────────────────────────────────────── */
#hero {
  position: relative; height: 100vh; min-height: 700px;
  display: grid; grid-template-rows: 1fr auto; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.05);
  transition: opacity 2s ease, transform 10s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,37,58,.62) 0%, rgba(20,37,58,.32) 40%, rgba(20,37,58,.88) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 3.5rem 4.5rem; padding-bottom: 5rem;
}
.hero-eyebrow {
  font-size: .62rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--accent-p); font-weight: 400; margin-bottom: 1.8rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--accent); }
.hero-title {
  font-family: var(--f-head);
  font-size: clamp(4rem,9.5vw,8rem);
  font-weight: 300; line-height: .92; color: #fff;
  letter-spacing: -.01em; margin-bottom: 2rem;
}
.hero-title em {
  font-style: italic; display: block; font-size: .55em;
  color: rgba(255,255,255,.5); font-weight: 300;
  letter-spacing: .04em; margin-bottom: .3rem;
}
.hero-sub {
  font-family: var(--f-head); font-size: 1.1rem; font-style: italic;
  font-weight: 300; color: rgba(255,255,255,.58);
  margin-bottom: 2.5rem; max-width: 440px; line-height: 1.6;
}
.hero-actions { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.hero-meta {
  position: absolute; right: 4.5rem; bottom: 5rem;
  z-index: 2; display: flex; flex-direction: column; align-items: flex-end; gap: .6rem;
}
.slide-counter {
  font-family: var(--f-head); font-size: .85rem;
  color: rgba(255,255,255,.4); letter-spacing: .12em;
}
.slide-counter span { color: #fff; font-size: 1.1rem; }
.hero-dots { display: flex; gap: .5rem; margin-top: .5rem; }
.hdot {
  width: 18px; height: 1px; background: rgba(255,255,255,.25);
  cursor: pointer; transition: all .35s;
}
.hdot.on { background: var(--accent); width: 36px; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn-fill {
  display: inline-block; background: var(--accent); color: #fff;
  padding: .85rem 2.4rem; font-size: .65rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  transition: all .35s;
}
.btn-fill:hover { background: var(--accent-l); transform: translateY(-2px); }
.btn-line {
  display: inline-flex; align-items: center; gap: .8rem;
  font-size: .65rem; letter-spacing: .25em; text-transform: uppercase;
  color: #fff; transition: color .3s; font-weight: 400;
}
.btn-line::after { content: ''; width: 30px; height: 1px; background: currentColor; transition: width .4s; }
.btn-line:hover { color: var(--accent-l); }
.btn-line:hover::after { width: 55px; }
.btn-wa {
  display: inline-flex; align-items: center; gap: .8rem;
  background: #25D366; color: #fff;
  padding: .9rem 2.2rem; font-size: .65rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  transition: all .35s;
}
.btn-wa:hover { background: #128C7E; transform: translateY(-2px); }
.btn-outline-light {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.35); color: rgba(255,255,255,.75);
  padding: .85rem 2.2rem; font-size: .65rem; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  transition: all .35s;
}
.btn-outline-light:hover { border-color: var(--accent); color: var(--accent-l); }
.btn-outline-dark {
  display: inline-block;
  border: 1px solid var(--dark); color: var(--dark);
  padding: .85rem 2.2rem; font-size: .65rem; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  transition: all .35s;
}
.btn-outline-dark:hover { border-color: var(--accent); color: var(--accent); }

/* ── Photo placeholder ───────────────────────────────────── */
.ph {
  background: linear-gradient(135deg, var(--dark) 0%, #1e3550 50%, var(--dark-2) 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.18);
  font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
  font-family: var(--f-body); font-weight: 400;
  position: relative; overflow: hidden;
  width: 100%; height: 100%;
}
.ph::after { content: 'Foto in arrivo'; }

/* ── Section labels / eyebrows ───────────────────────────── */
.sec-label {
  font-size: .62rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--accent); font-weight: 400;
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.8rem;
}
.sec-label::before { content: ''; width: 25px; height: 1px; background: var(--accent); }
.sec-label--light { color: var(--accent-l); }
.sec-label--light::before { background: var(--accent-l); }

/* ── Intro strip ─────────────────────────────────────────── */
#intro {
  background: var(--dark); padding: 5rem 4.5rem;
  display: flex; align-items: center; justify-content: center; gap: 4rem;
  border-top: 1px solid var(--line);
}
.intro-quote {
  font-family: var(--f-head); font-size: clamp(1.5rem,2.8vw,2.3rem);
  font-style: italic; font-weight: 300;
  color: rgba(255,255,255,.62); max-width: 720px; line-height: 1.5; text-align: center;
}
.intro-quote strong { color: #fff; font-weight: 400; font-style: normal; }
.intro-divider { width: 1px; height: 80px; background: var(--line); flex-shrink: 0; }

/* ── About ───────────────────────────────────────────────── */
#about { display: grid; grid-template-columns: 55% 45%; min-height: 80vh; }
.about-img-side { position: relative; overflow: hidden; }
.about-img-side .ph,
.about-img-side img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1s ease;
}
.about-img-side:hover .ph,
.about-img-side:hover img { transform: scale(1.03); }
.about-img-overlay { position: absolute; inset: 0; background: rgba(20,37,58,.08); }
.about-img-caption {
  position: absolute; bottom: 2.5rem; left: 2.5rem;
  font-size: .6rem; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.55); font-weight: 400;
}
.about-text-side {
  background: var(--ivory); padding: 7rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.about-num {
  font-family: var(--f-head); font-size: 6rem; font-weight: 300;
  color: var(--mid); line-height: 1; margin-bottom: -.5rem; display: block;
}
.about-heading {
  font-family: var(--f-head); font-size: clamp(2rem,3.8vw,3.2rem);
  font-weight: 400; line-height: 1.12; color: var(--dark); margin-bottom: 1.8rem;
}
.about-heading em { font-style: italic; color: var(--accent); }
.thin-line { width: 40px; height: 1px; background: var(--accent); margin-bottom: 1.8rem; }
.about-body {
  font-size: .9rem; line-height: 1.9; color: var(--muted); margin-bottom: 1.2rem; font-weight: 300;
}
.about-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  margin-top: 2.5rem; border-top: 1px solid var(--line);
}
.astat {
  padding: 1.5rem 0; border-right: 1px solid var(--line);
  padding-right: 1.5rem; margin-right: 1.5rem;
}
.astat:last-child { border: none; margin: 0; padding-right: 0; }
.astat-n {
  font-family: var(--f-head); font-size: 2.2rem; font-weight: 400;
  color: var(--accent); display: block; line-height: 1;
}
.astat-l {
  font-size: .58rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-top: .3rem; display: block;
}

/* ── Rooms section (homepage dark rows) ──────────────────── */
#camere-section { background: var(--dark); }
.rooms-header {
  padding: 6rem 4.5rem 3rem; border-bottom: 1px solid var(--line);
}
.rooms-header h2 {
  font-family: var(--f-head); font-size: clamp(2.4rem,5vw,4rem);
  font-weight: 300; color: #fff; font-style: italic;
}
.room-row {
  display: grid; grid-template-columns: 60% 40%;
  min-height: 380px; border-bottom: 1px solid var(--line);
}
.room-row.rev { grid-template-columns: 40% 60%; }
.room-img-wrap { position: relative; overflow: hidden; min-height: 300px; }
.room-img-wrap .ph,
.room-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.2s ease;
}
.room-row:hover .room-img-wrap .ph,
.room-row:hover .room-img-wrap img { transform: scale(1.04); }
.room-img-overlay { position: absolute; inset: 0; background: rgba(20,37,58,.1); }
.room-info {
  background: var(--dark); padding: 4rem;
  display: flex; flex-direction: column; justify-content: center;
  border-left: 1px solid var(--line);
}
.room-row.rev .room-info { border-left: none; border-right: 1px solid var(--line); }
.room-num {
  font-family: var(--f-head); font-size: 4rem; font-weight: 300;
  color: rgba(255,255,255,.05); line-height: 1; margin-bottom: -.5rem;
}
.room-tag {
  font-size: .6rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--accent); font-weight: 400; margin-bottom: 1rem; display: block;
}
.room-name {
  font-family: var(--f-head); font-size: clamp(1.8rem,3.2vw,2.7rem);
  font-weight: 400; color: #fff; margin-bottom: .3rem;
  font-style: italic; line-height: 1.15;
}
.room-sqm {
  font-size: .7rem; color: rgba(255,255,255,.58);
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.2rem;
}
.room-price-line {
  display: flex; align-items: baseline; gap: .4rem; margin-bottom: 1.5rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid var(--line);
}
.room-price { font-family: var(--f-head); font-size: 1.6rem; color: var(--accent-l); }
.room-period {
  font-size: .62rem; color: rgba(255,255,255,.55);
  letter-spacing: .12em; text-transform: uppercase;
}
.room-desc {
  font-size: .88rem; line-height: 1.85; color: rgba(255,255,255,.42);
  font-weight: 300; margin-bottom: 2rem;
}
.room-features { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.rfeat {
  font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.1);
  padding: .3rem .8rem;
}
.room-cta {
  display: inline-flex; align-items: center; gap: .8rem;
  font-size: .63rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); transition: gap .3s; font-weight: 400;
}
.room-cta::after { content: '→'; }
.room-cta:hover { gap: 1.2rem; }

/* ── Numbers strip ───────────────────────────────────────── */
#numeri {
  background: var(--accent);
  display: grid; grid-template-columns: repeat(4,1fr);
}
.nitem {
  padding: 3.5rem 3rem; border-right: 1px solid rgba(255,255,255,.2);
  display: flex; flex-direction: column; gap: .5rem;
}
.nitem:last-child { border: none; }
.nbig {
  font-family: var(--f-head); font-size: clamp(2.4rem,3.8vw,3.7rem);
  font-weight: 400; color: #fff; line-height: 1;
}
.nsmall {
  font-size: .6rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.65); font-weight: 400;
}

/* ── Parallax feature (cucina / feature section) ─────────── */
#feature {
  position: relative; min-height: 90vh; display: flex; align-items: stretch;
}
.feature-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.feature-bg .ph {
  position: absolute; inset: 0; width: 100%; height: 100%; min-height: 90vh;
}
.feature-bg .ph::after { display: none; }
.feature-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(20,37,58,.9) 42%, rgba(20,37,58,.18) 100%);
}
.feature-content {
  position: relative; z-index: 1; padding: 7rem 4.5rem;
  max-width: 660px; display: flex; flex-direction: column; justify-content: center;
}
.feature-heading {
  font-family: var(--f-head); font-size: clamp(2.4rem,4.8vw,4rem);
  font-weight: 300; line-height: 1.1; color: #fff; margin-bottom: 1.5rem; font-style: italic;
}
.feature-text {
  font-size: .9rem; line-height: 1.9; color: rgba(255,255,255,.5);
  margin-bottom: 2rem; font-weight: 300; max-width: 460px;
}
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; margin-bottom: 2.5rem; max-width: 400px; }
.flist-item {
  font-size: .78rem; color: rgba(255,255,255,.48);
  display: flex; align-items: center; gap: .7rem; font-weight: 300;
}
.flist-item::before { content: ''; width: 4px; height: 4px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

/* ── Services (ivory section) ────────────────────────────── */
#servizi { background: var(--ivory); padding: 7rem 4.5rem; }
.servizi-inner { max-width: 1200px; margin: 0 auto; }
.servizi-head { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 5rem; align-items: end; }
.servizi-head h2 {
  font-family: var(--f-head); font-size: clamp(2.2rem,4vw,3.4rem);
  font-weight: 400; color: var(--dark); font-style: italic; line-height: 1.15;
}
.servizi-head h2 em { color: var(--accent); }
.servizi-head p { font-size: .88rem; line-height: 1.85; color: var(--muted); font-weight: 300; }
.servizi-list {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--line);
}
.sitem {
  padding: 2.5rem 2rem; border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line); transition: background .3s;
}
.sitem:hover { background: rgba(200,137,74,.06); }
.sitem:nth-child(3n) { border-right: none; }
.si-icon { font-size: 1.3rem; margin-bottom: 1rem; display: block; opacity: .7; }
.si-name {
  font-family: var(--f-head); font-size: 1.1rem;
  font-weight: 400; color: var(--dark); margin-bottom: .4rem;
}
.si-desc { font-size: .78rem; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ── Napoli / city mosaic ─────────────────────────────────── */
#napoli-section { background: var(--dark); padding: 7rem 4.5rem; }
.napoli-inner { max-width: 1300px; margin: 0 auto; }
.napoli-head {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem;
}
.napoli-head h2 {
  font-family: var(--f-head); font-size: clamp(2.2rem,4vw,3.4rem);
  font-weight: 300; color: #fff; font-style: italic; margin-top: .8rem;
}
.napoli-head p { font-size: .85rem; color: rgba(255,255,255,.6); max-width: 260px; text-align: right; line-height: 1.7; font-weight: 300; }
.napoli-mosaic { display: grid; grid-template-columns: 1.6fr 1fr 1fr; grid-template-rows: 280px 280px; gap: 3px; }
.bmitem { position: relative; overflow: hidden; }
.bmitem:first-child { grid-row: span 2; }
.bmitem .ph { min-height: 100%; }
.bmitem img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s ease; filter: brightness(.85); }
.bmitem:hover img { transform: scale(1.06); filter: brightness(.95); }
.bmov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,37,58,.82) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 1.5rem 1.8rem;
}
.bmov span { font-family: var(--f-head); font-size: 1rem; color: #fff; font-style: italic; letter-spacing: .04em; }

/* ── Reviews ─────────────────────────────────────────────── */
#recensioni-section { background: var(--bg); padding: 7rem 4.5rem; }
.rec-inner { max-width: 1200px; margin: 0 auto; }
.rec-head { display: grid; grid-template-columns: 1fr auto; align-items: end; margin-bottom: 4rem; gap: 2rem; }
.rec-head h2 {
  font-family: var(--f-head); font-size: clamp(2.2rem,4vw,3.4rem);
  font-weight: 400; color: var(--dark); font-style: italic;
}
.rec-head h2 em { color: var(--accent); }
.rec-score-block {
  display: flex; align-items: center; gap: 1.5rem; padding: 1.5rem 2rem; background: var(--dark);
}
.rec-big { font-family: var(--f-head); font-size: 3rem; font-weight: 300; color: #fff; line-height: 1; }
.rec-stars { color: var(--accent); font-size: 1rem; letter-spacing: .1em; margin-bottom: .3rem; }
.rec-ct { font-size: .65rem; color: rgba(255,255,255,.6); letter-spacing: .12em; text-transform: uppercase; }
.rec-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); }
.rcard { background: var(--bg); padding: 2.5rem 2rem; transition: background .3s; }
.rcard:hover { background: var(--ivory); }
.rq { font-family: var(--f-head); font-size: 4rem; line-height: .8; color: var(--accent); opacity: .3; margin-bottom: .5rem; }
.rtext {
  font-family: var(--f-head); font-size: 1.05rem; font-style: italic;
  font-weight: 300; color: var(--text); line-height: 1.7; margin-bottom: 1.5rem;
}
.rfoot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; border-top: 1px solid var(--line);
}
.rname { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 400; }
.rdate { font-size: .68rem; color: var(--accent); font-style: italic; font-family: var(--f-head); }
.rec-cta { text-align: center; margin-top: 3rem; }

/* ── Booking form (dark section) ────────────────────────── */
#prenota-section {
  background: var(--dark); padding: 8rem 4.5rem;
  position: relative; overflow: hidden;
}
.prenota-deco {
  position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  opacity: .025; font-family: var(--f-head); font-size: 30vw;
  font-weight: 300; color: #fff; line-height: 1; pointer-events: none;
  overflow: hidden; display: flex; align-items: center; justify-content: flex-end; padding-right: 2rem;
}
.prenota-inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 1; }
.prenota-heading {
  font-family: var(--f-head); font-size: clamp(2.4rem,5vw,4rem);
  font-weight: 300; color: #fff; font-style: italic; margin-bottom: .5rem;
}
.prenota-sub { font-size: .85rem; color: rgba(255,255,255,.58); margin-bottom: 3rem; font-weight: 300; }
.bform { border-top: 1px solid var(--line); padding-top: 2.5rem; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.f3  { grid-template-columns: repeat(3,1fr); }
.fg  { display: flex; flex-direction: column; gap: .6rem; }
.fg label {
  font-size: .6rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--accent); font-weight: 400;
}
.fg input,
.fg select,
.fg textarea {
  background: transparent; border: none;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: #fff; padding: .7rem 0;
  font-family: var(--f-body); font-size: .88rem; font-weight: 300;
  outline: none; transition: border-color .3s; width: 100%;
  -webkit-appearance: none; appearance: none;
}
.fg input::placeholder { color: rgba(255,255,255,.18); }
.fg input:focus,
.fg select:focus,
.fg textarea:focus { border-bottom-color: var(--accent); }
.fg select option { background: var(--dark); color: #fff; }
.fg textarea { resize: none; height: 70px; }
.fsubmit {
  margin-top: 1rem; width: 100%;
  background: var(--accent); color: #fff; padding: 1.1rem;
  font-family: var(--f-body); font-size: .68rem; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase; border: none; cursor: pointer;
  transition: all .3s;
}
.fsubmit:hover { background: var(--accent-l); }
.fnote { text-align: center; font-size: .68rem; color: rgba(255,255,255,.2); margin-top: 1.2rem; letter-spacing: .08em; }

/* ── Check-in info strip ──────────────────────────────────── */
.ci-strip { background: var(--dark); }
.ci-inner { max-width: 1300px; margin: 0 auto; padding: 4rem 4.5rem; }
.ci-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 1px solid var(--line); }
.ci-cell {
  padding: 2.5rem; border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: .5rem;
}
.ci-cell:last-child { border: none; }
.ci-label {
  font-size: .58rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--accent); font-weight: 400;
}
.ci-time { font-family: var(--f-head); font-size: 2.2rem; font-weight: 400; color: #fff; line-height: 1; }
.ci-note { font-size: .8rem; color: rgba(255,255,255,.58); font-weight: 300; }

/* ── Location split ──────────────────────────────────────── */
#location-section { display: grid; grid-template-columns: 1fr 1fr; }
.loc-info { background: var(--ivory); padding: 6rem 4.5rem; display: flex; flex-direction: column; justify-content: center; }
.loc-heading {
  font-family: var(--f-head); font-size: clamp(2rem,3.5vw,3rem);
  font-weight: 400; color: var(--dark); font-style: italic;
  margin-bottom: 1.5rem; line-height: 1.15;
}
.loc-text { font-size: .88rem; line-height: 1.88; color: var(--muted); font-weight: 300; margin-bottom: 2.5rem; }
.clist { display: flex; flex-direction: column; gap: 1.2rem; }
.ci-row { display: grid; grid-template-columns: 24px 1fr; gap: 1rem; align-items: start; }
.ci-row-label {
  font-size: .58rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); display: block; margin-bottom: .15rem; font-weight: 400;
}
.ci-row-val { font-size: .85rem; color: var(--text); display: block; line-height: 1.5; font-weight: 300; }
.ci-row-val a { transition: color .3s; }
.ci-row-val a:hover { color: var(--accent); }
.ci-ico { font-size: .9rem; margin-top: .1rem; }
.loc-map .ph { min-height: 100%; }
.loc-map iframe { width: 100%; height: 100%; min-height: 520px; display: block; border: none; filter: grayscale(20%) sepia(15%); }

/* ── Footer ──────────────────────────────────────────────── */
footer { background: var(--dark-2); padding: 0; color: rgba(255,255,255,.7); }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.fc { padding: 4.5rem 3.5rem; border-right: 1px solid rgba(255,255,255,.05); }
.fc:last-child { border: none; }
.f-logo {
  font-family: var(--f-head); font-size: 1.55rem; font-weight: 400;
  color: #fff; letter-spacing: .12em; display: block; margin-bottom: .4rem;
}
.f-logo em { font-style: italic; color: var(--accent-l); }
.f-tagline {
  font-family: var(--f-head); font-size: .9rem; font-style: italic;
  color: rgba(255,255,255,.55); display: block; margin-bottom: 1.2rem;
}
.f-desc, .fc > p { font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.8; font-weight: 300; }
.f-col-title {
  font-size: .6rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.5rem; display: block; font-weight: 400;
}
.fc ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.fc a { font-size: .8rem; color: rgba(255,255,255,.55); transition: color .3s; font-weight: 300; }
.fc a:hover { color: rgba(255,255,255,.75); }
.footer-bottom {
  padding: 1.5rem 3.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.f-copy { font-size: .68rem; color: rgba(255,255,255,.42); font-weight: 300; }
.f-copy em { color: rgba(200,137,74,.7); font-style: normal; }
.footer-legal a { font-size: .68rem; color: rgba(255,255,255,.42); transition: color .3s; }
.footer-legal a:hover { color: rgba(200,137,74,.5); }

/* ── WhatsApp float ──────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 2.2rem; right: 2.2rem;
  display: flex; flex-direction: column; align-items: flex-end; gap: .55rem;
  z-index: 900;
}
.wa-float__btn {
  width: 52px; height: 52px; flex-shrink: 0;
  background: #25D366; border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.35); transition: all .3s;
}
.wa-float__btn:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(37,211,102,.45); }
.wa-float__btn svg { width: 26px; height: 26px; fill: #fff; }
.wa-float__menu {
  display: flex; flex-direction: column; gap: .4rem;
  opacity: 0; transform: translateY(8px) scale(.96);
  pointer-events: none; transition: opacity .22s, transform .22s;
}
.wa-float.open .wa-float__menu {
  opacity: 1; transform: translateY(0) scale(1); pointer-events: auto;
}
.wa-float__option {
  display: flex; align-items: center; gap: .55rem;
  background: #fff; color: #111; text-decoration: none;
  padding: .5rem .9rem; border-radius: 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,.13);
  font-family: var(--f-body); font-size: .8rem; font-weight: 400;
  white-space: nowrap; transition: background .18s, transform .15s;
}
.wa-float__option:hover { background: #f0fdf4; transform: translateX(-3px); }
.wa-float__option svg { flex-shrink: 0; fill: #25D366; }

/* ── Callout dark ────────────────────────────────────────── */
.callout-dark {
  background: var(--dark);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 5rem 4.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap;
}
.callout-dark h2 {
  font-family: var(--f-head); font-size: clamp(1.8rem,3.5vw,2.9rem);
  font-weight: 300; color: #fff; font-style: italic;
}
.callout-dark p { font-size: .88rem; color: rgba(255,255,255,.6); margin-top: .8rem; font-weight: 300; }
.callout-dark__btns { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   INNER PAGES
   ═══════════════════════════════════════════════════════════ */

/* Page hero (inner pages) */
.page-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 72px;
  background: var(--dark);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -40%; right: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,137,74,.06) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.page-hero .container { max-width: var(--max-w); margin: 0 auto; padding: 0 4.5rem; }
.page-hero .sec-label { margin-bottom: 1.4rem; }
.page-hero h1 {
  font-family: var(--f-head); font-size: clamp(2.8rem,7vw,6rem);
  font-weight: 300; line-height: .95; color: #fff; font-style: italic; margin-bottom: 1.2rem;
}
.page-hero p { font-size: .9rem; color: rgba(255,255,255,.42); max-width: 540px; line-height: 1.8; font-weight: 300; }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: .62rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: 2rem;
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color .3s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb svg { width: 10px; height: 10px; opacity: .4; }

/* Section container */
.section { padding: 7rem 4.5rem; }
.section--ivory { background: var(--ivory); }
.section--bg { background: var(--bg); }
.section--dark { background: var(--dark); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 4.5rem; }
.section .container { padding: 0; }

/* Gallery grid */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-item:first-child { grid-column: 1/3; grid-row: 1/3; }
.gallery-item .ph,
.gallery-item img {
  width: 100%; height: 100%; min-height: 200px; object-fit: cover; display: block;
  transition: transform var(--ts);
}
.gallery-item:first-child .ph { min-height: 460px; }
.gallery-item:hover .ph,
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(20,37,58,0);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.gallery-overlay svg { width: 30px; height: 30px; color: #fff; opacity: 0; transform: scale(.85); transition: opacity .3s, transform .3s; }
.gallery-item:hover .gallery-overlay { background: rgba(20,37,58,.4); }
.gallery-item:hover .gallery-overlay svg { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(10,18,30,.96);
  z-index: 9999; display: none; align-items: center; justify-content: center; padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox__wrap { position: relative; max-width: min(90vw,960px); max-height: 90vh; }
.lightbox__img {
  max-width: 100%; max-height: 86vh; object-fit: contain;
  display: block; background: var(--dark);
  min-width: 200px; min-height: 150px;
}
.lightbox__close {
  position: absolute; top: -44px; right: 0;
  color: rgba(255,255,255,.6); font-size: 1.8rem; cursor: pointer; line-height: 1;
  transition: color .3s;
}
.lightbox__close:hover { color: #fff; }
.lightbox__prev,
.lightbox__next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  color: #fff; backdrop-filter: blur(4px); transition: background .3s; cursor: pointer;
}
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,.22); }
.lightbox__prev { left: -60px; }
.lightbox__next { right: -60px; }
.lightbox__prev svg,
.lightbox__next svg { width: 20px; height: 20px; }
.lightbox__counter {
  position: absolute; bottom: -34px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.4); font-size: .8rem;
}

/* ── Room detail: mosaic + info layout ── */
.room-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: start;
  min-height: calc(100vh - 72px);
}

/* LEFT: sticky photo slider */
.room-mosaic {
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.room-mosaic__slides {
  position: relative;
  flex: 1;
  overflow: hidden;
  background: var(--dark);
}
.room-mosaic__slides .rcs-slide {
  position: absolute; inset: 0;
  cursor: pointer; pointer-events: none;
}
.room-mosaic__slides .rcs-slide.rcs-active { pointer-events: auto; }
.room-mosaic__slides .rcs-slide img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s ease;
}
.room-mosaic__slides .rcs-slide.rcs-active:hover img { transform: scale(1.03); }
.room-mosaic__bar {
  display: flex; align-items: center;
  height: 52px; flex-shrink: 0;
  padding: 0 1.2rem; gap: .9rem;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.06);
}
.room-mosaic__bar .rcs-dots {
  flex: 1; display: flex; align-items: center;
  justify-content: center; gap: 3px; overflow: hidden;
}
.room-mosaic__bar .rcs-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,.22); cursor: pointer;
  border: none; padding: 0; flex-shrink: 0;
  transition: background .25s, transform .25s;
}
.room-mosaic__bar .rcs-dot.rcs-active {
  background: var(--accent); transform: scale(1.35);
}
.room-mosaic__btn {
  border: none;
  background: rgba(255,255,255,.1);
  padding: .4rem .9rem;
  font-family: var(--f-body); font-size: .58rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.7); cursor: pointer; font-weight: 400;
  transition: background .2s, color .2s;
  white-space: nowrap; flex-shrink: 0;
  display: flex; align-items: center; gap: .4rem;
}
.room-mosaic__btn:hover { background: rgba(255,255,255,.18); color: #fff; }
.room-mosaic__btn svg { width: 13px; height: 13px; flex-shrink: 0; }

/* RIGHT: scrollable info column */
.room-grid .room-info {
  background: var(--ivory);
  padding: 5rem 4.5rem 6rem;
  border-left: 1px solid var(--line);
}
.room-grid .room-info .breadcrumb { margin-bottom: 2rem; }
.room-info__meta {
  font-size: .58rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); font-weight: 400; display: block; margin-bottom: .7rem;
}
.room-grid .room-info h1 {
  font-family: var(--f-head);
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  font-weight: 300; font-style: italic; color: var(--dark); line-height: 1.05;
  margin-bottom: 1.5rem;
}
.room-grid .room-price-line {
  display: flex; align-items: baseline; gap: .4rem;
  margin-bottom: 2.5rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.room-grid .room-price-line .cur {
  font-family: var(--f-head); font-size: 1.4rem;
  color: var(--accent); font-weight: 300;
}
.room-grid .room-price-line .amt {
  font-family: var(--f-head); font-size: 3rem;
  font-weight: 300; color: var(--dark); line-height: 1;
}
.room-grid .room-price-line .per {
  font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); margin-left: .2rem;
}
.room-grid .room-info .room-desc p {
  font-size: .88rem; line-height: 1.9; color: var(--muted); font-weight: 300;
  margin-bottom: 1.2rem;
}
.room-grid .room-info .room-desc p:last-child { margin-bottom: 0; }
.room-section-label {
  font-size: .56rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--accent); font-weight: 400; display: block;
  margin-top: 2.5rem; margin-bottom: 1.2rem;
}
.room-amenities {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0; border: 1px solid var(--line);
}
.room-amenity {
  display: flex; align-items: center; gap: .75rem;
  padding: .85rem 1rem;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  transition: background .2s;
}
.room-amenity:nth-child(2n) { border-right: none; }
.room-amenity:nth-last-child(-n+2) { border-bottom: none; }
.room-amenity:hover { background: rgba(200,137,74,.04); }
.room-amenity svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent); }
.room-amenity span { font-size: .77rem; font-weight: 400; color: var(--dark); }
.room-details {
  border: 1px solid var(--line);
}
.room-detail-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .8rem 1rem; border-bottom: 1px solid var(--line); gap: 1rem;
}
.room-detail-row:last-child { border-bottom: none; }
.room-detail-row dt {
  font-size: .6rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); font-weight: 400;
}
.room-detail-row dd {
  font-size: .84rem; color: var(--dark); font-weight: 400; text-align: right;
}
.room-booking {
  background: var(--dark); padding: 2rem; margin-top: 2.5rem;
}
.room-booking__price {
  display: flex; align-items: baseline; gap: .4rem;
  margin-bottom: 1.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.room-booking__price .cur {
  font-family: var(--f-head); font-size: 1.2rem; color: rgba(255,255,255,.35);
}
.room-booking__price .amt {
  font-family: var(--f-head); font-size: 3rem; font-weight: 300; color: #fff; line-height: 1;
}
.room-booking__price .per {
  font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-left: .2rem;
}
.room-booking .btn-fill {
  display: block; text-align: center; width: 100%; margin-bottom: .7rem;
}
.room-booking .btn-outline-light {
  display: block; text-align: center; width: 100%;
}

/* ── Room card photo slider (camere listing) ── */
.rcs-track { position: absolute; inset: 0; }
.rcs-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
  opacity: 0; transition: opacity .45s ease;
  pointer-events: none;
}
.rcs-slide.rcs-active { opacity: 1; pointer-events: auto; }
.rcs-bar {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  padding: .65rem 1.2rem;
  background: var(--dark); border-top: 1px solid rgba(255,255,255,.06);
}
.rcs-prev, .rcs-next {
  background: none; border: none; color: rgba(255,255,255,.45); cursor: pointer;
  padding: 0; display: flex; align-items: center;
  transition: color .2s; flex-shrink: 0;
}
.rcs-prev:hover, .rcs-next:hover { color: var(--accent); }
.rcs-prev svg, .rcs-next svg { width: 15px; height: 15px; }
.rcs-dots { display: flex; gap: .45rem; align-items: center; }
.rcs-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,.22); cursor: pointer;
  transition: background .25s, transform .25s; border: none; padding: 0; flex-shrink: 0;
}
.rcs-dot.rcs-active { background: var(--accent); transform: scale(1.3); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: 1.5rem 0; text-align: left;
  font-family: var(--f-head); font-size: 1.1rem; font-weight: 400; font-style: italic;
  color: var(--dark); background: none; border: none; cursor: pointer; transition: color .3s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, transform .3s;
}
.faq-icon svg { width: 12px; height: 12px; color: var(--accent); transition: color .3s; }
.faq-item.open .faq-icon { background: var(--accent); transform: rotate(45deg); border-color: var(--accent); }
.faq-item.open .faq-icon svg { color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer-inner { padding-bottom: 1.5rem; font-size: .88rem; line-height: 1.85; color: var(--muted); font-weight: 300; }
.faq-answer-inner p + p { margin-top: .8rem; }
.faq-section-title {
  font-family: var(--f-head); font-size: 1.6rem; font-weight: 400; color: var(--dark);
  font-style: italic; margin: 3rem 0 .5rem; padding-bottom: .8rem;
  border-bottom: 1px solid var(--mid);
}
.faq-section-title:first-child { margin-top: 0; }

/* Score strip (recensioni page) */
.score-strip { background: var(--dark); padding: 3.5rem 4.5rem; border-bottom: 1px solid var(--line); }
.score-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr; gap: 4rem; align-items: center; }
.score-big { font-family: var(--f-head); font-size: 5rem; font-weight: 300; color: #fff; line-height: 1; text-align: center; }
.score-label { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-top: .3rem; text-align: center; }
.score-bars { display: flex; flex-direction: column; gap: .9rem; }
.sbar-row { display: flex; align-items: center; gap: 1rem; }
.sbar-name { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); width: 110px; flex-shrink: 0; font-weight: 400; }
.sbar-track { flex: 1; height: 1px; background: rgba(255,255,255,.08); position: relative; }
.sbar-fill { position: absolute; top: 0; left: 0; height: 100%; background: var(--accent); }
.sbar-score { font-size: .78rem; color: var(--accent-l); font-family: var(--f-head); width: 28px; text-align: right; flex-shrink: 0; }

/* Review cards (recensioni page) */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); }
.review-card { background: var(--bg); padding: 2.5rem 2rem; transition: background .3s; }
.review-card:hover { background: var(--ivory); }
.review-q { font-family: var(--f-head); font-size: 3.5rem; line-height: .8; color: var(--accent); opacity: .3; margin-bottom: .5rem; }
.review-text {
  font-family: var(--f-head); font-size: 1rem; font-style: italic; font-weight: 300;
  color: var(--text); line-height: 1.72; margin-bottom: 1.4rem;
}
.review-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--line); }
.review-author { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 400; }
.review-date { font-size: .68rem; color: var(--accent); font-style: italic; font-family: var(--f-head); }

/* Contatti page */
.contatti-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.contatti-info { padding: 5rem 4.5rem; background: var(--ivory); }
.contatti-map { position: relative; min-height: 500px; }
.contatti-map .ph { min-height: 100%; }
.contatti-map iframe { width: 100%; height: 100%; border: none; filter: grayscale(20%) sepia(15%); }
.orari-block {
  background: var(--dark); padding: 2.5rem;
  border: 1px solid var(--line); margin-top: 2rem;
}
.orari-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .65rem 0; border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .82rem;
}
.orari-row:last-child { border: none; }
.orari-row .day { color: rgba(255,255,255,.58); font-weight: 300; }
.orari-row .time { color: var(--accent-l); font-family: var(--f-head); font-style: italic; }

/* Place cards (napoli page) */
.places-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); }
.place-card { background: var(--bg); transition: background .3s; }
.place-card:hover { background: var(--ivory); }
.place-card__img { height: 200px; overflow: hidden; position: relative; }
.place-card__img .ph,
.place-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.place-card:hover .place-card__img .ph,
.place-card:hover .place-card__img img { transform: scale(1.05); }
.place-card__body { padding: 1.8rem; }
.place-card__dist { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); font-weight: 400; margin-bottom: .5rem; }
.place-card h4 {
  font-family: var(--f-head); font-size: 1.15rem; font-weight: 400;
  color: var(--dark); margin-bottom: .5rem;
}
.place-card p { font-size: .82rem; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* Transport items */
.transport-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); }
.transport-item {
  padding: 2.2rem; background: var(--dark); display: flex; flex-direction: column; gap: .6rem;
  transition: background .3s;
}
.transport-item:hover { background: rgba(20,37,58,.85); }
.transport-icon { font-size: 1.4rem; opacity: .7; }
.transport-item h4 { font-family: var(--f-head); font-size: 1.1rem; font-weight: 400; color: #fff; }
.transport-item p { font-size: .82rem; color: rgba(255,255,255,.62); line-height: 1.7; font-weight: 300; }

/* Dove siamo / map section */
.map-embed { width: 100%; height: 480px; border: none; display: block; filter: grayscale(20%) sepia(15%); }

/* Legal page */
.legal-body { max-width: 760px; margin: 0 auto; }
.legal-body h2 {
  font-family: var(--f-head); font-size: 1.4rem; font-weight: 400; font-style: italic;
  color: var(--dark); margin: 3rem 0 .8rem; padding-bottom: .5rem;
  border-bottom: 1px solid var(--line);
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p { font-size: .9rem; color: var(--muted); line-height: 1.85; margin-bottom: .8rem; font-weight: 300; }
.legal-body ul { padding-left: 1.2rem; margin-bottom: 1rem; }
.legal-body li { font-size: .9rem; color: var(--muted); line-height: 1.8; margin-bottom: .4rem; font-weight: 300; list-style: disc; }
.legal-body a { color: var(--accent); }
.legal-updated {
  font-size: .72rem; color: var(--accent); letter-spacing: .15em; text-transform: uppercase;
  display: inline-block; margin-bottom: 3rem; font-weight: 400;
}

/* Prenotazione page trust strip */
.trust-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border-top: 1px solid var(--line); }
.trust-item {
  padding: 2.5rem; border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: .5rem;
}
.trust-item:last-child { border: none; }
.trust-num { font-family: var(--f-head); font-size: 1.6rem; font-weight: 400; color: var(--accent); line-height: 1; }
.trust-name { font-size: .78rem; color: #fff; font-weight: 400; }
.trust-desc { font-size: .75rem; color: rgba(255,255,255,.58); font-weight: 300; line-height: 1.6; }

/* Camere index big cards */
.camere-list { display: flex; flex-direction: column; }
.camera-card { display: grid; grid-template-columns: 1fr 1fr; min-height: 55vh; border-bottom: 1px solid var(--line); }
.camera-card.rev { }
.camera-card.rev .camera-card__img { order: 2; }
.camera-card.rev .camera-card__body { order: 1; }
.camera-card__img { position: relative; overflow: hidden; min-height: 360px; }
.camera-card__img .ph,
.camera-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s; }
.camera-card:hover .camera-card__img .ph,
.camera-card:hover .camera-card__img img { transform: scale(1.04); }
.camera-card__body {
  background: var(--ivory); padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.camera-card__body .sec-label { margin-bottom: 1rem; }
.camera-card__body h2 {
  font-family: var(--f-head); font-size: clamp(2rem,3.5vw,2.8rem);
  font-weight: 400; color: var(--dark); font-style: italic; line-height: 1.1; margin-bottom: 1.2rem;
}
.camera-card__body p { font-size: .88rem; color: var(--muted); line-height: 1.85; font-weight: 300; margin-bottom: 2rem; }
.camera-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.camera-meta span { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); font-weight: 400; }
.camera-price { font-family: var(--f-head); font-size: 1.6rem; color: var(--dark); margin-bottom: 1.5rem; }
.camera-price small { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 400; margin-left: .3rem; }

/* Animation classes */
.fade-rise  { opacity: 0; transform: translateY(28px); will-change: opacity,transform; }
.fade-in-el { opacity: 0; will-change: opacity; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1280px) {
  .nav-links { gap: 2rem; }
}
@media (max-width: 1100px) {
  .nav-links { gap: 1.4rem; }
  .nav-links a { letter-spacing: .12em; }
  #main-nav { padding: 1.8rem 2.5rem; }
  #main-nav.dark { padding: 1rem 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  #numeri { grid-template-columns: 1fr 1fr; }
  .nitem:nth-child(2) { border-right: none; }
  .nitem:nth-child(3) { border-top: 1px solid rgba(255,255,255,.2); }
  .room-row, .room-row.rev { grid-template-columns: 1fr 1fr; }
  .room-detail { grid-template-columns: 1fr 340px; }
  .score-inner { grid-template-columns: 1fr; gap: 2rem; }
  .score-big { text-align: left; font-size: 3.5rem; }
  .score-label { text-align: left; }
}
@media (max-width: 900px) {
  #main-nav { padding: 1.2rem 1.5rem; }
  #main-nav.dark { padding: .8rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #about { grid-template-columns: 1fr; }
  .about-img-side { min-height: 55vw; }
  .about-text-side { padding: 4rem 2rem; }
  .room-row, .room-row.rev { grid-template-columns: 1fr; }
  .room-info { border: none; border-top: 1px solid var(--line); padding: 2.5rem 1.5rem; }
  .room-row.rev .room-info { border: none; border-top: 1px solid var(--line); order: 2; }
  .room-row.rev .room-img-wrap { order: 1; }
  .room-img-wrap { min-height: 55vw; }
  #intro { padding: 3rem 1.5rem; flex-direction: column; gap: 2rem; }
  .intro-divider { display: none; }
  #servizi { padding: 5rem 1.5rem; }
  .servizi-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .servizi-list { grid-template-columns: 1fr 1fr; }
  .sitem:nth-child(2n) { border-right: none; }
  #napoli-section { padding: 5rem 1.5rem; }
  .napoli-head { flex-direction: column; gap: 1rem; }
  .napoli-head p { text-align: left; max-width: 100%; }
  .napoli-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .bmitem:first-child { grid-row: span 1; }
  #recensioni-section { padding: 5rem 1.5rem; }
  .rec-head { grid-template-columns: 1fr; gap: 2rem; }
  .rec-grid { grid-template-columns: 1fr; }
  #prenota-section { padding: 5rem 1.5rem; }
  .frow, .f3 { grid-template-columns: 1fr; }
  #location-section { grid-template-columns: 1fr; }
  .loc-info { padding: 4rem 2rem; }
  .loc-map iframe { min-height: 320px; }
  .footer-top { grid-template-columns: 1fr; }
  .fc { border: none; border-bottom: 1px solid rgba(255,255,255,.05); padding: 2.5rem 1.5rem; }
  .footer-bottom { padding: 1.5rem; }
  .hero-content { padding: 2rem 1.5rem 3rem; }
  .hero-meta { right: 1.5rem; bottom: 3rem; }
  .rooms-header { padding: 4rem 1.5rem 2rem; }
  .page-hero .container { padding: 0 1.5rem; }
  .section { padding: 5rem 1.5rem; }
  .callout-dark { padding: 4rem 1.5rem; }
  .room-detail { grid-template-columns: 1fr; }
  .contatti-grid { grid-template-columns: 1fr; }
  .camera-card, .camera-card.rev { grid-template-columns: 1fr; }
  .camera-card.rev .camera-card__img { order: 0; }
  .camera-card.rev .camera-card__body { order: 0; }
  .camera-card__img { min-height: 55vw; }
  .camera-card__body { padding: 3rem 2rem; }
  .transport-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border: none; }
  .ci-grid { grid-template-columns: 1fr; }
  .ci-cell { border-right: none; border-bottom: 1px solid var(--line); }
  .ci-cell:last-child { border: none; }
  .places-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 3.8rem; }
  #numeri { grid-template-columns: 1fr 1fr; }
  .napoli-mosaic { grid-template-columns: 1fr; }
  .rec-grid { grid-template-columns: 1fr; }
  .servizi-list { grid-template-columns: 1fr; }
  .sitem { border-right: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: 1/3; grid-row: auto; }
  .places-grid { grid-template-columns: 1fr; }
  .lightbox__prev { left: 4px; }
  .lightbox__next { right: 4px; }
  .about-stats { grid-template-columns: 1fr; }
  .astat { border-right: none; border-bottom: 1px solid var(--line); padding-right: 0; margin-right: 0; padding-bottom: 1rem; }
  .astat:last-child { border: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ================================================================
   MISSING COMPONENT STYLES — inner page components
   ================================================================ */

/* ── Section padding (modifier classes used standalone, without .section) ── */
.section--ivory { padding-top: 7rem; padding-bottom: 7rem; }
.section--bg    { padding-top: 7rem; padding-bottom: 7rem; }
.section--dark:not(.page-hero) { padding-top: 7rem; padding-bottom: 7rem; }

/* ── Page hero subtitle ── */
.page-hero-sub {
  font-size: .9rem; color: rgba(255,255,255,.42);
  max-width: 560px; line-height: 1.8; font-weight: 300;
  margin-top: .8rem; display: block;
}

/* ── Page hero h1 em accent ── */
.page-hero h1 em { color: var(--accent-l); font-style: italic; }

/* ── Breadcrumb separator ── */
.bc-sep { color: rgba(255,255,255,.22); margin: 0 2px; }

/* ── Mobile menu reserve CTA ── */
.mm-reserve {
  display: inline-block !important;
  font-family: var(--f-body) !important;
  font-size: .65rem !important;
  font-style: normal !important;
  font-weight: 500 !important;
  letter-spacing: .28em !important;
  text-transform: uppercase !important;
  color: var(--accent) !important;
  border: 1px solid rgba(200,137,74,.35) !important;
  padding: .9rem 2.2rem !important;
  line-height: 1 !important;
  margin-top: 2rem;
  transition: background .3s, color .3s !important;
}
.mm-reserve:hover { background: var(--accent) !important; color: #fff !important; }

/* ── Section dark: fallback text colors for unstyled elements ── */
.section--dark:not(.page-hero) > .container > h2 { color: #fff; font-family: var(--f-head); font-weight: 300; font-style: italic; }
.section--dark:not(.page-hero) > .container > h2 em { color: var(--accent-l); font-style: italic; }
.section--dark:not(.page-hero) > .container > p { color: rgba(255,255,255,.42); font-weight: 300; }
.section--dark:not(.page-hero) > .container > .section-header h2 { color: #fff; font-family: var(--f-head); font-weight: 300; font-style: italic; }
.section--dark:not(.page-hero) > .container > .section-header h2 em { color: var(--accent-l); }

/* ── Info card ── */
.info-card {
  background: var(--dark); color: rgba(255,255,255,.6);
  padding: 2rem 2.2rem; border: 1px solid rgba(255,255,255,.07);
}
.info-card h3, .info-card h4 {
  font-family: var(--f-head); font-size: 1.1rem; font-weight: 400;
  color: rgba(255,255,255,.72); font-style: italic; margin-bottom: 1.2rem;
}

/* ── Contact page ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-left  { display: flex; flex-direction: column; gap: 2rem; }
.contact-right { display: flex; flex-direction: column; gap: 2rem; }

.contact-row-item {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,.07);
}
.contact-row-item:last-of-type { border: none; }

.cri-ico { width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px; color: var(--accent); }
.cri-ico svg { width: 20px; height: 20px; display: block; }
.cri-label { font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: .2rem; font-weight: 400; }
.cri-val { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.55; font-weight: 300; }
.cri-val a { color: rgba(255,255,255,.6); transition: color .3s; }
.cri-val a:hover { color: var(--accent-l); }

.map-embed { position: relative; line-height: 0; border: 1px solid var(--line); overflow: hidden; }
.map-embed iframe { display: block; width: 100%; height: 380px; border: 0; }
.map-open-link {
  display: inline-flex; align-items: center; gap: .45rem;
  position: absolute; bottom: 14px; right: 14px;
  background: var(--dark); color: rgba(255,255,255,.65);
  font-family: var(--f-body); font-size: .72rem; font-weight: 400; letter-spacing: .04em;
  padding: .45rem .9rem; border: 1px solid rgba(255,255,255,.12);
  text-decoration: none; transition: color .25s, border-color .25s;
}
.map-open-link:hover { color: #fff; border-color: rgba(255,255,255,.35); }

/* ── Dove siamo page ── */
.location-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.location-desc h2 {
  font-family: var(--f-head); font-size: clamp(2rem,3.8vw,3rem);
  font-weight: 400; color: var(--dark); font-style: italic;
  line-height: 1.15; margin-bottom: 1.5rem;
}
.location-desc h2 em { color: var(--accent); }
.location-desc p { font-size: .9rem; color: var(--muted); line-height: 1.9; font-weight: 300; margin-bottom: 1rem; }

.location-transport h3 {
  font-family: var(--f-head); font-size: 1.6rem; font-weight: 400;
  color: var(--dark); font-style: italic; margin-bottom: 1.5rem;
}

.transport-list { display: flex; flex-direction: column; border: 1px solid var(--line); }
.transport-list .transport-item {
  background: var(--ivory); padding: 1.8rem 2rem;
  border: none; border-bottom: 1px solid var(--line);
  display: flex; align-items: flex-start; gap: 1.2rem;
  transition: background .3s;
}
.transport-list .transport-item:last-child { border-bottom: none; }
.transport-list .transport-item:hover { background: #f0ebe2; }
.transport-list .transport-item h4 { font-family: var(--f-head); font-size: 1.05rem; font-weight: 400; color: var(--dark); margin-bottom: .3rem; }
.transport-list .transport-item p  { font-size: .82rem; color: var(--muted); line-height: 1.7; font-weight: 300; }

.ti-ico { width: 22px; height: 22px; flex-shrink: 0; margin-top: 3px; color: var(--accent); }
.ti-ico svg { width: 22px; height: 22px; display: block; }

.address-card {
  margin-top: 2.5rem; padding: 2rem 2.5rem;
  background: var(--dark); border: 1px solid var(--line);
}
.address-card address { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 2; font-weight: 300; }
.address-card a { color: var(--accent-l); transition: color .3s; }
.address-card a:hover { color: #fff; }

/* ── Dove siamo dark section (dintorni) ── */
.section-header { margin-bottom: 3rem; }
.section-header h2 { font-family: var(--f-head); font-size: clamp(2rem,3.8vw,3rem); font-weight: 300; color: #fff; font-style: italic; margin-top: .6rem; }
.section-header h2 em { color: var(--accent-l); }

.place-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,.07); }
.section--dark .place-cards .place-card,
.section--dark .place-card {
  background: rgba(255,255,255,.03); padding: 2.5rem;
  display: flex; flex-direction: column; gap: .9rem;
  transition: background .3s; border-radius: 0;
}
.section--dark .place-cards .place-card:hover,
.section--dark .place-card:hover { background: rgba(255,255,255,.07); }
.section--dark .place-card > svg { width: 26px; height: 26px; color: var(--accent); flex-shrink: 0; display: block; }
.section--dark .place-card h4 { font-family: var(--f-head); font-size: 1.2rem; font-weight: 400; color: #fff; font-style: italic; }
.section--dark .place-card ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.section--dark .place-card li {
  font-size: .8rem; color: rgba(255,255,255,.62); font-weight: 300;
  padding-left: .9rem; position: relative; line-height: 1.65;
}
.section--dark .place-card li::before {
  content: ''; position: absolute; left: 0; top: .6em;
  width: 3px; height: 3px; background: var(--accent); border-radius: 50%;
}

/* ── Napoli guide page ── */
.guide-container { max-width: 1060px; margin: 0 auto; }
.guide-section { padding-bottom: 4rem; margin-bottom: 4rem; border-bottom: 1px solid var(--line); }
.guide-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.guide-section__header { display: flex; align-items: baseline; gap: 1.2rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.guide-section__header h2 { font-family: var(--f-head); font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 400; color: var(--dark); font-style: italic; }

.tag-pill { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); border: 1px solid rgba(200,137,74,.3); padding: .25rem .85rem; font-weight: 400; white-space: nowrap; }

.place-cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); }
.place-cards-grid .place-card { background: var(--bg); padding: 2rem 1.8rem; display: flex; align-items: flex-start; gap: 1.2rem; transition: background .3s; }
.place-cards-grid .place-card:hover { background: var(--ivory); }

.place-card__ico { width: 22px; height: 22px; flex-shrink: 0; margin-top: 3px; color: var(--accent); }
.place-card__ico svg { width: 22px; height: 22px; display: block; }
.place-card__meta { font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); font-weight: 400; margin-bottom: .35rem; display: block; }
.place-cards-grid .place-card h4 { font-family: var(--f-head); font-size: 1.08rem; font-weight: 400; color: var(--dark); margin-bottom: .35rem; }
.place-cards-grid .place-card p  { font-size: .8rem; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ── CTA strip actions ── */
.ci-strip__actions { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── FAQ page ── */
.faq-container { max-width: 820px; margin: 0 auto; }
.faq-group { margin-bottom: 3.5rem; }
.faq-group h2 {
  font-family: var(--f-head); font-size: 1.5rem; font-weight: 400;
  color: var(--dark); font-style: italic;
  padding-bottom: .8rem; border-bottom: 1px solid var(--mid); margin-bottom: 0;
}
.faq-question svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--accent); transition: transform .35s; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer p { font-size: .88rem; line-height: 1.85; color: var(--muted); font-weight: 300; padding-bottom: 1.4rem; }
.faq-answer p + p { padding-top: .3rem; }
.faq-answer a { color: var(--accent); }

.faq-cta { background: var(--dark); padding: 3rem; border: 1px solid var(--line); margin-top: 3rem; text-align: center; }
.faq-cta h3 { font-family: var(--f-head); font-size: 1.7rem; font-weight: 400; color: #fff; font-style: italic; margin-bottom: .7rem; }
.faq-cta p  { font-size: .88rem; color: rgba(255,255,255,.62); font-weight: 300; margin-bottom: 2rem; }
.faq-cta__actions { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; align-items: center; }

/* ── Booking page ── */
.booking-wrap { max-width: 680px; margin: 0 auto; }
.booking-note {
  font-size: .88rem; color: var(--muted); line-height: 1.85; font-weight: 300;
  padding: 1.4rem 1.6rem; background: rgba(200,137,74,.07);
  border-left: 2px solid var(--accent); margin-bottom: 3rem;
}
.booking-form { margin-bottom: 4rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1.5rem; }
.form-group label { font-size: .6rem; letter-spacing: .28em; text-transform: uppercase; color: var(--accent); font-weight: 400; }
.form-group input,
.form-group select,
.form-group textarea {
  background: transparent; border: none; border-bottom: 1px solid var(--line);
  color: var(--text); padding: .7rem 0;
  font-family: var(--f-body); font-size: .9rem; font-weight: 300;
  outline: none; transition: border-color .3s; width: 100%;
  -webkit-appearance: none; appearance: none; border-radius: 0;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--accent); }
.form-group select option { background: #fff; color: var(--text); }
.form-group textarea { resize: none; height: 90px; }
.req { color: var(--accent); font-size: inherit; }
.form-alt-contact { text-align: center; font-size: .78rem; color: var(--muted); margin-top: 1.2rem; font-weight: 300; }
.form-alt-contact a { color: var(--accent); }

.booking-trust { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.bt-item { background: var(--ivory); padding: 2.5rem 2rem; display: flex; flex-direction: column; gap: .6rem; }
.bt-item svg { width: 26px; height: 26px; color: var(--accent); flex-shrink: 0; }
.bt-item h4 { font-family: var(--f-head); font-size: 1.05rem; font-weight: 400; color: var(--dark); font-style: italic; }
.bt-item p  { font-size: .8rem; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ── Footer address & legal ── */
.fc address { font-style: normal; }
.fc address p { font-size: .8rem; color: rgba(255,255,255,.55); line-height: 1.75; font-weight: 300; margin-bottom: .3rem; }
.fc address a { font-size: .8rem; color: rgba(255,255,255,.55); transition: color .3s; }
.fc address a:hover { color: rgba(255,255,255,.75); }
.footer-legal { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.footer-legal span { font-size: .68rem; color: rgba(255,255,255,.38); }

/* ── Score strip (recensioni page — actual class names used) ── */
.score-strip {
  background: var(--dark); padding: 3rem 0;
  border: 1px solid var(--line); margin-bottom: 3rem;
  display: grid; grid-template-columns: auto 1fr; gap: 4rem; align-items: center;
}
.score-strip__main {
  padding: 2rem 3rem; border-right: 1px solid var(--line);
  text-align: center; min-width: 160px;
}
.score-strip__num {
  font-family: var(--f-head); font-size: 4.5rem; font-weight: 300; color: #fff; line-height: 1;
}
.score-strip__label {
  font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); margin-top: .4rem; font-weight: 400;
}
.score-strip__cats {
  padding: 2rem 3rem 2rem 0;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .8rem 2rem;
}
.score-strip__cat { display: flex; align-items: center; gap: .8rem; }
.score-strip__cat-name {
  font-size: .62rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.6); width: 100px; flex-shrink: 0; font-weight: 400;
}
.score-strip__bar-wrap {
  flex: 1; height: 1px; background: rgba(255,255,255,.08); position: relative;
}
.score-strip__bar {
  position: absolute; top: 0; left: 0; height: 100%; background: var(--accent);
}
.score-strip__cat-val {
  font-size: .78rem; color: var(--accent-l); font-family: var(--f-head);
  width: 28px; text-align: right; flex-shrink: 0;
}

/* ── Review card (recensioni page — actual class names used) ── */
.review-card { background: var(--bg); padding: 2.5rem 2rem; transition: background .3s; }
.review-card:hover { background: var(--ivory); }
.review-card__top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.2rem;
}
.review-card__stars { display: flex; gap: 2px; }
.review-card__stars svg { width: 14px; height: 14px; color: var(--accent); display: block; }
.review-card__score {
  font-family: var(--f-head); font-size: 1.5rem; font-weight: 400;
  color: var(--accent-l); line-height: 1;
}
.review-card__text {
  font-family: var(--f-head); font-size: 1rem; font-style: italic; font-weight: 300;
  color: var(--text); line-height: 1.72; margin-bottom: 1.4rem;
}
.review-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; border-top: 1px solid var(--line); flex-wrap: wrap; gap: .3rem;
}
.review-card__author { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 400; }
.review-card__meta   { font-size: .68rem; color: var(--accent); font-style: italic; font-family: var(--f-head); }

/* ── Room cards grid (camere/index.html) ── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}

.room-card {
  display: flex; flex-direction: column;
  border-right: 1px solid var(--line);
  background: var(--ivory);
  transition: box-shadow .4s;
  overflow: hidden;
}
.room-card:last-child { border-right: none; }
.room-card:hover { box-shadow: 0 12px 48px rgba(20,37,58,.10); z-index: 1; position: relative; }

.room-card__img {
  position: relative; overflow: hidden;
  aspect-ratio: 3 / 4;
}
.room-card__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.4s cubic-bezier(.25,.46,.45,.94);
}
.room-card:hover .room-card__img img { transform: scale(1.05); }

.room-card__badge {
  position: absolute; top: 1.2rem; left: 1.2rem;
  font-size: .58rem; letter-spacing: .2em; text-transform: uppercase;
  color: #fff; background: rgba(20,37,58,.6); backdrop-filter: blur(6px);
  padding: .3rem .8rem; font-weight: 400;
}

.room-card__body {
  padding: 2.2rem 2rem 2rem;
  display: flex; flex-direction: column; flex: 1;
  border-top: 1px solid var(--line);
}

.room-card__num {
  font-family: var(--f-head); font-size: 3.5rem; font-weight: 300;
  color: rgba(20,37,58,.07); line-height: 1; margin-bottom: -.8rem;
  letter-spacing: -.02em;
}

.room-card__name {
  font-family: var(--f-head); font-size: clamp(1.5rem,2.2vw,2rem);
  font-weight: 400; font-style: italic; color: var(--dark);
  line-height: 1.1; margin-bottom: 1rem;
}

.room-card__meta {
  font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); font-weight: 400; margin-bottom: 1rem;
}

.room-card__desc {
  font-size: .84rem; color: var(--muted); line-height: 1.85;
  font-weight: 300; margin-bottom: 1.6rem; flex: 1;
}

.room-card__feats {
  display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 2rem;
}
.room-card__feats li {
  font-size: .58rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line);
  padding: .25rem .65rem; font-weight: 400;
}

.room-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
  margin-top: auto; flex-wrap: wrap;
}

.room-card__price {
  font-family: var(--f-head); font-size: 2rem;
  font-weight: 400; color: var(--accent); line-height: 1;
}
.room-card__price small {
  font-size: .6rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); font-weight: 400; margin-left: .2rem; display: block; margin-top: .2rem;
}

/* ── Responsive additions ── */
@media (max-width: 1100px) {
  .contact-layout   { grid-template-columns: 1fr; gap: 3rem; }
  .location-layout  { grid-template-columns: 1fr; gap: 3rem; }
  .place-cards      { grid-template-columns: 1fr 1fr; }
  .place-cards-grid { grid-template-columns: 1fr 1fr; }
  .booking-trust    { grid-template-columns: 1fr 1fr; }
  .score-strip      { grid-template-columns: 1fr; }
  .score-strip__main { border-right: none; border-bottom: 1px solid var(--line); }
  .score-strip__cats { padding: 2rem; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1050px) {
  .room-grid { grid-template-columns: 1fr 1fr; }
  .room-grid .room-info { padding: 4rem 3rem 5rem; }
}
@media (max-width: 900px) {
  .section--ivory               { padding-top: 5rem; padding-bottom: 5rem; }
  .section--bg                  { padding-top: 5rem; padding-bottom: 5rem; }
  .section--dark:not(.page-hero){ padding-top: 5rem; padding-bottom: 5rem; }
  .form-grid                    { grid-template-columns: 1fr; }
  .place-cards                  { grid-template-columns: 1fr; }
  .place-cards-grid             { grid-template-columns: 1fr; }
  .booking-trust                { grid-template-columns: 1fr; }
  .bt-item                      { border-bottom: 1px solid var(--line); }
  .faq-cta                      { padding: 2rem 1.5rem; }
  .faq-cta__actions             { flex-direction: column; }
  .score-strip__cats            { grid-template-columns: 1fr; padding: 1.5rem; }
  .rooms-grid { grid-template-columns: 1fr; }
  .room-card { border-right: none; border-bottom: 1px solid var(--line); }
  .room-card:last-child { border-bottom: none; }
  .room-card__img { aspect-ratio: 16 / 9; }
  .room-card__body { padding: 2rem 1.5rem; }
  .room-grid { grid-template-columns: 1fr; }
  .room-mosaic { position: static; height: auto; }
  .room-mosaic__slides { height: 70vw; min-height: 320px; max-height: 560px; }
  .room-grid .room-info { border-left: none; border-top: 1px solid var(--line); padding: 3.5rem 2rem 5rem; }
  .room-amenity:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .room-amenity:nth-last-child(-n+2):nth-child(2n) { border-bottom: none; }
}
@media (max-width: 600px) {
  .place-cards-grid { grid-template-columns: 1fr; }
  .guide-section__header { flex-direction: column; gap: .6rem; }
  .transport-list .transport-item { padding: 1.4rem; }
  .score-strip__main { padding: 1.5rem; }
  .room-mosaic__slides { height: 80vw; max-height: none; }
  .room-grid .room-info { padding: 2.5rem 1.5rem 4rem; }
  .room-amenities { grid-template-columns: 1fr; }
  .room-amenity { border-right: none !important; }
  .room-amenity:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .room-amenity:last-child { border-bottom: none; }
}

/* ── Camera detail: amenity list ── */
.amenity-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); margin-bottom: 2.5rem; }
.amenity-list li {
  display: flex; align-items: center; gap: .85rem;
  padding: .85rem 1.2rem; border-bottom: 1px solid var(--line);
  font-size: .84rem; color: var(--text); font-weight: 300; line-height: 1.4;
}
.amenity-list li:nth-last-child(-n+2) { border-bottom: none; }
.amenity-list li svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--accent); display: block; }

/* ── Camera detail: info-row svg + label aliases ── */
.info-row svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--accent); display: block; margin-top: 2px; }
.ir-label { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: .15rem; font-weight: 400; }
.ir-val   { font-size: .85rem; color: rgba(255,255,255,.65); font-weight: 300; }

/* ── Camera detail: pricing price aliases ── */
.pr-cur { font-family: var(--f-head); font-size: 1.2rem; color: rgba(255,255,255,.4); }
.pr-amt { font-family: var(--f-head); font-size: 3rem; font-weight: 300; color: #fff; line-height: 1; }
.pr-per { font-size: .72rem; color: rgba(255,255,255,.55); letter-spacing: .12em; text-transform: uppercase; margin-left: .3rem; align-self: flex-end; padding-bottom: .3rem; }

/* ── Camera detail: pricing-feats svg ── */
.pricing-feats li { position: static; }
.pricing-feats li::before { display: none; }
.pricing-feats li svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--accent); display: block; }

/* ── Cookie banner ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9990;
  background: var(--dark); border-top: 1px solid rgba(200,137,74,.25);
  padding: 1.2rem 2rem; transform: translateY(0);
  transition: transform .4s ease, opacity .4s ease;
}
#cookie-banner.cb-hidden { transform: translateY(110%); opacity: 0; pointer-events: none; }
.cb-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.cb-text {
  font-family: var(--f-body); font-size: .78rem; color: rgba(255,255,255,.45);
  font-weight: 300; line-height: 1.6; flex: 1; min-width: 220px;
}
.cb-text a { color: var(--accent-l); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s; }
.cb-text a:hover { border-bottom-color: var(--accent-l); }
.cb-actions { display: flex; gap: .7rem; flex-shrink: 0; }
.cb-accept {
  font-family: var(--f-body); font-size: .65rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  background: var(--accent); color: #fff; border: none;
  padding: .65rem 1.4rem; cursor: pointer; transition: background .25s;
}
.cb-accept:hover { background: var(--accent-l); }
.cb-refuse {
  font-family: var(--f-body); font-size: .65rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  background: transparent; color: rgba(255,255,255,.3);
  border: 1px solid rgba(255,255,255,.12);
  padding: .65rem 1.2rem; cursor: pointer; transition: color .25s, border-color .25s;
}
.cb-refuse:hover { color: rgba(255,255,255,.65); border-color: rgba(255,255,255,.3); }
@media (max-width: 600px) {
  #cookie-banner { padding: 1.2rem 1.2rem; }
  .cb-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cb-actions { width: 100%; }
  .cb-accept, .cb-refuse { flex: 1; text-align: center; }
}

/* ── Offerta famiglie e gruppi ───────────────────────────── */
#offerta-gruppi {
  background: var(--bg);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
#offerta-gruppi::before {
  content: 'GRUPPI';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-head);
  font-size: clamp(5rem, 18vw, 15rem);
  font-weight: 600;
  letter-spacing: .08em;
  color: rgba(200,137,74,.06);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}
.og-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.og-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  padding: .4rem 1.2rem;
  margin-bottom: 1.8rem;
}
.og-heading {
  font-family: var(--f-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.og-heading em { color: var(--accent); font-style: italic; }
.og-sub {
  font-size: .95rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}
.og-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.og-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 2.8rem 2rem 2.4rem;
  text-align: left;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.og-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(20,37,58,.09);
}
.og-card--highlight {
  background: var(--dark);
  border-color: var(--dark);
}
.og-card--highlight .og-card__label,
.og-card--highlight .og-card__title,
.og-card--highlight .og-card__desc {
  color: rgba(255,255,255,.75);
}
.og-card--highlight .og-card__price {
  color: var(--accent-p);
}
.og-card__tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: .3rem .9rem;
  margin-bottom: 1.4rem;
}
.og-card__label {
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: .5rem;
}
.og-card__title {
  font-family: var(--f-head);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 1.2rem;
  line-height: 1.25;
}
.og-card__price {
  font-family: var(--f-head);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.og-card__desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
}
.og-note {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: .82rem;
  color: var(--muted);
  text-align: left;
  line-height: 1.6;
}
.og-cta {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .og-cards { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 600px) {
  #offerta-gruppi { padding: 5rem 0; }
  .og-cta { flex-direction: column; align-items: center; }
  .og-cta .btn-fill, .og-cta .btn-outline-dark { width: 100%; text-align: center; }
}

/* ── WhatsApp dual-contact popup ────────────────────────────── */
.wa-popup {
  position: fixed;
  bottom: 88px;
  right: 22px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(20,37,58,.18);
  padding: .5rem 0;
  z-index: 9999;
  min-width: 230px;
  opacity: 0;
  transform: translateY(8px) scale(.97);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.wa-popup.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-popup__title {
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #999;
  padding: .55rem 1.1rem .4rem;
  font-family: var(--f-body);
  font-weight: 500;
}
.wa-popup__item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1.1rem;
  text-decoration: none;
  transition: background .18s;
  cursor: pointer;
}
.wa-popup__item:hover { background: #f5f5f5; }
.wa-popup__ico {
  width: 36px; height: 36px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wa-popup__ico svg { width: 18px; height: 18px; fill: #fff; }
.wa-popup__name {
  font-size: .82rem;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.2;
}
.wa-popup__number {
  font-size: .72rem;
  color: #888;
  margin-top: .1rem;
}

/* ── Price tax badge ─────────────────────────────────────────── */
.price-tax-note {
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: block;
}

/* ── Price preview ───────────────────────────────────────────── */
.pp-row { display:flex; justify-content:space-between; align-items:baseline; gap:.5rem; }
.pp-label { font-size:.82rem; color:var(--dark); font-weight:500; }
.pp-total { font-size:1.3rem; font-weight:600; color:var(--accent); font-family:'Cormorant Garamond',serif; letter-spacing:-.01em; }
.pp-note { font-size:.72rem; color:var(--muted); margin-top:.35rem; }
#prenota-section .pp-label { color:rgba(255,255,255,.85); }
#prenota-section .pp-total { color:#C8894A; }
#prenota-section .pp-note { color:rgba(255,255,255,.5); }

/* ── Storia architettonica ───────────────────────────────────── */
#storia-section {
  background: var(--dark);
  color: #fff;
  padding: 7rem 0;
}
.storia-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.storia-text .sec-label { color: var(--accent); margin-bottom: 1.2rem; }
.storia-text h2 { color: #fff; font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 1.5rem; line-height: 1.15; }
.storia-intro { font-size: 1.05rem; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 1.5rem; }
.storia-quote {
  border-left: 3px solid var(--accent);
  padding: .8rem 1.2rem;
  margin: 0 0 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.12rem;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
}
.storia-text p { font-size: .95rem; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 1.5rem; }
.storia-text strong { color: rgba(255,255,255,.9); font-weight: 500; }
.storia-text em { color: rgba(255,255,255,.8); font-style: italic; }
.storia-data {
  display: flex;
  gap: 2rem;
  margin: 2rem 0 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.storia-dato { display: flex; flex-direction: column; gap: .25rem; }
.sd-val { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--accent); font-weight: 500; line-height: 1; }
.sd-lab { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.storia-credits {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  margin-bottom: 2rem;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.oda-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem 1.2rem;
  border: 1px solid rgba(200,137,74,.4);
  border-radius: 6px;
  text-decoration: none;
  color: var(--accent);
  font-size: .78rem;
  letter-spacing: .05em;
  transition: background .2s, border-color .2s;
}
.oda-badge:hover { background: rgba(200,137,74,.1); border-color: var(--accent); }
.oda-badge strong { font-weight: 500; }
.storia-imgs { display: flex; flex-direction: column; gap: 1rem; position: sticky; top: 6rem; }
.storia-img-main { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.storia-img-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.storia-img-sec { border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; }
.storia-img-sec img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) {
  .storia-inner { grid-template-columns: 1fr; gap: 3rem; }
  .storia-imgs { position: static; }
  .storia-img-main { aspect-ratio: 16/9; }
}

/* ── Language toggle button ─────────────────────────────── */
.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  font-size: .72rem;
  letter-spacing: .12em;
  font-weight: 500;
  padding: .35rem .75rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
}
.lang-btn:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
#main-nav.scrolled .lang-btn { color: var(--dark); border-color: rgba(20,37,58,.35); }
#main-nav.scrolled .lang-btn:hover { background: rgba(20,37,58,.08); }
.lang-btn--mobile {
  display: block;
  margin-top: 1.2rem;
  font-size: .8rem;
  letter-spacing: .18em;
  padding: .55rem 1.4rem;
  border-color: rgba(255,255,255,.25);
  width: fit-content;
}
