﻿:root {
  --bg: #071512;
  --bg-soft: #10221d;
  --panel: rgba(255, 255, 255, 0.08);
  --text: #f6f4ee;
  --muted: #c7d1cb;
  --line: rgba(255, 255, 255, 0.12);
  --green: #2f7a55;
  --green-soft: #5cae7f;
  --gold: #d8c18f;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  overscroll-behavior: none;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background-color: #153d2b;
  background-image:
    radial-gradient(circle at top, rgba(92, 174, 127, 0.24), transparent 30%),
    linear-gradient(180deg, #153d2b 0%, var(--bg) 48%, #09110f 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.8));
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.hero,
.section,
.footer {
  position: relative;
  z-index: 1;
}

.topbar,
.hero-content,
.section,
.footer {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 220px;
  height: 146px;
  padding: 0;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.22));
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 50px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.social-card:hover,
.photo-card:hover {
  transform: translateY(-2px);
}

.icon,
.social-icon {
  flex: 0 0 auto;
}

.icon svg,
.social-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.button-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-soft), var(--green));
  color: #06110d;
  box-shadow: 0 14px 35px rgba(92, 174, 127, 0.3);
}

.button-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: shimmer 5s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 80%, 100% { left: -100%; }
  90% { left: 100%; }
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line);
}

.hero {
  padding-bottom: 3rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 4.5rem 0 1.5rem;
  align-items: stretch;
}

.hero-copy,
.panel,
.hours-card,
.photo-card {
}

