/* ============================================================
   Tavolara Suites — Stylesheet
   Inspired by editorial luxury hospitality aesthetics.
   ============================================================ */

:root {
  --ink: #161616;
  --ink-soft: #2c2c2c;
  --stone: #6b6358;
  --bone: #faf8f3;
  --sand: #ede4d3;
  --shell: #f5efe3;
  --gold: #b08d57;
  --gold-soft: #c8a979;
  --line: rgba(22, 22, 22, 0.12);
  --shadow: 0 30px 80px rgba(22, 22, 22, 0.08);
  --maxw: 1320px;
  --gut: clamp(1.25rem, 4vw, 3.5rem);
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --transition: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color .35s var(--transition); }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  line-height: 1.12;
}

h1 { font-size: clamp(2.6rem, 6vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }

p { margin: 0 0 1.2em; }

.container {
  width: 100%;
  max-width: var(--maxw);
  padding: 0 var(--gut);
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
  margin-bottom: 3px;
}

.lead {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  line-height: 1.5;
  color: var(--ink-soft);
  font-style: italic;
}

/* ======== HEADER ======== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: all .45s var(--transition);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: nowrap;
}
.site-header.is-light { color: #fff; }
.site-header.is-scrolled {
  background: rgba(250, 248, 243, 0.96);
  backdrop-filter: blur(14px);
  color: var(--ink);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}

.brand {
  display: flex; flex-direction: column; line-height: 1;
  flex-shrink: 0;
}
.brand-mark {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.4vw + 0.4rem, 1.65rem);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.7;
  white-space: nowrap;
}

.nav {
  display: flex; align-items: center;
  gap: clamp(0.9rem, 1.4vw, 2rem);
  flex-wrap: nowrap;
}
.nav a {
  font-size: clamp(0.7rem, 0.4vw + 0.62rem, 0.78rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  white-space: nowrap;
}
.nav a.is-cta {
  border: 1px solid currentColor;
  padding: 0.8rem 1.4rem;
}
.nav a.is-cta:hover { background: var(--ink); border-color: var(--ink); color: #fff; }

.site-header.is-light .nav a.is-cta:hover { background: #fff; color: var(--ink); border-color: #fff; }

.nav-toggle {
  display: none;
  background: none; border: none; color: inherit; cursor: pointer;
  padding: 0.5rem; font: inherit;
}
.nav-toggle span {
  display: block; width: 26px; height: 1px; background: currentColor; margin: 6px 0;
  transition: transform .35s var(--transition);
}

/* Mobile breakpoint alzato a 1100px per dare spazio a tutte le voci + lang switch */
@media (max-width: 1100px) {
  .nav { display: none; }
  .nav.is-open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bone); color: var(--ink);
    padding: 2rem var(--gut); gap: 1.4rem;
    border-bottom: 1px solid var(--line);
    flex-wrap: wrap;
  }
  .nav-toggle { display: block; }
  .site-header.is-light:not(.is-scrolled) .nav.is-open { color: var(--ink); }
  .site-header.is-light:not(.is-scrolled) .nav.is-open a { color: var(--ink); }
}

/* Mobile small */
@media (max-width: 480px) {
  .brand-sub { display: none; }
  .site-header { padding: 1rem 0; }
  .brand-mark { font-size: 1.05rem; }
}

