/* ============================================================
   I DUE CIPPI — COUNTRY VILLA
   Style Sheet
   ============================================================ */

/* === CSS VARIABLES === */
:root {
  --color-bg:         #FAF7F2;
  --color-cream:      #F0E9DE;
  --color-dark:       #1C1917;
  --color-gold:       #C4A882;
  --color-gold-dark:  #9B7D5A;
  --color-text:       #3D3530;
  --color-text-light: #7A6E67;
  --color-white:      #FFFFFF;

  --font-serif:    'Playfair Display', Georgia, serif;
  --font-refined:  'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans:     'Lato', 'Helvetica Neue', Arial, sans-serif;

  --nav-height: 80px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow:    0 4px 30px rgba(28, 25, 23, 0.08);
  --shadow-lg: 0 20px 60px rgba(28, 25, 23, 0.18);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
  line-height: 1.8;
}

img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button { cursor: pointer; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-dark);
}
h1 { font-size: clamp(3rem,   7vw, 6rem); }
h2 { font-size: clamp(2rem,   4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  display: block;
  margin-bottom: 0.75rem;
}

/* === LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 8rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p {
  font-family: var(--font-refined);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-text-light);
  max-width: 580px;
  margin: 1rem auto 0;
  font-style: italic;
}

/* Ornament divider */
.ornament {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  margin: 1rem 0;
}
.ornament-left { justify-content: flex-start; }
.ornament-line {
  flex: 0 0 50px;
  height: 1px;
  background: var(--color-gold);
}
.ornament-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
}

/* Shared buttons */
.btn-gold {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: 1.5px solid var(--color-gold-dark);
  color: var(--color-gold-dark);
  background: transparent;
  transition: var(--transition);
  margin-top: 1rem;
}
.btn-gold:hover {
  background: var(--color-gold-dark);
  color: white;
}

/* === NAVBAR === */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
#navbar.transparent { background: transparent; }
#navbar.scrolled {
  background: rgba(250, 247, 242, 0.97);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(28, 25, 23, 0.08);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  gap: 2rem;
}

.nav-logo img {
  height: 48px;
  width: auto;
  transition: filter 0.4s ease;
}
#navbar.transparent .nav-logo img { filter: invert(1) brightness(2); }

.subtitle-logo {
  height: 120px;
  width: auto;
  display: block;
  margin: 0 auto 1.5rem;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease 0.5s forwards;
}

.nav-links ul {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-dark);
  position: relative;
  transition: color 0.3s;
}
#navbar.transparent .nav-links a { color: rgba(255,255,255,0.9); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--color-gold);
  transition: width 0.35s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--color-gold-dark); }
#navbar.transparent .nav-links a:hover { color: var(--color-gold); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  color: var(--color-dark);
  transition: color 0.3s;
}
#navbar.transparent .nav-social a { color: rgba(255,255,255,0.8); }
.nav-social a:hover { color: var(--color-gold-dark); }
#navbar.transparent .nav-social a:hover { color: var(--color-gold); }
.nav-social svg { width: 17px; height: 17px; }

/* Prenota button */
.btn-prenota {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.65rem 1.8rem;
  border: 1.5px solid var(--color-dark);
  color: var(--color-dark);
  background: transparent;
  transition: var(--transition);
  white-space: nowrap;
}
#navbar.transparent .btn-prenota {
  border-color: rgba(255,255,255,0.75);
  color: white;
}
.btn-prenota:hover {
  background: var(--color-dark);
  color: white;
}
#navbar.transparent .btn-prenota:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
}

/* === LANG TOGGLE === */
.btn-lang {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(28,25,23,0.35);
  color: var(--color-text-light);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}
#navbar.transparent .btn-lang {
  border-color: rgba(255,255,255,0.45);
  color: rgba(255,255,255,0.75);
}
.btn-lang:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
#navbar.transparent .btn-lang:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.mobile-lang {
  align-self: flex-start;
  margin-bottom: 0.5rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--color-dark);
  transition: var(--transition);
}
#navbar.transparent .hamburger span { background: white; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
@keyframes mobileNavIn {
  from {
    transform: translateY(-16px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.mobile-nav {
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: rgba(250, 247, 242, 0.98);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding: 2rem 2.5rem;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 999;
  display: none;
  border-bottom: 1px solid rgba(196,168,130,0.2);
}
.mobile-nav.open {
  display: flex;
  animation: mobileNavIn 0.35s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}
.mobile-nav a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-dark);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(196,168,130,0.2);
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--color-gold-dark); }
.mobile-nav a.mobile-prenota {
  color: var(--color-white);
  background: var(--color-gold-dark);
  padding: 0.6rem 1rem;
  border-bottom: none;
  text-align: center;
  margin-top: 0.25rem;
}
.mobile-social {
  display: flex;
  gap: 1rem;
  padding-top: 0.5rem;
}
.mobile-social a { color: var(--color-text-light); transition: color 0.3s; }
.mobile-social a:hover { color: var(--color-gold-dark); }

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  inset: -10%;
  will-change: transform;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
}