.hero-copy {
  padding: 1rem 0;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker {
  max-width: none;
  margin: 0;
  color: var(--gold);
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1,
h2 {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 {
  max-width: 16ch;
  font-size: clamp(3rem, 5.5vw, 5rem);
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.social-section h2 {
  line-height: 1.08;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.lead,
.panel p,
.hours-side p,
.contact-panel p,
.status-note,
.footer p,
.photo-card figcaption p {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  max-width: 58ch;
  margin: 1.2rem 0 1.8rem;
  font-size: 1.07rem;
}

.hero-actions,
.contact-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.panel {
  padding: 1.25rem;
}

.feature-label,
.hours-side-title,
.gallery-tag,
.social-name {
  margin: 0 0 0.5rem;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: 5rem 0;
}

.intro {
  width: min(calc(100% - 2rem), 1260px);
  margin-top: 5rem;
  margin-bottom: 5rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(4, 10, 8, 0.98), rgba(4, 10, 8, 0.92));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.intro-visual {
  position: relative;
  min-height: clamp(420px, 44vw, 560px);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  align-items: flex-end;
  border-radius: 26px 26px 20px 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(4, 10, 8, 0.98), rgba(4, 10, 8, 0.94));
}

.intro-slide {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(72%, 920px);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.intro-slide.is-active {
  opacity: 1;
  animation: kenBurns 4.5s ease forwards;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.intro-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 10, 8, 0.94) 0%, rgba(4, 10, 8, 0.85) 16%, rgba(4, 10, 8, 0.5) 36%, rgba(4, 10, 8, 0.2) 56%, rgba(4, 10, 8, 0.42) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%),
    linear-gradient(180deg, rgba(4, 10, 8, 0) 50%, rgba(4, 10, 8, 0.72) 100%);
}

/* Gallery dots */
.gallery-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}

.gallery-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 1px solid rgba(216, 193, 143, 0.5);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease, width 0.3s ease;
}

.gallery-dot:hover {
  border-color: var(--gold);
}

.gallery-dot.is-active {
  width: 18px;
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(216, 193, 143, 0.4);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.intro-heading {
  position: relative;
  z-index: 1;
  max-width: 23rem;
  padding-inline: 1rem;
  margin: 0;
  gap: 0.55rem;
}

.intro h2 {
  max-width: 6ch;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.intro-lead {
  max-width: 20ch;
  margin: 0;
  color: rgba(246, 244, 238, 0.92);
  line-height: 1.65;
  font-size: 1.05rem;
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.intro .intro-heading {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.intro-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 100%;
  margin-top: 0;
  padding: 0.75rem 0.3rem 0.3rem;
}

.intro .panel {
  padding: 1.1rem;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(7, 16, 13, 0.82), rgba(7, 16, 13, 0.92)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent);
}

.intro .panel h3 {
  margin-bottom: 0.45rem;
  font-size: 1.08rem;
}

.intro .panel p {
  color: rgba(246, 244, 238, 0.84);
}

.panel,
.hours-card,
.photo-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.panel-highlight {
  background:
    linear-gradient(135deg, rgba(92, 174, 127, 0.22), rgba(255, 255, 255, 0.05)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.photo-card {
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}

.photo-frame {
  position: relative;
  overflow: hidden;
}

.photo-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
}

.photo-card figcaption {
  padding: 1.2rem;
}

/* --- Listino servizi --- */
.prices h2 {
  max-width: none;
}

.prices-group {
  margin-bottom: 2rem;
}

.prices-group:last-of-type {
  margin-bottom: 2.5rem;
}

.prices-group-title {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-family: "Oswald", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.prices-list {
  display: grid;
  gap: 0.7rem;
}

.price-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  border-left: 2px solid rgba(216, 193, 143, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.price-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, transparent 60%, rgba(216, 193, 143, 0.04));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.price-card:hover::before {
  opacity: 1;
}

.price-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(10, 26, 18, 0.4);
  border-left-color: var(--gold);
}

.price-card--featured {
  background: linear-gradient(var(--bg), var(--bg)) padding-box,
              linear-gradient(135deg, rgba(216,193,143,0.5), rgba(216,193,143,0.1), rgba(216,193,143,0.5)) border-box;
  border: 1px solid transparent;
  border-left: 2px solid var(--gold);
  background-size: 100% 100%, 200% 200%;
  animation: borderShine 4s linear infinite;
}

@keyframes borderShine {
  0% { background-position: 0 0, 0% 0%; }
  100% { background-position: 0 0, 200% 200%; }
}

.price-badge {
  position: absolute;
  top: -0.1rem;
  right: 0.75rem;
  padding: 0.2rem 0.6rem;
  background: var(--gold);
  color: var(--bg);
  font-family: "Oswald", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0 0 6px 6px;
}

.price-icon {
  flex-shrink: 0;
  color: var(--gold);
  /* slot fisso: icone singole e doppie occupano la stessa larghezza, testi allineati */
  width: 61px;
  height: 28px;
}

.price-name {
  flex: 1;
  min-width: 0;
}

.price-card h4 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.3;
}

.price-card h4 small {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 400;
}

.price-value {
  flex-shrink: 0;
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.prices-cta {
  text-align: center;
  padding-top: 0.5rem;
}

.prices-cta-text {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.5;
}

.prices-cta .button {
  display: inline-flex;
}

/* --- Recensioni --- */
.reviews-badge {
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 1.3rem 2.6rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  text-align: center;
}

.google-icon { flex-shrink: 0; }

.reviews-counter {
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  min-width: 2.2ch;
  line-height: 1.1;
}

.reviews-stars-row {
  display: inline-flex;
  gap: 0.15rem;
}

.review-star {
  color: rgba(216, 193, 143, 0.2);
  font-size: 1.3rem;
  transition: color 0.4s ease;
}

.review-star.is-filled {
  color: var(--gold);
}

.reviews-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.reviews-subtitle {
  margin: 0;
  color: var(--gold);
  font-size: 0.85rem;
  opacity: 0.7;
  letter-spacing: 0.05em;
  justify-self: center;
  text-align: center;
}

/* --- Carousel --- */
.carousel {
  position: relative;
  overflow: hidden;
  /* gutter laterale: le frecce vivono qui, senza coprire le card */
  padding: 0 3.2rem 2.5rem;
}

.carousel-track {
  display: flex;
  gap: 0.9rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-card {
  position: relative;
  flex: 0 0 calc((100% - 1.8rem) / 3);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.5rem 1.3rem 1.3rem;
  overflow: hidden;
}

.review-quote {
  position: absolute;
  top: 0.4rem;
  left: 0.8rem;
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.1;
  pointer-events: none;
  user-select: none;
  animation: quoteFloat 3s ease-in-out infinite;
}

@keyframes quoteFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-soft), var(--green));
  border: 2px solid var(--gold);
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: box-shadow 0.3s ease;
}

.review-avatar:hover {
  box-shadow: 0 0 14px rgba(92, 174, 127, 0.4);
}

.review-name {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
}

.review-stars {
  margin: 0;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.review-text-wrap {
  max-height: 6.6em;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.review-text-wrap.is-expanded {
  max-height: 500px;
}

.review-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

.review-read-more {
  display: none;
  margin-top: 0.4rem;
  padding: 0;
  border: none;
  background: none;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: opacity 0.2s ease;
}

.review-read-more:hover { opacity: 0.7; }

.review-read-more.is-visible { display: inline-block; }

/* Carousel arrows */
.carousel-arrow {
  position: absolute;
  top: calc(50% - 1.25rem);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(216, 193, 143, 0.4);
  border-radius: 999px;
  background: rgba(7, 21, 18, 0.92);
  color: var(--gold);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, opacity 180ms ease;
  z-index: 2;
}

.carousel-prev { left: 0.3rem; }
.carousel-next { right: 0.3rem; }

.carousel-arrow:hover {
  background: rgba(47, 122, 85, 0.25);
  border-color: rgba(216, 193, 143, 0.6);
}

.carousel-arrow:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

/* Carousel dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(216, 193, 143, 0.4);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.carousel-dot:hover { border-color: var(--gold); }

.carousel-dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.25);
}



/* --- Prodotti (vetrina a fasce) --- */
.product-shelf {
  margin-bottom: 2rem;
}

.shelf-title {
  color: var(--gold);
  font-family: "Oswald", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.shelf-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}

.shelf-track::-webkit-scrollbar {
  display: none;
}

.product-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  flex: 0 0 150px;
  border-radius: 12px;
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  border-color: rgba(193, 163, 98, 0.25);
}

/* Photo */
.product-img {
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.product-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.06);
}

/* Name + price bar */
.product-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  padding: 0.55rem 0.7rem;
}

.product-info h3 {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.3;
  flex: 1;
  min-width: 0;
}

.product-price {
  flex-shrink: 0;
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* Chevron */
.product-info::after {
  content: "";
  display: inline-block;
  width: 0.35rem;
  height: 0.35rem;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.35;
  flex-shrink: 0;
  margin-left: 0.2rem;
}

.product-card.is-open .product-info::after {
  transform: rotate(-135deg);
  opacity: 0.85;
}

/* Description overlay */
.product-desc {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.7rem;
  background: rgba(10, 26, 18, 0.92);
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.product-card.is-open .product-desc {
  opacity: 1;
  pointer-events: auto;
}

.product-card.is-open .product-img img {
  filter: blur(3px);
  transition: filter 0.3s ease, transform 0.4s ease;
}

/* Su desktop (mouse) la descrizione appare anche al passaggio del cursore */
@media (hover: hover) and (pointer: fine) {
  .product-card:hover .product-desc {
    opacity: 1;
    pointer-events: auto;
  }

  .product-card:hover .product-img img {
    filter: blur(3px);
    transition: filter 0.3s ease, transform 0.4s ease;
  }

  .product-card:hover .product-info::after {
    transform: rotate(-135deg);
    opacity: 0.85;
  }
}

.product-desc p {
  margin: auto 0;
  color: #fff;
  font-size: 0.8rem;
  line-height: 1.55;
  text-align: center;
}

.hours-card {
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.hours-card::before {
  content: "";
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border: 2px solid rgba(216, 193, 143, 0.07);
  border-radius: 999px;
  pointer-events: none;
}

.hours-card::after {
  content: "";
  position: absolute;
  top: calc(1.2rem + 12px);
  right: calc(1.5rem + 26px);
  width: 2px;
  height: 14px;
  background: rgba(216, 193, 143, 0.08);
  transform-origin: bottom center;
  transform: rotate(30deg);
  pointer-events: none;
}

/* Status indicator */
.hours-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  flex-shrink: 0;
}

.status-dot.is-open {
  background: var(--green-soft);
  box-shadow: 0 0 10px rgba(92, 174, 127, 0.6);
  animation: statusPulse 2s ease-in-out infinite;
}

.status-dot.is-closed {
  background: #c94a4a;
  box-shadow: 0 0 6px rgba(201, 74, 74, 0.35);
  animation: statusPulseClosed 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(92, 174, 127, 0.5); }
  50% { opacity: 0.8; transform: scale(0.9); box-shadow: 0 0 0 6px rgba(92, 174, 127, 0); }
}

@keyframes statusPulseClosed {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 74, 74, 0.4); }
  50% { box-shadow: 0 0 0 5px rgba(201, 74, 74, 0); }
}

