/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: #2c2a26;
  background: #faf6ef;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 .6em;
  color: #1f3a1d;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }

.container { width: min(1160px, 92%); margin: 0 auto; }
.container.narrow { max-width: 760px; }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #8a6a3b;
  font-weight: 500;
  margin-bottom: .9rem;
}

.lead { font-size: 1.1rem; color: #55524c; max-width: 60ch; }

.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head .lead { margin-left: auto; margin-right: auto; }

.center { text-align: center; margin-top: 2.5rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-lg { padding: 1.05rem 2.1rem; font-size: 1rem; }
.btn-primary {
  background: #1f3a1d;
  color: #faf6ef;
  box-shadow: 0 8px 24px -10px rgba(31, 58, 29, .55);
}
.btn-primary:hover { background: #2d4f29; transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: #faf6ef;
  border: 1.5px solid rgba(250, 246, 239, .7);
}
.btn-ghost:hover { background: rgba(250, 246, 239, .12); }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1rem 0;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.navbar.scrolled {
  background: rgba(250, 246, 239, .96);
  backdrop-filter: blur(8px);
  padding: .6rem 0;
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.nav-inner { display: flex; align-items: center; gap: 2rem; }
.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #faf6ef;
  transition: color .3s ease;
}
.scrolled .brand { color: #1f3a1d; }
.nav-links { display: flex; gap: 1.8rem; margin-left: auto; }
.nav-links a {
  font-size: .92rem;
  color: rgba(250, 246, 239, .9);
  font-weight: 500;
  transition: color .2s ease;
  position: relative;
}
.nav-links a:hover { color: #faf6ef; }
.scrolled .nav-links a { color: #2c2a26; }
.scrolled .nav-links a:hover { color: #1f3a1d; }
.nav-cta { font-size: .9rem; padding: .65rem 1.3rem; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #faf6ef;
  margin: 5px 0;
  transition: background .3s ease;
}
.scrolled .nav-toggle span { background: #1f3a1d; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #faf6ef;
  overflow: hidden;
}
.hero-image { position: absolute; inset: 0; z-index: 0; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 30, 18, .35) 0%, rgba(20, 30, 18, .55) 60%, rgba(20, 30, 18, .75) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 8rem 0 5rem; }
.hero-content h1 {
  color: #faf6ef;
  margin-bottom: 1rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  max-width: 38ch;
  color: rgba(250, 246, 239, .92);
  margin-bottom: 2.2rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-features li {
  font-size: .9rem;
  letter-spacing: .05em;
  color: rgba(250, 246, 239, .85);
  padding-left: 1.4rem;
  position: relative;
}
.hero-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #c9a04a;
}

/* ===== Two-col layout ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.two-col.reverse .col-image { order: 1; }
.col-image img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.3);
}

/* ===== Cards (piatti) ===== */
.piatti { background: #f3ede1; }
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.card {
  background: #faf6ef;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px -20px rgba(0,0,0,.25);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 25px 50px -25px rgba(0,0,0,.35); }
.card-image { aspect-ratio: 4/3; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover .card-image img { transform: scale(1.05); }
.card-body { padding: 1.5rem 1.6rem 1.8rem; }
.card-body h3 { color: #1f3a1d; margin-bottom: .4rem; }
.card-body p { color: #65615a; margin: 0; font-size: .95rem; }

/* ===== Dove siamo ===== */
.dove { background: #1f3a1d; color: #faf6ef; }
.dove h2, .dove h3, .dove h4 { color: #faf6ef; }
.dove .eyebrow { color: #c9a04a; }
.dove .lead { color: rgba(250, 246, 239, .8); }

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}
.info-item {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(250, 246, 239, .15);
  border-radius: 6px;
}
.info-icon { font-size: 2rem; margin-bottom: .8rem; }
.info-item h4 { margin: 0; font-size: 1.05rem; }

.map-card {
  display: block;
  background: rgba(250, 246, 239, .07);
  border: 1px solid rgba(250, 246, 239, .15);
  border-radius: 6px;
  padding: 2.5rem;
  text-align: center;
  transition: background .2s ease, transform .2s ease;
}
.map-card:hover { background: rgba(250, 246, 239, .12); transform: translateY(-3px); }
.map-card h3 { margin-bottom: .3rem; }
.map-card p { color: rgba(250, 246, 239, .75); margin-bottom: 1rem; }
.map-link { color: #c9a04a; font-weight: 500; }

/* ===== Recensioni ===== */
.recensioni { background: #faf6ef; }
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}
.review {
  background: #fff;
  margin: 0;
  padding: 2rem;
  border-radius: 6px;
  border-left: 3px solid #c9a04a;
  box-shadow: 0 6px 20px -12px rgba(0,0,0,.15);
}
.review blockquote {
  margin: 0 0 1rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.08rem;
  color: #3a3833;
  line-height: 1.5;
}
.review figcaption { color: #8a6a3b; font-size: .9rem; letter-spacing: .05em; font-weight: 500; }

/* ===== FAQ ===== */
.faq { background: #f3ede1; }
.faq-list { display: grid; gap: 1rem; }
.faq-item {
  background: #faf6ef;
  border-radius: 6px;
  padding: 1.4rem 1.6rem;
  border: 1px solid #e6dccb;
  transition: box-shadow .2s ease;
}
.faq-item[open] { box-shadow: 0 6px 20px -10px rgba(0,0,0,.1); }
.faq-item summary {
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1f3a1d;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.6rem;
  color: #8a6a3b;
  transition: transform .2s ease;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 1rem 0 0; color: #55524c; }

/* ===== CTA Final ===== */
.cta-final {
  position: relative;
  color: #faf6ef;
  text-align: center;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31, 58, 29, .7), rgba(31, 58, 29, .85));
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { color: #faf6ef; max-width: 22ch; margin-left: auto; margin-right: auto; }
.cta-content p { color: rgba(250, 246, 239, .85); margin-bottom: 2rem; letter-spacing: .03em; }

/* ===== Footer ===== */
.footer {
  background: #14211a;
  color: rgba(250, 246, 239, .8);
  padding: 4rem 0 1.5rem;
}
.footer h3, .footer h4 { color: #faf6ef; }
.footer-brand { font-size: 1.5rem; margin-bottom: 1rem; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-grid h4 { font-size: .85rem; letter-spacing: .2em; text-transform: uppercase; font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 1rem; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: .5rem; font-size: .92rem; }
.footer-list a { transition: color .2s ease; }
.footer-list a:hover { color: #c9a04a; }
.footer-bottom {
  border-top: 1px solid rgba(250, 246, 239, .1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .85rem;
}
.footer-bottom p { margin: 0; }
.footer-legal a:hover { color: #c9a04a; }

/* ===== WhatsApp FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 40;
  box-shadow: 0 10px 30px -10px rgba(37, 211, 102, .6);
  transition: transform .2s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); }

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 70%;
    max-width: 320px;
    height: 100vh;
    background: #faf6ef;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right .3s ease;
    box-shadow: -20px 0 60px -20px rgba(0,0,0,.2);
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: #1f3a1d !important; font-size: 1.05rem; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse .col-image { order: 0; }
  .col-image img { max-height: 380px; }
  .hero-content { padding: 7rem 0 4rem; }
  .hero-features { gap: 1.4rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