.hero-slide-1 {
  background-image: url('../images/hero-bg.webp');
  animation: heroSlide1 18s ease-in-out infinite;
}

.hero-slide-2 {
  background-image: url('../images/villa-i-due-cippi-06.webp');
  animation: heroSlide2 18s ease-in-out infinite;
}

.hero-slide-3 {
  background-image: url('../images/stanze/oak/oak-01.webp');
  animation: heroSlide3 18s ease-in-out infinite;
}

/*
  Ciclo 18s — 3 slide da ~6s l'una con cross-fade sovrapposto.
  Cross-fade:  slide1→slide2  al 27%–33%  (≈4.9s–5.9s)
               slide2→slide3  al 61%–67%  (≈11s–12s)
               slide3→slide1  al 94%–100% (≈17s–18s, loop)
*/
@keyframes heroSlide1 {
  0%   { opacity: 1; transform: scale(1);    }
  27%  { opacity: 1; transform: scale(1.08); }
  33%  { opacity: 0; transform: scale(1.1);  }
  94%  { opacity: 0; transform: scale(1);    }
  100% { opacity: 1; transform: scale(1);    }
}

@keyframes heroSlide2 {
  0%   { opacity: 0; transform: scale(1);    }
  27%  { opacity: 0; transform: scale(1);    }
  33%  { opacity: 1; transform: scale(1);    }
  61%  { opacity: 1; transform: scale(1.08); }
  67%  { opacity: 0; transform: scale(1.1);  }
  100% { opacity: 0; transform: scale(1);    }
}

@keyframes heroSlide3 {
  0%   { opacity: 0; transform: scale(1);    }
  61%  { opacity: 0; transform: scale(1);    }
  67%  { opacity: 1; transform: scale(1);    }
  94%  { opacity: 1; transform: scale(1.08); }
  100% { opacity: 0; transform: scale(1.1);  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(28,25,23,0.25) 0%,
    rgba(28,25,23,0.50) 60%,
    rgba(28,25,23,0.70) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 2rem;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease 0.3s forwards;
}
.hero h1 {
  color: white;
  font-style: italic;
  margin-bottom: 0.25rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease 0.5s forwards;
}
.hero-subtitle {
  font-family: var(--font-refined);
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease 0.7s forwards;
}
.hero-divider {
  width: 55px; height: 1px;
  background: var(--color-gold);
  margin: 0 auto 2rem;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.9s forwards;
}
.hero-desc {
  font-family: var(--font-refined);
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  font-style: italic;
  max-width: 480px;
  margin: 0 auto 3rem;
  line-height: 1.9;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease 1s forwards;
}
.hero-cta {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease 1.1s forwards;
}

.btn-primary {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  background: var(--color-gold-dark);
  color: white;
  border: 1.5px solid var(--color-gold-dark);
  transition: var(--transition);
  display: inline-block;
}
.btn-primary:hover {
  background: transparent;
  border-color: white;
  color: white;
}
.btn-outline-white {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.55);
  transition: var(--transition);
  display: inline-block;
}
.btn-outline-white:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
}

/* Scroll indicator */
.scroll-down {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1s ease 1.6s forwards;
}
.scroll-down-track {
  position: relative;
  width: 2px;
  height: 64px;
  background: rgba(255,255,255,0.18);
  overflow: hidden;
}
.scroll-down-dot {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1.5px;
  height: 22px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.95), transparent);
  animation: scrollDrop 1.8s cubic-bezier(0.4, 0, 0.6, 1) 2s infinite;
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes scrollDrop {
  0%   { top: 100%; opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { top: -22px;  opacity: 0; }
}

/* Scroll-reveal classes */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal       { transform: translateY(45px); }
.reveal-left  { transform: translateX(-55px); }
.reveal-right { transform: translateX(55px); }
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }
.reveal-delay-4 { transition-delay: 0.5s; }

/* === LA VILLA === */
#la-villa { background: var(--color-bg); }