.hours-grid {
  display: grid;
  gap: 0.6rem;
}

.hours-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  column-gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  transition: transform 250ms ease, border-color 250ms ease, background-color 250ms ease, box-shadow 250ms ease, opacity 250ms ease;
}

/* Stagger entrance */
.hours-card .hours-row {
  opacity: 0;
  transform: translateX(-14px);
}

.hours-card.is-visible .hours-row {
  animation: rowSlideIn 0.5s ease forwards;
}

.hours-card.is-visible .hours-row.is-closed {
  animation: rowSlideInDim 0.5s ease forwards;
}

.hours-card.is-visible .hours-row:nth-child(1) { animation-delay: 0s; }
.hours-card.is-visible .hours-row:nth-child(2) { animation-delay: 0.07s; }
.hours-card.is-visible .hours-row:nth-child(3) { animation-delay: 0.14s; }
.hours-card.is-visible .hours-row:nth-child(4) { animation-delay: 0.21s; }
.hours-card.is-visible .hours-row:nth-child(5) { animation-delay: 0.28s; }
.hours-card.is-visible .hours-row:nth-child(6) { animation-delay: 0.35s; }
.hours-card.is-visible .hours-row:nth-child(7) { animation-delay: 0.42s; }

@keyframes rowSlideIn {
  from { opacity: 0; transform: translateX(-14px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes rowSlideInDim {
  from { opacity: 0; transform: translateX(-14px); }
  to { opacity: 0.45; transform: translateX(0); }
}

.hours-row.is-today {
  background: linear-gradient(135deg, rgba(92, 174, 127, 0.28), rgba(255, 255, 255, 0.1));
  border-color: rgba(216, 193, 143, 0.55);
  box-shadow: 0 0 28px rgba(92, 174, 127, 0.1), 0 18px 35px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px) scale(1.01);
}

.hours-day {
  font-weight: 700;
}

.hours-badge {
  display: inline-flex;
  visibility: hidden;
  width: 3.9rem;
  align-items: center;
  justify-content: center;
  padding: 0.24rem 0.55rem;
  border-radius: 999px;
  background: rgba(216, 193, 143, 0.18);
  color: var(--gold);
  font-family: "Oswald", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hours-row.is-today .hours-badge {
  visibility: visible;
}

.hours-row strong,
.contact-panel a[href^="tel"],
.footer-links a:hover {
  color: var(--gold);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.2rem;
}

.map-panel {
  padding: 0;
  overflow: hidden;
}

.map-frame {
  height: 100%;
  min-height: 360px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.9) contrast(1.05);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 2rem 1.5rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.social-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  opacity: 0.2;
  transition: opacity 0.3s ease, width 0.3s ease;
}

.social-card--ig::before {
  background: linear-gradient(180deg, #833ab4, #fd1d1d, #fcb045);
}

.social-card--tk::before {
  background: linear-gradient(180deg, #25f4ee, #fe2c55);
}

.social-card--fb::before {
  background: linear-gradient(180deg, #1877f2, #0a5dc2);
}

.social-card:hover::before {
  opacity: 0.4;
  width: 4px;
}

.social-card:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 193, 143, 0.4);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.photo-card:hover {
  border-color: rgba(216, 193, 143, 0.45);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease, transform 0.3s ease;
}

.social-icon svg {
  width: 2.4rem;
  height: 2.4rem;
  fill: currentColor;
}

.social-card:hover .social-icon {
  background: rgba(92, 174, 127, 0.2);
  transform: scale(1.08);
}

.social-name {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.social-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.social-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
  color: var(--gold);
  font-family: "Oswald", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.social-card:hover .social-arrow {
  transform: translateX(4px);
}

.contact-title {
  margin: 0 0 0.75rem;
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.05;
}

.contact-panel > p + .contact-title,
.contact-panel > p + .contact-actions,
.contact-panel .contact-actions {
  margin-top: 1.25rem;
}

.contact-note {
  width: 100%;
  margin-bottom: 0.25rem;
}

.footer {
  padding: 0 0 2rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
}

.footer-payments {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  flex-wrap: wrap;
}

.payment-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 2rem;
  border-radius: 4px;
  overflow: hidden;
}

.payment-logo svg {
  width: 100%;
  height: 100%;
}

.payment-satispay svg {
  width: 1.3rem;
  height: 1.3rem;
}

.footer-links a {
  color: var(--muted);
}

.legal-page {
  min-height: 100vh;
}

.legal-wrap {
  width: min(calc(100% - 2rem), 820px);
  margin: 0 auto;
  padding: 4rem 0;
}

.legal-card {
  padding: 1.5rem;
}

.legal-card h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  max-width: none;
}

.legal-card h2 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  max-width: none;
  margin-top: 2rem;
}

.legal-card h3,
.legal-card h4 {
  font-size: 1.05rem;
  text-transform: none;
  margin-top: 1.5rem;
}

.legal-card table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  min-width: 420px;
}

.legal-card .table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.legal-card th,
.legal-card td {
  padding: 0.6rem 0.75rem;
  text-align: left;
  vertical-align: top;
  color: var(--muted);
  line-height: 1.5;
}

.legal-card th {
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.legal-card td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .hero-content,
  .contact-layout,
  .photo-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .intro-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .prices-cta .button {
    width: auto;
  }

  .review-card {
    flex: 0 0 calc((100% - 0.9rem) / 2);
  }


  h1,
  h2 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .brand-logo {
    width: 192px;
    height: 128px;
  }

  .brand {
    margin-left: -0.75rem;
  }

  .topbar,
  .footer-inner {
    gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-bottom: 2rem;
  }

  .hero-content {
    padding-top: 2.5rem;
  }

  .intro-layout,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .section.intro {
    width: min(calc(100% - 2rem), var(--container));
    padding: 0.3rem;
  }

  .intro-visual {
    min-height: 23rem;
    padding: 1rem;
    border-radius: 22px 22px 18px 18px;
    background: linear-gradient(180deg, rgba(4, 10, 8, 0.98), rgba(4, 10, 8, 0.92));
  }

  .intro-slide {
    inset: 0;
    width: auto;
  }

  .intro-visual::after {
    background:
      linear-gradient(90deg, rgba(4, 10, 8, 0.78) 0%, rgba(4, 10, 8, 0.4) 30%, rgba(4, 10, 8, 0.15) 58%, rgba(4, 10, 8, 0.35) 100%),
      linear-gradient(180deg, rgba(4, 10, 8, 0.1) 0%, rgba(4, 10, 8, 0.15) 45%, rgba(4, 10, 8, 0.6) 100%);
  }

  .intro-heading {
    max-width: 14rem;
    padding-inline: 0.6rem;
    gap: 0.45rem;
  }

  .intro h2 {
    max-width: 5ch;
    font-size: clamp(1.85rem, 8.8vw, 2.85rem);
    line-height: 0.96;
  }

  .intro-lead {
    max-width: 16ch;
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .intro .panel {
    padding: 0.95rem;
    background:
      linear-gradient(180deg, rgba(7, 16, 13, 0.75), rgba(7, 16, 13, 0.88)),
      linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent);
  }

  .intro .panel h3 {
    font-size: 0.98rem;
    margin-bottom: 0.35rem;
  }

  .intro .panel p {
    font-size: 0.93rem;
    line-height: 1.5;
  }

  .intro-layout {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 0.35rem 0 0;
  }

  .prices-cta .button {
    width: 100%;
  }

  .review-card {
    flex: 0 0 100%;
  }

  .carousel { padding: 0 2.6rem 2.5rem; }
  .carousel-prev { left: 0.15rem; }
  .carousel-next { right: 0.15rem; }
  .carousel-arrow { width: 36px; height: 36px; }


  .section {
    padding: 3.5rem 0;
  }

  .panel,
  .hours-card,
  .photo-card {
    border-radius: 22px;
  }

  .photo-frame img {
    height: auto;
    max-height: 560px;
  }

  .hours-row {
    grid-template-columns: minmax(0, 1fr) auto auto;
    column-gap: 0.6rem;
  }

  .hours-badge {
    visibility: hidden;
    width: 0;
    padding: 0;
    overflow: hidden;
  }

  .hours-row.is-today .hours-badge {
    visibility: visible;
    width: auto;
    padding: 0.24rem 0.55rem;
  }

  .button,
  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    justify-content: center;
  }

  .cookie-btn {
    width: auto;
    min-width: 120px;
  }
}

