:root {
  --black: #0a0a0a;
  --dark: #111111;
  --mid: #1a1a1a;
  --silver: #b0b0b0;
  --silver-light: #d4d4d4;
  --white: #f2f2f2;

  /* Grayscale accents. --accent-deep is intentionally dark (not light)
     so it always pairs safely as a background under white/light text. */
  --accent: #c9c9c9;
  --accent-deep: #333333;
  --accent-soft: #d6d6d6;
  --accent-pale: #dcdcdc;
  --page-gutter: 60px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ─── EDITORIAL TAGS (global, context-independent) ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
}
h1 {
  font-size: clamp(3.8rem, 8vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin-bottom: 20px;
}
h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
em { font-style: italic; color: var(--accent-pale); }

p {
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--silver);
  margin-bottom: 20px;
}
p:last-child { margin-bottom: 0; }
p strong { color: var(--white); font-weight: 400; }

ul, ol { list-style: none; }
li { margin-bottom: 10px; }
li:last-child { margin-bottom: 0; }

/* ─── NAVBAR ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px;
  background: rgba(80,80,80,0.5);
  backdrop-filter: blur(15px);
}
.nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.nav-logo img {
  height: 42px; width: auto;
  filter: grayscale(1) brightness(1.1);
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.2;
}
.nav-brand span { display: block; font-size: 0.6rem; letter-spacing: 0.5em; color: var(--silver); font-family: 'Montserrat', sans-serif; }

.nav-links {
  display: flex; gap: 40px; align-items: center;
}
.nav-links li { margin-bottom: 0; }
.nav-links a {
  color: var(--silver-light);
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 100%;
  height: 1px; background: var(--accent);
  transition: right 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { right: 0; }
.nav-cta {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent) !important;
  padding: 10px 26px;
  border-radius: 0;
  letter-spacing: 0.2em;
  transition: background 0.3s, color 0.3s !important;
}
.nav-cta:hover { background: var(--accent-deep) !important; color: var(--white) !important; }
.nav-cta::after { display: none !important; }

/* ─── HERO ─── */
.hero {
  height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-slider-track,
.hero-slide {
  position: absolute; inset: 0;
}
.hero-slide {
  display: flex; align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s ease;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.32);
  transform: scale(1.05);
  animation: slowZoom 18s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

/* Subtle vignette overlay */
.hero-veil {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
}
/* Vertical line accent */
.hero-line {
  position: absolute; left: 58px; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, transparent, var(--accent) 40%, transparent);
  opacity: 0.5;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 100px;
  max-width: 780px;
}
.hero-eyebrow {
  font-size: 0.62rem; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--accent-soft); margin-bottom: 28px;
  display: flex; align-items: center; gap: 16px;
  animation: fadeUp 1s ease 0.3s both;
}
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--accent-soft); }

/* Only the entrance-animation timing is hero-specific; typography comes from the global h1 rule. */
.hero-title { animation: fadeUp 1s ease 0.5s both; }

.hero-subtitle {
  font-size: 0.8rem; letter-spacing: 0.15em;
  color: var(--silver);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 52px;
  animation: fadeUp 1s ease 0.7s both;
}