/* ======== HERO ======== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  animation: kenburns 22s ease-out forwards;
}
@keyframes kenburns {
  to { transform: scale(1.16) translate(-1.5%, -1%); }
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.65) 100%);
  z-index: 0;
}
.hero .container {
  position: relative; z-index: 1;
  padding-top: 8rem; padding-bottom: 5rem;
}
.hero .eyebrow { color: var(--gold-soft); }
.hero h1 { color: #fff; max-width: 16ch; }
.hero-tag {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  max-width: 36ch;
  margin-top: 1rem;
  opacity: 0.95;
}
.hero-cta {
  margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap;
}
.hero-scroll {
  position: absolute; bottom: 1.6rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  z-index: 2;
}
.hero-scroll::after {
  content: ""; display: block; width: 1px; height: 36px;
  background: rgba(255,255,255,0.6);
  margin: 0.6rem auto 0;
  animation: scrollHint 2.4s var(--transition) infinite;
}
@keyframes scrollHint {
  0%,100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.4); }
}

/* ======== BUTTONS ======== */
.btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 1.05rem 2.2rem;
  font-size: 0.74rem; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 500;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  transition: all .4s var(--transition);
}
.btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-light { color: #fff; border-color: #fff; }
.btn-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ======== SECTIONS ======== */
section { padding: clamp(4rem, 8vw, 8rem) 0; position: relative; }
.section-head { max-width: 760px; margin-bottom: 4rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.divider { width: 40px; height: 1px; background: var(--gold); margin: 1.6rem 0; }
.section-head.center .divider { margin-left: auto; margin-right: auto; }

/* ======== INTRO ======== */
.intro {
  background: var(--bone);
  position: relative;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.intro-grid p { font-size: 1.05rem; }
.intro-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.intro-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 800px) { .intro-grid { grid-template-columns: 1fr; } }

/* ======== PROPERTIES ======== */
.properties { background: var(--shell); }
.property-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media (max-width: 800px) { .property-grid { grid-template-columns: 1fr; } }

.property-card {
  background: var(--bone);
  display: flex; flex-direction: column;
  transition: transform .55s var(--transition), box-shadow .55s var(--transition);
}
.property-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.property-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.property-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--transition);
}
.property-card:hover .property-card-img img { transform: scale(1.06); }
.property-card-tag {
  position: absolute; top: 1.4rem; left: 1.4rem;
  background: rgba(255,255,255,0.92);
  padding: 0.4rem 1rem;
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink);
}
.property-card-body {
  padding: 2.2rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.property-meta {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.6rem;
}
.property-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.property-card-body h3 { margin-bottom: 0; }
.property-card-body p { color: var(--ink-soft); margin-bottom: 1rem; }
.property-card-link {
  font-size: 0.74rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  border-bottom: 1px solid var(--gold);
  align-self: flex-start;
  padding-bottom: 4px;
}

/* ======== EXPERIENCES ======== */
.experiences { background: var(--bone); }
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) { .exp-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .exp-grid { grid-template-columns: 1fr; } }

.exp-card {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  display: flex; align-items: flex-end;
  color: #fff;
}
.exp-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--transition);
}
.exp-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.7) 100%);
}
.exp-card:hover img { transform: scale(1.07); }
.exp-card-body {
  position: relative; z-index: 1;
  padding: 2rem;
}
.exp-card-body h3 { color: #fff; margin-bottom: 0.2rem; }
.exp-card-body p { font-size: 0.85rem; opacity: 0.9; margin-bottom: 0; }

/* ======== GALLERY ======== */
.gallery-section { background: var(--ink); color: #fff; }
.gallery-section .eyebrow { color: var(--gold-soft); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.gallery-grid figure { margin: 0; overflow: hidden; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--transition); }
.gallery-grid figure:hover img { transform: scale(1.05); }
.g1 { grid-column: span 7; aspect-ratio: 16/10; }
.g2 { grid-column: span 5; aspect-ratio: 4/5; }
.g3 { grid-column: span 4; aspect-ratio: 1/1; }
.g4 { grid-column: span 4; aspect-ratio: 1/1; }
.g5 { grid-column: span 4; aspect-ratio: 1/1; }
.g6 { grid-column: span 6; aspect-ratio: 16/10; }
.g7 { grid-column: span 6; aspect-ratio: 16/10; }
.g8 { grid-column: span 6; aspect-ratio: 4/5; }
.g9 { grid-column: span 6; aspect-ratio: 4/5; }
@media (max-width: 800px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .g1, .g2, .g3, .g4, .g5, .g6, .g7, .g8, .g9 { grid-column: span 1; aspect-ratio: 1/1; }
}

/* ======== LOCATION ======== */
.location { background: var(--sand); }
.location-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
@media (max-width: 800px) { .location-grid { grid-template-columns: 1fr; } }
.location-list {
  list-style: none; padding: 0; margin: 2rem 0 0;
  display: grid; gap: 0.9rem;
}
.location-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(22,22,22,0.15);
  font-size: 0.95rem;
}
.location-list li span:last-child {
  font-family: var(--serif); font-style: italic; color: var(--stone);
  letter-spacing: 0.04em;
}
.location-img { aspect-ratio: 4/5; overflow: hidden; }
.location-img img { width: 100%; height: 100%; object-fit: cover; }

/* ======== TESTIMONIALS ======== */
.testimonials { text-align: center; background: var(--bone); }
.testimonials blockquote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2.4rem);
  font-style: italic;
  line-height: 1.4;
  max-width: 30ch;
  margin: 0 auto 2rem;
  color: var(--ink-soft);
}
.testimonials cite {
  font-style: normal;
  font-size: 0.74rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--stone);
}
.stars { color: var(--gold); letter-spacing: 0.3em; margin-bottom: 1.6rem; font-size: 0.85rem; }

