/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: min(50vh, 440px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-dark);
  color: #fff;
  text-align: center;
  padding: var(--space-4) var(--space-3);
  scroll-margin-top: 4.5rem;
}

.hero-bg {
  position: absolute;
  inset: -20px;
  background: url('../images/splash.jpg') center/cover no-repeat;
  filter:blur(16px) saturate(100%) brightness(.55);
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(240deg, rgb(69 4 4) 0%, rgb(99 11 11 / 45%) 100%);
}

.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-cream);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: .8rem;
  margin-bottom: -.5rem;
}

.hero-title {
  font-family: var(--font-script);
  font-size: 6.6rem;
  line-height: 1;
  margin-top: -.1rem;
}

@media (min-width: 780px) {
  .hero-eyebrow { font-size: 1.8rem; }
  .hero-title { font-size: 8.8rem; }
}

.hero-tagline {
  margin: var(--space-1) auto 0;
  font-size: 1rem;
  max-width: 30rem;
  opacity: .9;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
  margin-top: 2.5em;
}

.btn-lg { padding: .9rem 1.6rem; font-size: 1rem; }

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, .6);
  color: #fff;
}

.btn-outline-light:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }

/* ============ Sezioni ============ */
.section { position: relative; overflow: hidden; padding: var(--space-5) 0; scroll-margin-top: 4.5rem; }
.section-light { background: var(--color-card); }
.section > .container { position: relative; z-index: 1; }

.eyebrow {
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .82rem;
  color: var(--color-primary);
  margin-bottom: .5rem;
}

.section-title-lg {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--color-brown-dark);
  margin-bottom: var(--space-2);
}

.lead {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 42rem;
  margin-bottom: var(--space-3);
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  align-items: center;
}

@media (min-width: 900px) {
  .section-grid { grid-template-columns: 1.15fr .85fr; gap: var(--space-5); }
  #dove-siamo .section-grid { grid-template-columns: .8fr 1.2fr; }
}

/* ============ Chi siamo: elenco punti di forza ============ */
.highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.highlights li {
  display: flex;
  gap: var(--space-2);
}

.highlights .icon { color: var(--color-brown); flex-shrink: 0; margin-top: .15rem; }
.highlights strong { color: var(--color-brown-dark); font-family: var(--font-display); font-size: 1.02rem; }
.highlights p { color: var(--color-text-muted); font-size: .92rem; margin-top: .15rem; }

.reviews-cta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1.3rem;
  background: var(--color-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 600;
  color: var(--color-brown-dark);
  transition: box-shadow .15s;
}

.reviews-cta:hover { box-shadow: var(--shadow-lg); }
.reviews-cta .icon { color: #e0a800; }

/* ============ Chi siamo: foto singola ============ */
.hero-photo img {
  width: 100%;
  height: min(70vw, 420px);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ============ Galleria foto (sezione dedicata) ============ */
.section-gallery { background: var(--color-bg); }
.section-gallery .eyebrow { text-align: center; }
.section-gallery .section-title-lg { text-align: center; margin-bottom: var(--space-3); }

.gallery {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--space-1);
  -webkit-overflow-scrolling: touch;
}

.gallery::-webkit-scrollbar { height: 6px; }
.gallery::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 999px; }

.gallery img {
  scroll-snap-align: center;
  flex: none;
  width: min(78vw, 320px);
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
  }

  .gallery img { width: 100%; height: 220px; }
}

/* ============ Dove siamo ============ */
#dove-siamo .section-grid { align-items: stretch; }

.hours-card {
  background: var(--color-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hours-card h2 {
  font-family: var(--font-display);
  color: var(--color-brown-dark);
  font-size: 1.2rem;
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.hours-card h2 .icon { color: var(--color-primary); flex-shrink: 0; }

.hours-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem var(--space-2);
}

.hours-list .day { font-weight: 700; font-size: .95rem; }
.hours-list .hours { color: var(--color-text-muted); font-size: .92rem; }
.hours-list .closed { color: var(--color-primary); font-weight: 700; }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 340px;
  height: 100%;
}

.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

.map-placeholder {
  height: 100%;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: var(--color-card);
  text-align: center;
  padding: var(--space-3);
  color: var(--color-text-muted);
}

/* ============ Rifiniture desktop ============ */
@media (min-width: 1000px) {
  .hero-tagline { font-size: 1.08rem; }
  .map-frame,
  .map-frame iframe,
  .map-placeholder { min-height: 420px; }
}