.hero-actions {
  display: flex; gap: 20px; align-items: center;
  margin-bottom: 0;
  animation: fadeUp 1s ease 0.9s both;
}
.hero-slider-dots {
  position: absolute; left: 100px; bottom: 46px; z-index: 3;
  display: flex; align-items: center; gap: 12px;
}
.hero-slider-dot {
  width: 34px; height: 10px;
  border: 0;
  background: rgba(255,255,255,0.28);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.hero-slider-dot.active {
  width: 54px;
  background: var(--accent);
}
.btn-primary {
  background: var(--mid);
  border: 1px solid var(--accent);
  color: var(--white);
  
  padding: 16px 44px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.btn-primary:hover { 
  background: var(--black); transform: translateY(-2px); 
  border: 1px solid transparent;
}
.btn-ghost {
  color: var(--silver-light);
  font-size: 0.65rem; letter-spacing: 0.25em;
  text-transform: uppercase; text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  transition: color 0.3s;
}
.btn-ghost::before { content: ''; width: 30px; height: 1px; background: currentColor; transition: width 0.3s; }
.btn-ghost:hover { color: var(--white); }
.btn-ghost:hover::before { width: 50px; }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 40px; right: 60px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  animation: fadeUp 1s ease 1.2s both;
}
.hero-scroll span {
  font-size: 0.55rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--silver); writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── SECTION SHARED ─── */
.simple-page-hero {
  min-height: 58vh;
  padding: 180px var(--page-gutter) 96px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.3), var(--black)),
    var(--dark);
}
.simple-page-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.48);
}
.simple-page-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.2), var(--black)),
    radial-gradient(ellipse at 70% 35%, rgba(255,255,255,0.1), transparent 55%);
}
.simple-page-header {
  max-width: 980px;
  position: relative;
  z-index: 1;
}
.simple-page-eyebrow {
  color: var(--accent);
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}
.simple-page-title { max-width: 900px; }
.simple-page-header p:not(.simple-page-eyebrow) { max-width: 680px; }
.simple-section { background: var(--black); }
.simple-section:nth-of-type(even) { background: var(--dark); }
.simple-section-content { max-width: 920px; }
.simple-section-content h2,
.simple-section-content h3 { max-width: 760px; }
.simple-section-content ul,
.simple-section-content ol {
  color: var(--silver);
  font-size: 0.85rem;
  line-height: 1.9;
  margin: 24px 0;
  padding-left: 22px;
}
.simple-section-content ul { list-style: disc; }
.simple-section-content ol { list-style: decimal; }

.special-page {
  min-height: 100vh;
  padding: 64px var(--page-gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(255,255,255,0.08), transparent 55%),
    var(--black);
  text-align: center;
}
.special-page-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.38);
}
.special-page-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.42), rgba(0,0,0,0.86));
}
.special-page-inner {
  width: min(100%, 720px);
  position: relative;
  z-index: 1;
}
.wip-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
}
.wip-logo img {
  width: min(430px, 82vw);
  height: auto;
}
.wip-title {
  font-size: clamp(3.2rem, 9vw, 7rem);
  line-height: 0.95;
  margin-bottom: 0;
}

section { padding: 120px var(--page-gutter); }
.section-label {
  font-size: 0.58rem; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
  display: flex; align-items: center; gap: 14px;
}
.section-label::before { content: ''; width: 28px; height: 1px; background: var(--accent); }

/* ─── ABOUT STRIP ─── */
.about {
  background: var(--dark);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; padding: 0; overflow: hidden;
}
.about-img {
  position: relative; overflow: hidden; min-height: 600px;
}
.about-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) brightness(0.7);
  transition: transform 0.8s ease, filter 0.5s;
}
.about-img:hover img { transform: scale(1.04); filter: grayscale(1) brightness(0.85); }
.about-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 60%);
}
.about-text {
  padding: 80px 80px 80px 70px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--dark);
}
.about-stats {
  display: flex; gap: 50px; margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300;
  color: var(--accent); line-height: 1;
}
.stat-label {
  font-size: 0.6rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--silver);
  margin-top: 6px;
}

/* ─── SERVIZI ─── */
.servizi { background: var(--black); }
.servizi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 70px;
}
.servizio-card {
  background: var(--dark);
  padding: 52px 44px;
  position: relative; overflow: hidden;
  transition: background 0.4s;
  cursor: pointer;
}
.servizio-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 100%;
  height: 2px; background: var(--accent);
  transition: right 0.4s ease;
}
.servizio-card:hover { background: #161616; }
.servizio-card:hover::before { right: 0; }
.servizio-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 300;
  color: rgba(255,255,255,0.08);
  line-height: 1; margin-bottom: 24px;
  transition: color 0.4s;
}
.servizio-card:hover .servizio-num { color: rgba(255,255,255,0.22); }
.servizio-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 300;
  color: var(--white); margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.servizio-desc {
  font-size: 0.72rem; line-height: 1.9;
  color: var(--silver); margin-bottom: 24px;
}
.servizio-price {
  font-size: 0.65rem; letter-spacing: 0.2em;
  color: var(--accent-soft);
}
.servizio-arrow {
  position: absolute; bottom: 44px; right: 44px;
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--accent);
  opacity: 0; transform: translateX(-10px);
  transition: opacity 0.3s, transform 0.3s;
}
.servizio-card:hover .servizio-arrow { opacity: 1; transform: translateX(0); }