/* ======== CTA BANNER ======== */
.cta-banner {
  position: relative; padding: clamp(5rem, 10vw, 10rem) 0;
  color: #fff; text-align: center;
  background: var(--ink);
  overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("../../Foto/Tramonto2.jpg");
  background-size: cover; background-position: center;
  opacity: 0.45;
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #fff; }

/* ======== FOOTER ======== */
.site-footer {
  background: #111; color: #ccc;
  padding: 5rem 0 1.5rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 4rem;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  font-family: var(--sans);
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 1.4rem; font-weight: 500;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; }
.footer-grid a { color: #ccc; }
.footer-grid a:hover { color: var(--gold-soft); }
.footer-brand .brand-mark { color: #fff; font-size: 1.9rem; }
.footer-brand p { margin-top: 1rem; line-height: 1.7; max-width: 28ch; opacity: 0.8; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.78rem; opacity: 0.7;
}

/* ======== AMENITIES (property pages) ======== */
.amenities-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 2rem;
  margin: 3rem 0;
}
@media (max-width: 800px) { .amenities-grid { grid-template-columns: 1fr 1fr; } }
.amenity {
  display: flex; flex-direction: column; gap: 0.4rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}
.amenity-icon {
  font-family: var(--serif); font-size: 1.8rem; color: var(--gold);
  margin-bottom: 0.4rem;
}
.amenity-label {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--stone);
}
.amenity-value {
  font-family: var(--serif); font-size: 1.2rem; color: var(--ink);
}

/* ======== STATS ======== */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 3rem 0;
  margin: 4rem 0;
  text-align: center;
}
@media (max-width: 700px) { .stats { grid-template-columns: 1fr 1fr; gap: 2rem 0; } }
.stat-num {
  font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.6rem); color: var(--gold);
  display: block; line-height: 1;
}
.stat-label {
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--stone);
  margin-top: 0.6rem; display: block;
}

/* ======== BLOG ======== */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card-img { aspect-ratio: 16/11; overflow: hidden; margin-bottom: 1.5rem; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--transition); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-meta {
  font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.8rem; display: flex; gap: 1.4rem;
}
.blog-card h3 { font-size: 1.5rem; }

article.post { max-width: 760px; margin: 0 auto; padding-top: 8rem; }
article.post h1 { margin-top: 1rem; }
article.post .post-hero { aspect-ratio: 16/9; overflow: hidden; margin: 2.5rem 0 3rem; }
article.post .post-hero img { width: 100%; height: 100%; object-fit: cover; }
article.post p { font-size: 1.08rem; }
article.post h2 { font-size: 2rem; margin-top: 2.4rem; }
article.post h3 { font-size: 1.4rem; margin-top: 2rem; }
article.post ul, article.post ol { padding-left: 1.4rem; }
article.post li { margin-bottom: 0.6rem; }

