:root {
  --primary: #1a6b3c;
  --primary-dark: #134f2d;
  --accent: #f5a623;
  --text: #1a1a2e;
  --text-light: #555;
  --bg: #f9f9f6;
  --white: #fff;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.10);
  --font: 'Nunito', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ── HEADER ── */
.site-header {
  background: var(--primary);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-logo {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-logo span { color: var(--accent); }
.header-cta {
  background: var(--accent);
  color: var(--text);
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 15px;
  transition: background .2s;
}
.header-cta:hover { background: #e09510; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #2d9e5f 100%);
  color: #fff;
  padding: 90px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/hero-bg.jpg') center/cover no-repeat;
  opacity: .18;
}
.hero .container { position: relative; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: .5px;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero p {
  font-size: clamp(16px, 2vw, 20px);
  opacity: .9;
  max-width: 650px;
  margin: 0 auto 32px;
}
.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--text);
  font-weight: 800;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 17px;
  box-shadow: 0 4px 20px rgba(245,166,35,.4);
  transition: transform .2s, box-shadow .2s;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,166,35,.5); }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 32px; font-weight: 900; color: var(--accent); }
.hero-stat span { font-size: 13px; opacity: .8; }

/* ── SECTION TITLES ── */
.section { padding: 72px 0; }
.section-alt { background: #fff; }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { font-size: clamp(22px, 3.5vw, 36px); font-weight: 800; margin-bottom: 10px; }
.section-title p { color: var(--text-light); font-size: 17px; max-width: 600px; margin: 0 auto; }

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .2s;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-icon { font-size: 36px; margin-bottom: 14px; }
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-light); }

/* ── ITINERARI CARDS ── */
.itinerari-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.itinerario-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.itinerario-card:hover { transform: translateY(-5px); }
.itinerario-card img { width: 100%; height: 210px; object-fit: cover; }
.itinerario-body { padding: 22px; }
.itinerario-badge {
  display: inline-block;
  background: #e8f5ee;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.itinerario-body h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.itinerario-body p { font-size: 14px; color: var(--text-light); margin-bottom: 16px; }
.itinerario-meta { display: flex; gap: 16px; font-size: 13px; color: var(--text-light); flex-wrap: wrap; }
.itinerario-meta span { display: flex; align-items: center; gap: 5px; }
.itinerario-price { font-size: 20px; font-weight: 900; color: var(--primary); margin-top: 14px; }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.review-stars { color: #f5a623; font-size: 18px; margin-bottom: 10px; }
.review-text { font-size: 14px; color: var(--text-light); font-style: italic; margin-bottom: 14px; line-height: 1.7; }
.review-author { font-weight: 700; font-size: 14px; }
.review-source { font-size: 12px; color: #aaa; }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e8e8e8; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  font-family: var(--font);
}
.faq-question::after { content: '+'; font-size: 22px; color: var(--primary); transition: transform .2s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 18px; font-size: 15px; color: var(--text-light); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ── BOOKING SECTION ── */
.booking-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 72px 0;
  color: #fff;
}
.booking-section .section-title h2 { color: #fff; }
.booking-section .section-title p { color: rgba(255,255,255,.8); }

/* ── FOOTER ── */
.site-footer {
  background: #111;
  color: rgba(255,255,255,.7);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media(max-width:768px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer-brand span { color: var(--accent); }
.footer-desc { font-size: 14px; line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 14px; letter-spacing: .5px; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; font-size: 14px; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; text-align: center; font-size: 13px; }

/* ── UTILITY ── */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: background .2s, transform .2s;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }

.rating-bar { display: flex; align-items: center; gap: 10px; margin-bottom: 30px; }
.rating-big { font-size: 48px; font-weight: 900; color: var(--primary); }
.rating-stars { font-size: 22px; color: var(--accent); }
.rating-count { font-size: 14px; color: var(--text-light); }

@media(max-width:600px) {
  .hero { padding: 60px 0 50px; }
  .hero-stats { gap: 24px; }
  .section { padding: 48px 0; }
}