/* ─── GALLERY ─── */
.gallery { background: var(--mid); padding: 100px var(--page-gutter); }
.gallery-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: start;
  margin-bottom: 60px;
}
.gallery-intro-content {
  min-width: 0;
}
.gallery-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 26px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.gallery-cta:hover {
  background: var(--accent-deep);
  border-color: var(--accent);
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 240px;
  gap: 3px;
}
.gallery-item {
  overflow: hidden; position: relative;
}
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) brightness(0.75);
  transition: transform 0.7s ease, filter 0.5s;
}
.gallery-item:hover img { transform: scale(1.06); filter: grayscale(1) brightness(0.9); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.4s;
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-tag {
  font-size: 0.6rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--accent-pale);
}

.gallery-page {
  background: var(--black);
}
.gallery-page-intro {
  background: var(--black);
  padding: 100px var(--page-gutter) 36px;
}
.gallery-full-section {
  background: var(--black);
  padding: 36px var(--page-gutter) 120px;
}
.gallery-masonry {
  column-count: 4;
  column-gap: 16px;
}
.gallery-masonry-item {
  width: 100%;
  display: block;
  break-inside: avoid;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  overflow: hidden;
  position: relative;
  background: var(--mid);
  color: inherit;
  cursor: zoom-in;
  text-align: left;
}
.gallery-masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(1) brightness(0.78);
  transition: transform 0.7s ease, filter 0.5s;
}
.gallery-masonry-item:hover img {
  transform: scale(1.04);
  filter: grayscale(1) brightness(0.92);
}
.gallery-masonry-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 48px 20px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.72), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-masonry-item:hover .gallery-masonry-caption {
  opacity: 1;
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(0,0,0,0.9);
}
.gallery-lightbox.is-open {
  display: flex;
}
.gallery-lightbox-figure {
  max-width: min(1100px, 100%);
  max-height: calc(100vh - 96px);
  display: grid;
  gap: 16px;
  justify-items: center;
  margin: 0;
}
.gallery-lightbox img {
  max-width: min(1100px, 100%);
  max-height: 78vh;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0,0,0,0.45);
}
.gallery-lightbox-caption {
  min-height: 1.3em;
  color: var(--silver-light);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-align: center;
}
.gallery-lightbox-counter {
  position: absolute;
  left: 24px;
  bottom: 24px;
  color: rgba(255,255,255,0.45);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
}
.gallery-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.35);
  color: var(--white);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}
.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 72px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.28);
  color: var(--white);
  cursor: pointer;
  font-size: 2.2rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 0.3s, border-color 0.3s;
}
.gallery-lightbox-nav:hover,
.gallery-lightbox-close:hover {
  background: var(--accent-deep);
  border-color: var(--accent);
}
.gallery-lightbox-prev { left: 24px; }
.gallery-lightbox-next { right: 24px; }