.villa-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
}
.villa-intro-image {
  position: relative;
  z-index: 0;
}
.villa-intro-image::before {
  content: '';
  position: absolute;
  top: -1.5rem; left: -1.5rem;
  right: 1.5rem; bottom: 1.5rem;
  border: 1px solid var(--color-gold);
  z-index: -1;
  pointer-events: none;
}
.villa-intro-image img {
  width: 100%; height: 560px;
  object-fit: cover;
  display: block;
}
.villa-intro-text .section-label,
.villa-intro-text h2 { text-align: left; }
.villa-intro-text h2  { margin-bottom: 1.5rem; }
.villa-intro-text p {
  font-family: var(--font-refined);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
  line-height: 1.9;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(196,168,130,0.25);
}
.feature-item { text-align: center; }
.feature-icon {
  width: 46px; height: 46px;
  margin: 0 auto 1rem;
  color: var(--color-gold-dark);
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-item h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.feature-item p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* === GALLERY === */
#galleria {
  background: var(--color-dark);
  padding-bottom: 0;
}
#galleria .section-header h2 { color: white; }
#galleria .section-header p  { color: rgba(255,255,255,0.55); }
#galleria .section-label     { color: var(--color-gold); }
#galleria .ornament-line     { background: rgba(196,168,130,0.5); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  grid-auto-flow: dense;
  gap: 4px;
  margin-top: 3rem;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  height: 100%;
  min-height: 0;
}
.gallery-item.tall  { grid-row: span 2; }
.gallery-item.wide  { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.25,0.46,0.45,0.94);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(28,25,23,0);
  transition: background 0.4s ease;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(28,25,23,0.28); }
.gallery-item-overlay svg {
  color: white;
  width: 140px;
  height: 140px;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.4s ease;
  flex-shrink: 0;
}
.gallery-item:hover .gallery-item-overlay svg { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 0 80px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.18); }

/* === SUITE === */
#suite { background: var(--color-bg); }

.suite-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.suite-card {
  position: relative;
  height: 480px;
  overflow: hidden;
  cursor: pointer;
}

.suite-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.suite-card:hover img {
  transform: scale(1.07);
}

.suite-card-info {
  position: absolute;
  inset: 0;
  padding: 3rem 2.2rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  background: linear-gradient(
    to top,
    rgba(28, 25, 23, 0.78) 0%,
    rgba(28, 25, 23, 0.25) 45%,
    rgba(28, 25, 23, 0.04) 100%
  );
}

.suite-card-info::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(28, 25, 23, 0.88) 0%,
    rgba(28, 25, 23, 0.45) 55%,
    rgba(28, 25, 23, 0.10) 100%
  );
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.suite-card:hover .suite-card-info::before {
  opacity: 1;
}

.suite-tag {
  font-family: var(--font-sans);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.5rem;
}

.suite-card-info h3 {
  color: var(--color-white);
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 0.8rem;
}

.suite-bed {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.6rem;
}

.suite-bed svg { color: var(--color-gold); flex-shrink: 0; }

.suite-btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border: 1.5px solid rgba(196, 168, 130, 0.7);
  color: var(--color-gold);
  background: transparent;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1) 0.08s,
              transform 0.55s cubic-bezier(0.4, 0, 0.2, 1) 0.08s,
              background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.suite-card:hover .suite-btn {
  opacity: 1;
  transform: translateY(0);
}

.suite-btn:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-dark);
}

/* Suite card actions (Scopri + Prenota) */
.suite-card-actions {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  flex-wrap: wrap;
}

.suite-view-btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  background: var(--color-gold);
  border: 1.5px solid var(--color-gold);
  color: var(--color-dark);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1) 0.04s,
              transform 0.55s cubic-bezier(0.4, 0, 0.2, 1) 0.04s,
              background 0.3s ease;
}

.suite-card:hover .suite-view-btn {
  opacity: 1;
  transform: translateY(0);
}

.suite-view-btn:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
}

/* Esplora nav button */
.btn-esplora {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.65rem 1.2rem;
  color: var(--color-gold-dark);
  background: transparent;
  white-space: nowrap;
  transition: var(--transition);
}
#navbar.transparent .btn-esplora {
  color: rgba(255, 255, 255, 0.82);
}
.btn-esplora:hover {
  color: var(--color-gold);
}
#navbar.transparent .btn-esplora:hover {
  color: var(--color-gold);
}

/* === ROOM MODALS === */
.room-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 18, 16, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 1.5rem;
}