.cookie-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  padding: 0;
  border: none;
  background: none;
  color: var(--muted);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.cookie-close:hover {
  color: var(--text);
}

.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 360px;
  padding: 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.map-placeholder a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1rem 2.5rem 1rem 1.5rem;
  background: rgba(7, 16, 13, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.3);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-banner a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cookie-btn {
  min-height: 40px;
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

.cookie-btn.button-secondary {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text);
}

/* --- Animazioni di ingresso --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* --- Animazione titolo hero --- */
.hero-copy h1,
.hero-copy .lead,
.hero-copy .hero-actions {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeIn 0.8s ease forwards;
}

.hero-copy .lead {
  animation-delay: 0.2s;
}

.hero-copy .hero-actions {
  animation-delay: 0.4s;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Scroll indicator --- */
.scroll-indicator {
  display: flex;
  justify-content: center;
  padding-bottom: 1rem;
}

.scroll-indicator svg {
  color: var(--gold);
  opacity: 0.5;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* --- WhatsApp floating button --- */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-soft), var(--green));
  box-shadow: 0 8px 28px rgba(92, 174, 127, 0.4);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(92, 174, 127, 0.55);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* --- Hover dinamici card --- */
.panel:hover,
.hours-row:hover {
  border-color: rgba(216, 193, 143, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22), 0 0 20px rgba(92, 174, 127, 0.08);
}


.button-primary:hover {
  box-shadow: 0 16px 42px rgba(92, 174, 127, 0.45);
}

/* --- Parallax hero --- */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(92, 174, 127, 0.15), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(47, 122, 85, 0.1), transparent 50%);
  background-size: 100% 100%;
  animation: heroGlow 20s ease-in-out infinite;
  transform: translateY(var(--parallax-y, 0)) translateZ(0);
  will-change: transform;
  pointer-events: none;
  z-index: 0;
}

/* --- Hero animated glow --- */
@keyframes heroGlow {
  0%, 100% { background-position: 30% 20%, 70% 80%; }
  50% { background-position: 50% 40%, 40% 60%; }
}

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