/* ─── TEAM ─── */
.team { background: var(--mid); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin-top: 70px;
}
.team-card {
  position: relative; overflow: hidden;
  color: inherit;
  display: block;
  text-decoration: none;
}
a.team-card { cursor: pointer; }
.team-card-img {
  height: clamp(360px, 42vw, 520px);
  overflow: hidden;
}
.team-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) brightness(0.7);
  transition: transform 0.6s, filter 0.5s;
}
.team-card:hover .team-card-img img {
  transform: scale(1.05);
  filter: grayscale(1) brightness(0.8);
}
.team-card-info {
  padding: 20px 0 0;
}
.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 300;
  color: var(--white); margin-bottom: 4px;
}
.team-role {
  font-size: 0.58rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--accent);
}
.team-accent {
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.team-card:hover .team-accent { transform: scaleX(1); }

/* ─── TESTIMONIAL ─── */
.testimonial {
  background: var(--dark);
  text-align: center;
  padding: 120px var(--page-gutter);
  position: relative; overflow: hidden;
}
.testimonial::before {
  content: '❝';
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem;
  color: rgba(255,255,255,0.04);
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  line-height: 1;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-style: italic; font-weight: 300;
  line-height: 1.5;
  color: var(--white);
  max-width: 820px; margin: 0 auto 44px;
  position: relative; z-index: 1;
}
.testimonial-author {
  font-size: 0.6rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 0;
}

/* ─── SIMPLE TEXT SLIDER ─── */
.simple-text-slider-track {
  position: relative;
  display: grid;
}
.simple-text-slider-slide {
  grid-column: 1;
  grid-row: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.simple-text-slider-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.simple-text-slider-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 50px;
}
.simple-text-slider-dot {
  width: 6px; height: 6px; border-radius: 50%;
  border: none; padding: 0;
  background: rgba(255,255,255,0.25); cursor: pointer;
  transition: background 0.3s;
}
.simple-text-slider-dot.active { background: var(--accent); }

/* ─── PREZZI ─── */
.prezzi { background: var(--black); }
.prezzi-cols {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 70px;
}
.prezzi-col {
  background: var(--dark);
  padding: 52px 44px;
}
.prezzi-col.featured {
  background: #1c1c1c;
  position: relative;
}
.prezzi-col.featured::before {
  content: 'CONSIGLIATO';
  position: absolute; top: 0; right: 0;
  background: var(--accent-deep);
  font-size: 0.5rem; letter-spacing: 0.3em;
  color: var(--white); padding: 6px 14px;
}
.prezzi-col-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; color: var(--white);
  margin-bottom: 30px; font-weight: 300;
}
.prezzi-item {
  display: flex; justify-content: space-between;
  padding: 14px 0;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.75rem; color: var(--silver);
}
.prezzi-item:last-child { border-bottom: none; }
.prezzi-item-name { font-weight: 300; }
.prezzi-item-price { color: var(--accent-soft); font-weight: 400; }

/* ─── PRENOTAZIONE ─── */
.prenotazione {
  background: var(--accent-deep);
  padding: 100px var(--page-gutter);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; overflow: hidden;
}

.prenotazione-text .section-label { color: var(--accent-pale); }
.prenotazione-text .section-label::before { background: var(--accent-pale); }
.contact-facts {
  display: flex;
  gap: 30px;
  margin-top: 10px;
}
.contact-fact-label {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.contact-fact-value {
  color: var(--white);
  font-size: 0.85rem;
}
.prenotazione-form {
  position: relative; z-index: 1;
  background: rgba(0,0,0,0.2);
  padding: 48px; backdrop-filter: blur(10px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 12px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem; font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.5);
}
.form-group select option { background: var(--accent-deep); }
.form-group textarea { resize: none; height: 80px; }
.btn-form {
  width: 100%;
  background: var(--white);
  color: var(--accent-deep);
  border: none; padding: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.3em;
  text-transform: uppercase; font-weight: 500;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  margin-top: 8px;
}
.btn-form:hover { background: var(--black); color: var(--white); }

/* ─── FOOTER ─── */
footer {
  background: #050505;
  padding: 80px 60px 40px;
}
.footer-top {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 8vw, 120px); margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand,
.footer-contact {
  min-width: 0;
}
.footer-brand img {
  width: min(260px, 100%);
  height: auto;
  margin-bottom: 22px;
}
.footer-logo {
  margin-bottom: 22px;
}
.footer-logo img {
  display: block;
  margin-bottom: 0;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-style: italic;
  color: var(--silver); margin-bottom: 24px;
}
.footer-tagline p {
  color: inherit;
  font: inherit;
  line-height: inherit;
  margin: 0;
}
.footer-social {
  display: flex; gap: 16px;
}
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--silver); font-size: 0.75rem; text-decoration: none;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-contact {
  justify-self: end;
  max-width: 430px;
  width: 100%;
}
.footer-contact h4 {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer-contact p {
  color: var(--silver);
  font-size: 0.85rem;
  line-height: 1.9;
  margin: 0;
}
.footer-contact strong { color: var(--white); font-weight: 500; }
.footer-info-block {
  min-width: 0;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
}
.footer-copy {
  font-size: 0.6rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.2);
}
.footer-copy p {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  line-height: 1.8;
  margin: 0;
}
.footer-copy a {
  color: inherit;
  display: inline-block;
  margin-left: 24px;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-copy a:hover { color: var(--silver); }
.footer-legal {
  display: flex; gap: 30px;
}
.footer-legal a {
  font-size: 0.6rem; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2); text-decoration: none;
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--silver); }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── MOBILE MENU ─── */
.menu-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
}
.menu-toggle span {
  display: block; width: 28px; height: 1px;
  background: var(--white); transition: 0.3s;
}