.room-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.room-modal-content {
  position: relative;
  width: 100%;
  max-width: 1230px;
  height: min(88vh, 700px);
  background: #1c1917;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}

.room-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 20;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  color: rgba(255,255,255,0.85);
  transition: background 0.25s ease, color 0.25s ease;
}

.room-modal-close:hover {
  background: rgba(255, 255, 255, 0.18);
  color: white;
}

.room-modal-body {
  display: grid;
  grid-template-columns: 1fr 270px;
  height: 100%;
  overflow: hidden;
}

.room-modal-gallery {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: #141210;
}

.room-modal-stage {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

/* blurred backdrop fills letterbox gaps for portrait images */
.room-modal-stage::before {
  content: '';
  position: absolute;
  inset: -30px;
  background: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(22px) brightness(0.45);
  z-index: 0;
}

.room-modal-main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  transition: opacity 0.25s ease;
}

.room-modal-prev,
.room-modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 18, 16, 0.6);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  color: white;
  transition: background 0.25s ease;
}

.room-modal-prev { left: 0.75rem; }
.room-modal-next { right: 0.75rem; }

.room-modal-prev:hover,
.room-modal-next:hover {
  background: rgba(196, 168, 130, 0.85);
}

.room-modal-counter {
  position: absolute;
  bottom: 0.65rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(20, 18, 16, 0.55);
  padding: 0.2rem 0.65rem;
  pointer-events: none;
  z-index: 5;
}

.room-modal-thumbs {
  display: flex;
  align-items: center;
  gap: 3px;
  overflow-x: auto;
  padding: 5px;
  background: #0e0c0b;
  flex-shrink: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold) transparent;
}

.room-modal-thumbs::-webkit-scrollbar {
  height: 3px;
}
.room-modal-thumbs::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 2px;
}

.room-modal-thumb {
  width: 72px;
  height: 50px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.42;
  flex-shrink: 0;
  transition: opacity 0.22s ease;
  border: 1.5px solid transparent;
}

.room-modal-thumb.active {
  opacity: 1;
  border-color: var(--color-gold);
}

.room-modal-thumb:hover {
  opacity: 0.82;
}

.room-modal-info {
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.8rem;
  background: var(--color-bg);
  border-left: 1px solid rgba(196, 168, 130, 0.18);
  overflow-y: auto;
}

.room-modal-info .suite-tag {
  display: block;
  color: var(--color-gold);
  margin-bottom: 0;
}

.room-modal-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  color: var(--color-dark);
  font-weight: 400;
  margin: 0;
  line-height: 1.1;
}

.room-modal-info .suite-bed {
  color: var(--color-text-light);
}

.room-modal-book {
  display: inline-block;
  text-align: center;
  margin-top: 0.5rem;
}

/* Room amenities list */
.room-amenities {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.room-amenities li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--color-text-light);
}

.room-amenities li svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

/* Responsive: room modal */
@media (max-width: 768px) {
  .room-modal { padding: 0; align-items: flex-end; }

  .room-modal-content {
    max-width: 100%;
    width: 100%;
    height: 92vh;
    border-radius: 0;
  }

  .room-modal-body {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    overflow-y: auto;
  }

  .room-modal-gallery {
    height: auto;
  }

  .room-modal-stage {
    height: 56vw;
    min-height: 220px;
    flex: none;
  }

  .room-modal-info {
    border-left: none;
    border-top: 1px solid rgba(196, 168, 130, 0.15);
    padding: 1.5rem;
  }

  .suite-view-btn { opacity: 1; transform: translateY(0); }
}