/* ======== FAQ ======== */
.faq-list { max-width: 920px; margin: 0 auto; }
details {
  border-bottom: 1px solid var(--line);
  padding: 1.6rem 0;
}
details summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--serif); font-size: 1.4rem;
  padding-right: 1rem;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "+"; font-size: 1.6rem; color: var(--gold);
  transition: transform .3s var(--transition);
  margin-left: 1rem;
}
details[open] summary::after { transform: rotate(45deg); }
details > div { padding-top: 1rem; color: var(--ink-soft); }

/* ======== CONTACT ======== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info dl { display: grid; gap: 1.5rem; margin: 2rem 0; }
.contact-info dt {
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.3rem;
}
.contact-info dd { margin: 0; font-family: var(--serif); font-size: 1.2rem; }

.form { display: grid; gap: 1.5rem; }
.form label {
  display: grid; gap: 0.5rem;
  font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--stone);
}
.form input, .form textarea, .form select {
  border: none; border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 0.8rem 0;
  font: inherit; font-size: 1rem;
  color: var(--ink);
  transition: border-color .3s var(--transition);
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none; border-color: var(--gold);
}
.form textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ======== PAGE HERO (sub pages) ======== */
.page-hero {
  position: relative; min-height: 65vh;
  display: flex; align-items: center;
  color: #fff;
  padding: 8rem 0 4rem;
}
.page-hero-media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.55));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero .breadcrumbs {
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  margin-bottom: 1.5rem; color: rgba(255,255,255,0.85);
}
.page-hero .breadcrumbs a:hover { color: var(--gold-soft); }

/* ======== REVEAL ANIMATIONS ======== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--transition), transform 1s var(--transition); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ======== UTIL ======== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.alt-bg { background: var(--shell); }

/* ======== LANGUAGE SWITCHER ======== */
.lang-switch {
  display: inline-flex;
  gap: 0.5rem;
  padding-left: 1.4rem;
  margin-left: 0.6rem;
  border-left: 1px solid currentColor;
  align-items: center;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.85;
}
.lang-switch a {
  padding: 0.25rem 0.45rem;
  border-radius: 3px;
  transition: background .25s var(--transition);
}
.lang-switch a.is-active {
  background: var(--gold);
  color: #fff !important;
}
.lang-switch a:not(.is-active):hover { color: var(--gold); }
@media (max-width: 900px) {
  .lang-switch { padding: 1rem 0 0; margin-left: 0; border-left: none; border-top: 1px solid var(--line); width: 100%; justify-content: flex-start; }
}

/* ======== STICKY BOOK BAR ======== */
.book-bar {
  position: fixed; bottom: 1.4rem; right: 1.4rem;
  z-index: 50;
  background: var(--ink); color: #fff;
  padding: 0.9rem 1.6rem;
  font-size: 0.74rem; letter-spacing: 0.28em; text-transform: uppercase;
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
  transform: translateY(140%);
  transition: transform .5s var(--transition);
}
.book-bar.is-visible { transform: none; }
.book-bar:hover { background: var(--gold); }
@media (max-width: 600px) { .book-bar { display: none; } }

/* ======== BRAND LOGO (header) ======== */
.brand-logo {
  display: block;
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: filter .35s var(--transition);
}
/* Su hero scuro: logo bianco via filtro CSS */
.site-header.is-light:not(.is-scrolled) .brand-logo {
  filter: brightness(0) invert(1);
}
@media (max-width: 600px) {
  .brand-logo { height: 36px; }
}

/* Footer brand: logo piccolo sopra al testo */
.footer-brand .brand-logo {
  height: 56px;
  filter: brightness(0) invert(1);
  margin-bottom: 0.9rem;
}

/* ======== FLATPICKR (date picker form contatti) ======== */
/* Date passate / occupate: visibilmente disabilitate in grigio */
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: #ccc !important;
  background: #f5f5f5 !important;
  text-decoration: line-through;
  cursor: not-allowed !important;
  pointer-events: none;
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: #2fa8a3 !important;
  border-color: #2fa8a3 !important;
}
.flatpickr-day.today {
  border-color: #2fa8a3;
}

/* Accessibilità: testo presente per screen reader/SEO ma nascosto visivamente */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

