/* ---------- Reset & base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --accent: #e2a15c;
  --accent-dark: #b97b3f;
  --green: #63c93d;
  --red: #e35b5b;
  --gray-bg: #f5f5f3;
  --gray-text: #8a8a8a;
  --font-serif: "Bodoni Moda", Georgia, serif;
  --font-sans: "Jost", -apple-system, sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.1;
}

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

.icon-phone, .icon-pin { width: 1em; height: 1em; fill: currentColor; vertical-align: -0.15em; margin-right: 0.4em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 1.1rem 2.4rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s ease;
}
.btn:active { transform: translateY(2px); }

.btn-light {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 6px 0 rgba(0,0,0,0.15);
}
.btn-accent {
  background: var(--accent);
  color: #2b1a0d;
  box-shadow: 0 6px 0 var(--accent-dark);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid #eee;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo img { height: 52px; width: auto; }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2.2rem;
}
.nav-link {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-close { display: none; }

.btn-call {
  display: flex;
  align-items: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  white-space: nowrap;
  margin-left: auto;
}
.btn-call .icon-phone { width: 1.2rem; height: 1.2rem; margin-right: 0.4rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 1rem;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
}
.nav-overlay { display: none; }

/* ---------- Hero ---------- */
.hero {
  background: var(--black);
  color: var(--white);
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.hero-inner { max-width: 900px; }
.hero-logo { width: clamp(140px, 22vw, 260px); margin: 0 auto 1.5rem; }
.hero-title {
  font-size: clamp(2.8rem, 11vw, 7rem);
  letter-spacing: 0.02em;
  margin-bottom: 0.8rem;
}
.hero-subtitle {
  font-size: clamp(1.1rem, 3.2vw, 1.8rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 1.8rem;
}
.hero-phone {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.hero-phone a { text-decoration: underline; font-weight: 600; }

/* ---------- Cards section ---------- */
.cards-section {
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding: 0 1px 2px;
}
.card {
  position: relative;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 2.2rem;
  overflow: hidden;
}
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 10%, rgba(0,0,0,0.25) 70%);
}
.card-overlay.dark { background: rgba(20,20,20,0.72); }
.card-content { position: relative; color: var(--white); max-width: 420px; }
.card-content h2 { font-size: 2.2rem; margin-bottom: 0.7rem; }
.card-content p { font-size: 1rem; margin-bottom: 1.4rem; line-height: 1.4; }
.card-address { display: flex; align-items: flex-start; gap: 0.3rem; }
.card-link {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.chevron { font-size: 1.3rem; line-height: 1; }

/* ---------- About / carousel section ---------- */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
}
.about-text {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
}
.about-text h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-bottom: 0.5rem; }
.about-text p { font-size: 1.05rem; line-height: 1.6; }
.about-text .btn { margin-top: 1rem; align-self: flex-start; }

.about-carousel {
  position: relative;
  overflow: hidden;
  height: 420px;
  background: #111;
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}
.carousel-track img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-dots {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}
.carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--white);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.carousel-dots button.active { background: var(--white); }

/* ---------- Orari section ---------- */
.orari-section {
  position: relative;
  color: var(--white);
  padding: 5rem 1.5rem;
  text-align: center;
  overflow: hidden;
}
.orari-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(6px) brightness(0.5);
  transform: scale(1.05);
}
.orari-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); }
.orari-inner { position: relative; max-width: 900px; margin: 0 auto; }
.orari-logo { width: 90px; margin: 0 auto 1.5rem; }
.orari-section h2 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 1.2rem; }
.orari-notice { font-size: 1.15rem; margin-bottom: 2.5rem; line-height: 1.5; }

.days-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.1rem;
  margin-bottom: 2.5rem;
}
.day-pill {
  width: 130px;
  height: 170px;
  border-radius: 100px;
  border: 2px solid var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.06);
  color: var(--white);
}
.day-pill.closed { border-color: var(--red); }
.day-name { font-family: var(--font-sans); font-weight: 700; font-size: 1.5rem; letter-spacing: 0.03em; }
.day-hours { font-size: 0.95rem; opacity: 0.9; }

/* ---------- Map section ---------- */
.map-section {
  text-align: center;
  padding: 5rem 1.5rem;
}
.map-section h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 0.8rem; }
.map-address { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 2.5rem; }
.map-embed {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}
.map-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* ---------- Listino section ---------- */
.listino-section {
  background: var(--gray-bg);
  padding: 5rem 1.5rem;
  text-align: center;
}
.listino-section h2 { font-size: clamp(2.2rem, 4.5vw, 3rem); margin-bottom: 3rem; }
.listino-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
  text-align: left;
}
.listino-col h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}
.listino-item { margin-bottom: 1.6rem; }
.listino-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 1.35rem;
}
.listino-row .dots {
  flex: 1;
  border-bottom: 2px dotted #b8b8b4;
  height: 0;
  margin-bottom: 0.35rem;
}
.listino-row .price { font-weight: 500; white-space: nowrap; }
.listino-note {
  font-size: 0.9rem;
  color: var(--gray-text);
  font-style: italic;
  margin-top: 0.2rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 4rem 1.5rem 1.5rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.footer-brand img { height: 60px; margin-bottom: 1rem; }
.footer-brand p { margin-bottom: 0.3rem; color: #ddd; }
.footer-brand a { text-decoration: underline; }
.footer-social { text-align: right; max-width: 380px; }
.footer-social p { color: #ddd; margin-bottom: 1.2rem; line-height: 1.5; }
.social-icons { display: flex; gap: 1.4rem; justify-content: flex-end; }
.social-icons svg { width: 22px; height: 22px; fill: var(--white); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #999;
}
.footer-bottom p + p { margin-top: 0.4rem; }
.footer-bottom a { color: #999; text-decoration: underline; }

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .about-section { grid-template-columns: 1fr; }
  .about-text { padding: 3.5rem 1.8rem; }
  .about-carousel { height: 320px; }
  .listino-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-social { text-align: left; }
  .social-icons { justify-content: flex-start; }
}

@media (max-width: 700px) {
  .cards-section { grid-template-columns: 1fr; }
  .card { min-height: 320px; }

  .nav-toggle { display: flex; }
  .btn-call span { display: none; }
  .btn-call .icon-phone { margin-right: 0; }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--black);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1100;
    padding: 2rem;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 1.8rem; margin-top: 3rem; }
  .main-nav .nav-link { color: var(--white); font-size: 1.2rem; }
  .nav-close {
    display: block;
    position: absolute;
    top: 1.2rem;
    right: 1.4rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
  }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1050;
  }
  .nav-overlay.open { display: block; }

  .header-inner { padding: 0.7rem 1rem; }
  .logo img { height: 40px; }
  .btn-call { margin-left: 0.5rem; }
  .btn-call .icon-phone { width: 1.5rem; height: 1.5rem; margin: 0; }

  .days-grid { gap: 0.7rem; }
  .day-pill { width: 100px; height: 130px; border-radius: 80px; }
  .day-name { font-size: 1.1rem; }
  .day-hours { font-size: 0.8rem; }

  .listino-row { font-size: 1.1rem; }
  .map-embed iframe { height: 300px; }
  .footer-inner { flex-direction: column; gap: 2rem; }
}