/* === PARALLAX STRIP === */
.parallax-strip {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.parallax-strip-bg {
  position: absolute;
  top: -180px;
  bottom: -180px;
  left: 0;
  right: 0;
  background-image: url('../images/villa-i-due-cippi-05.webp');
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.parallax-strip-overlay {
  position: absolute; inset: 0;
  background: rgba(28,25,23,0.58);
  display: flex; align-items: center; justify-content: center;
}
.parallax-strip-content {
  text-align: center;
  color: white;
  padding: 0 2rem;
  max-width: 700px;
}
.parallax-strip-content h2 {
  color: white;
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin: 0.75rem 0 1rem;
  line-height: 1.35;
}
.parallax-strip-content p {
  font-family: var(--font-refined);
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  font-style: italic;
}

/* === CHI SIAMO === */
#chi-siamo { background: var(--color-cream); }

.chi-siamo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.chi-siamo-images {
  position: relative;
}
.chi-siamo-img-main {
  width: 100%; height: 520px;
  object-fit: cover;
  object-position: right top;
}
.chi-siamo-img-accent {
  position: absolute;
  bottom: -2rem; right: -2rem;
  width: 190px; height: 240px;
  object-fit: cover;
  border: 4px solid var(--color-cream);
  box-shadow: var(--shadow-lg);
}
.chi-siamo-text .section-label,
.chi-siamo-text h2 { text-align: left; }
.chi-siamo-text h2  { margin-bottom: 1rem; }
.chi-siamo-text p {
  font-family: var(--font-refined);
  font-size: 1.22rem;
  font-weight: 400;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
  line-height: 1.9;
}
.chi-siamo-text blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.45rem;
  color: var(--color-gold-dark);
  border-left: 2px solid var(--color-gold);
  padding-left: 1.5rem;
  margin: 1.75rem 0;
  line-height: 1.7;
}

/* === VIDEO VALLE === */
#video-valle {
  background: var(--color-cream);
}
#video-valle h2 {
  text-align: left;
}
.valley-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.valley-text .section-label,
.valley-text h2 { text-align: left; }
.valley-text h2 { margin-bottom: 1rem; }
.valley-text p {
  font-family: var(--font-refined);
  font-size: 1.18rem;
  font-weight: 400;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
  line-height: 1.9;
}
.valley-text .ornament-line  { background: rgba(196, 168, 130, 0.5); }
.valley-text .ornament-dot   { background: var(--color-gold); }
.valley-video {
  display: flex;
  justify-content: center;
}
.valley-video-el {
  width: 100%;
  max-width: 360px;          /* proporzioni social verticale (9:16) */
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  display: block;
}

/* === FAQ === */
#info_contatti { background: var(--color-dark); }
#info_contatti .section-header h2 { color: white; }
#info_contatti .section-header p  { color: rgba(255,255,255,0.55); }
#info_contatti .section-label     { color: var(--color-gold); }
#info_contatti .ornament-dot      { background: var(--color-gold); }
#info_contatti .ornament-line     { background: rgba(196,168,130,0.5); }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(196, 168, 130, 0.35);
}

.faq-item:first-child {
  border-top: 1px solid rgba(196, 168, 130, 0.35);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: none;
  border: none;
  padding: 1.6rem 0;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: white;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-question:hover,
.faq-question[aria-expanded="true"] {
  color: var(--color-gold);
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--color-gold);
  border-radius: 50%;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--color-gold);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.3s;
}

.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 10px; }

.faq-question[aria-expanded="true"] .faq-icon {
  border-color: var(--color-gold);
  transform: rotate(45deg);
}

.faq-question[aria-expanded="true"] .faq-icon::before,
.faq-question[aria-expanded="true"] .faq-icon::after {
  background: var(--color-gold);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  padding-bottom: 0;
  transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              padding-bottom 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer.open {
  max-height: 400px;
  padding-bottom: 1.6rem;
}

.faq-answer p {
  color: rgba(255,255,255,0.65);
  font-family: var(--font-refined);
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.9;
}

.faq-answer strong { color: rgba(255,255,255,0.9); font-weight: 600; }
.faq-answer em     { color: var(--color-gold); }


/* === INFO & CONTATTI === */
#contatti { background: var(--color-bg); }

.contatti-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contatti-info h3 {
  margin-bottom: 2.25rem;
  font-style: italic;
  font-size: 1.6rem;
}
.contatti-detail {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.contatti-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--color-gold-dark);
  margin-top: 3px;
}
.contatti-icon svg { width: 100%; height: 100%; }
.contatti-detail-text h4 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.3rem;
}
.contatti-detail-text p,
.contatti-detail-text a {
  font-family: var(--font-refined);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.65;
  transition: color 0.3s;
}
.contatti-detail-text a:hover { color: var(--color-gold-dark); }

.contatti-social {
  display: flex;
  gap: 1rem;
  margin-top: 2.25rem;
  flex-wrap: wrap;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border: 1px solid rgba(196,168,130,0.5);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: var(--transition);
}
.social-btn svg { width: 15px; height: 15px; }
.social-btn:hover {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: white;
}

.contatti-map {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.contatti-map img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.75) sepia(0.2);
  transition: filter 0.5s;
}
.contatti-map:hover img { filter: saturate(1) sepia(0); }
.map-overlay {
  position: absolute; inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(28,25,23,0.5) 0%, transparent 50%);
}
.map-pin {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-dark);
  color: white;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.3s;
}
.map-pin:hover { background: var(--color-gold-dark); }