@media (max-width: 1200px) {
  :root { --page-gutter: 40px; }
  nav { padding: 20px 28px; }
  .hero-content { padding: 0 var(--page-gutter); }
  .hero-slider-dots { left: var(--page-gutter); }
}
@media (max-width: 900px) {
  :root { --page-gutter: 30px; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .simple-page-hero { min-height: 50vh; padding-top: 150px; padding-bottom: 72px; }
  .hero-content { padding: 0 var(--page-gutter); max-width: 100%; }
  .hero-slider-dots { left: var(--page-gutter); bottom: 36px; }
  .about { grid-template-columns: 1fr; }
  .about-img { min-height: 360px; }
  .about-text { padding: 80px var(--page-gutter); }
  .servizi-grid, .prezzi-cols { grid-template-columns: 1fr; }
  .prenotazione { grid-template-columns: 1fr; padding: 80px var(--page-gutter); }
  .gallery-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .gallery-cta {
    justify-self: start;
  }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: auto; grid-column: 1 / -1; }
  .gallery-masonry { column-count: 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  section { padding: 80px var(--page-gutter); }
}
@media (max-width: 680px) {
  :root { --page-gutter: 24px; }
  nav { padding: 20px var(--page-gutter); }
  .simple-page-hero { min-height: 46vh; padding-top: 130px; padding-bottom: 56px; }
  .hero-content { padding: 0 var(--page-gutter); }
  .hero-slider-dots { left: var(--page-gutter); }
  section,
  .gallery,
  .testimonial,
  .prenotazione {
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }
  .about-text { padding: 64px var(--page-gutter); }
  .about-stats {
    flex-wrap: wrap;
    gap: 24px 32px;
  }
  .servizio-card,
  .prezzi-col {
    padding: 40px 24px;
  }
  .prenotazione-form {
    padding: 32px 24px;
  }
  .form-row { grid-template-columns: 1fr; }
  .contact-facts {
    flex-direction: column;
    gap: 18px;
  }
  .gallery-page-intro { padding-top: 72px; }
  .gallery-full-section { padding-bottom: 80px; }
  .gallery-masonry { column-count: 1; }
  .gallery-lightbox {
    padding: 20px;
  }
  .gallery-lightbox img {
    max-height: 72vh;
  }
  .gallery-lightbox-nav {
    width: 40px;
    height: 58px;
    font-size: 1.8rem;
  }
  .gallery-lightbox-prev { left: 10px; }
  .gallery-lightbox-next { right: 10px; }
  .gallery-lightbox-close {
    top: 14px;
    right: 14px;
  }
  .gallery-lightbox-counter {
    left: 20px;
    bottom: 16px;
  }
  footer { padding: 64px 24px 32px; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 36px;
    padding-bottom: 36px;
  }
  .footer-contact {
    justify-self: start;
    max-width: none;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-legal {
    flex-wrap: wrap;
    gap: 12px 20px;
  }
}