/* === FOOTER === */
footer {
  background: var(--color-dark);
  padding: 5rem 2rem 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.4fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* --- Col 1: Brand --- */
.footer-col-brand { gap: 1.6rem; }
.footer-logo img {
  height: 44px;
  filter: invert(1) brightness(1.8);
  opacity: 0.75;
  transition: opacity 0.3s;
}
.footer-logo img:hover { opacity: 1; }
.footer-tagline {
  font-family: var(--font-refined);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.footer-social svg { width: 16px; height: 16px; }

/* --- Col 2: Nav --- */
.footer-col-nav { justify-content: flex-start; padding-top: 0.25rem; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.footer-links a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--color-gold); }

/* --- Col 3: Map --- */
.footer-col-map { gap: 0.8rem; }
#footer-map {
  position: relative;
  width: 100%;
  height: 195px;
  filter: saturate(0.5) brightness(0.9);
  transition: filter 0.4s ease;
}
#footer-map:hover { filter: saturate(0.7) brightness(1); }
.footer-address {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.35rem;
}
.footer-address a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s;
}
.footer-address a svg { color: var(--color-gold); flex-shrink: 0; }
.footer-address a:hover { color: var(--color-gold); }
.footer-address span {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
}

/* --- Bottom bar --- */
.footer-bottom-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0;
}
.footer-bottom {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

/* Leaflet overrides inside footer */
/* Attribuzione Geoapify/OpenStreetMap obbligatoria: solo restyling, non nascosta */
#footer-map .leaflet-control-attribution {
  background: rgba(28, 25, 23, 0.75);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.6rem;
  padding: 1px 5px;
}
#footer-map .leaflet-control-attribution a { color: rgba(196, 168, 130, 0.9); }

/* Pulsanti zoom adattati al tema scuro */
#footer-map .leaflet-bar a {
  background: rgba(35,30,28,0.9);
  color: rgba(255,255,255,0.65);
  border-color: rgba(255,255,255,0.12);
  width: 26px; height: 26px; line-height: 26px; font-size: 16px;
}
#footer-map .leaflet-bar a:hover {
  background: rgba(196,168,130,0.2);
  color: var(--color-gold);
  border-color: rgba(196,168,130,0.4);
}
#footer-map .leaflet-bar {
  border: none;
  box-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* Overlay messaggio gesture */
.map-gesture-msg {
  position: absolute;
  inset: 0;
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20,16,14,0.68);
  color: rgba(255,255,255,0.92);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 1rem 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.map-gesture-msg.visible { opacity: 1; }
.map-gesture-msg kbd {
  display: inline-block;
  padding: 0.1em 0.45em;
  margin: 0 0.2em;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 3px;
  font-family: inherit;
  font-size: 0.9em;
  background: rgba(255,255,255,0.12);
}


/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .villa-intro,
  .chi-siamo-grid,
  .valley-grid,
  .contatti-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .valley-video { order: -1; }
  .valley-video-el { max-width: 280px; }
  .villa-intro-image::before { display: none; }
  .villa-intro-image img     { height: 380px; }
  .chi-siamo-img-main        { height: 400px; }
  .chi-siamo-img-accent      { display: none; }
  .features-grid             { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .contatti-map              { height: 320px; }
  .footer-inner              { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-col-map            { grid-column: span 2; }
  #footer-map                { height: 220px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 65px; }
  section { padding: 5rem 0; }

  .nav-links,
  .nav-right { display: none; }
  .hamburger { display: flex; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-item.tall,
  .gallery-item.wide { grid-row: auto; grid-column: auto; }

  .suite-grid { grid-template-columns: 1fr; gap: 1rem; }
  .suite-card { height: 380px; }
}

@media (max-width: 480px) {
  .hero {
    min-height: 610px !important;
  }

  .hero-desc {
    font-size: 0.85rem;
    margin-bottom: 20px
  }
  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }
  .btn-primary,
  .btn-outline-white {
    flex: 1;
    padding: 0.85rem 0.75rem;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-align: center;
  }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .suite-card { height: 320px; }
  .suite-btn { opacity: 1; transform: translateY(0); }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .contatti-social { flex-direction: column; }
  .footer-inner    { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-col-map  { grid-column: auto; }
  #footer-map      { height: 180px; }
  .footer-links    { flex-direction: row; flex-wrap: wrap; gap: 0.7rem 1.5rem; }
}
