:root{
  /* New palette: warm terracotta + olive + sand (NO blue) */
  --bg: #1b1410;
  --bg-2: #241a14;
  --surface: rgba(255,255,255,0.06);
  --surface-2: rgba(255,255,255,0.10);
  --text: #f5f0ea;
  --muted: rgba(245,240,234,0.78);
  --accent: #d07a54;    /* terracotta */
  --accent-2: #6c7f4b;  /* olive */
  --accent-3: #e0b35c;  /* warm sand */
  --border: rgba(255,255,255,0.16);
  --shadow: 0 14px 40px rgba(0,0,0,0.40);
  --radius: 18px;
  --max: 1160px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size:16px;
  line-height:1.65;
  color: var(--text);
  background:
    radial-gradient(1100px 520px at 10% -10%, rgba(208,122,84,0.26), transparent 55%),
    radial-gradient(900px 520px at 95% 20%, rgba(108,127,75,0.22), transparent 55%),
    radial-gradient(760px 460px at 70% 110%, rgba(224,179,92,0.18), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}

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

.container{ width:min(var(--max), calc(100% - 40px)); margin-inline:auto; }

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:12px; top:12px; width:auto; height:auto;
  padding:10px 12px; background:#2a1f18;
  border:1px solid var(--border); border-radius:12px; z-index:9999;
}

.header{
  position:sticky; top:0; z-index:1000;
  backdrop-filter: blur(10px);
  background: rgba(27,20,16,0.70);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:14px 0;
}
.brand{ display:flex; align-items:center; gap:12px; font-weight:800; letter-spacing:0.2px; }
.brand__mark{
  width:42px; height:42px; border-radius:16px;
  background: linear-gradient(135deg, rgba(208,122,84,0.95), rgba(224,179,92,0.92));
  box-shadow: var(--shadow);
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(255,255,255,0.16);
}
.brand__mark i{ color:#2a1f18; font-size:18px; }

.nav{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
}
.nav a{
  padding:8px 10px; border-radius:12px;
  color: var(--muted);
  border:1px solid transparent;
}
.nav a:hover{
  text-decoration:none;
  border-color: var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--text);
}
.nav__cta{
  background: rgba(208,122,84,0.18);
  border-color: rgba(208,122,84,0.40) !important;
  color: var(--text) !important;
}

.section{ padding:76px 0; position:relative; }
.section--tight{ padding:48px 0; }

.panel{
  background: var(--surface);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.section--image::before{
  content:"";
  position:absolute; inset:0;
  background-position:center; background-size:cover; background-repeat:no-repeat;
  filter: saturate(1.05) contrast(1.05);
  opacity:0.24;
  pointer-events:none;
}
.section--image::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(
51deg, rgb(27 20 16 / 87%), rgb(27 20 16 / 67%));
  pointer-events:none;
}
.section--image .container{ position:relative; z-index:1; }

/* Alternating background images */
#hero.section--image::before{ background-image:url("../images/hero-rome.jpg"); }
#seasons.section--image::before{ background-image:url("../images/italy-coast.jpg"); }
#routes.section--image::before{ background-image:url("../images/tuscany-vineyards.jpg"); }
#reviews.section--image::before{ background-image:url("../images/venice-evening.jpg"); }
#contact.section--image::before{ background-image:url("../images/milan-street.jpg"); }

.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: var(--muted);
  font-size:0.92rem;
}
.badge i{ color: rgba(224,179,92,0.95); }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  user-select:none;
  font-weight:700;
}
.btn:hover{
  text-decoration:none;
  transform: translateY(-1px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.26);
}
.btn--primary{
  background: rgba(208,122,84,0.20);
  border-color: rgba(208,122,84,0.45);
}
.btn--primary:hover{
  background: rgba(208,122,84,0.28);
  border-color: rgba(208,122,84,0.62);
}
.btn--olive{
  background: rgba(108,127,75,0.20);
  border-color: rgba(108,127,75,0.42);
}
.btn--olive:hover{
  background: rgba(108,127,75,0.28);
  border-color: rgba(108,127,75,0.60);
}

.section__head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:14px; margin-bottom:18px;
}
.section__head h2{ margin:0; font-size: clamp(22px, 2.9vw, 36px); }
.section__head p{ margin:0; max-width: 70ch; color: var(--muted); }

.helper{ color: var(--muted); font-size:0.96rem; }

/* HERO - centered content */
.hero{
  padding:46px 18px;
}
.hero__wrap{
  width:min(860px, 100%);
  margin-inline:auto;
  text-align:center;
}
.hero h1{
  margin:12px 0 10px;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height:1.08;
}
.hero p{ margin:0 auto 18px; max-width: 78ch; color: var(--muted); font-size:1.06rem; }
.hero__actions{
  display:flex; gap:12px; flex-wrap:wrap;
  justify-content:center; align-items:center;
}
.hero__strip{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.pill{
  padding:12px 14px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.16);
  text-align:left;
}
.pill strong{ display:block; font-size:1rem; }
.pill span{ color: var(--muted); font-size:0.95rem; display:block; }

/* Mosaic block */
.mosaic{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:16px;
  align-items:stretch;
}
.mosaic__big{
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: linear-gradient(135deg, rgba(224,179,92,0.10), rgba(208,122,84,0.10));
  padding:20px;
  box-shadow: var(--shadow);
}
.mosaic__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
.card{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
}
.card h3{ margin:0 0 10px; }
.card p{ margin:0; color: var(--muted); }

/* Timeline */
.timeline{
  position:relative;
  padding:22px;
}
.timeline::before{
  content:"";
  position:absolute;
  left:28px; top:24px; bottom:24px;
  width:2px;
  background: rgba(255,255,255,0.16);
}
.step{
  display:grid;
  grid-template-columns: 60px 1fr;
  gap:14px;
  padding:12px 0;
}
.step__dot{
  width:42px; height:42px;
  border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(208,122,84,0.20);
  border:1px solid rgba(208,122,84,0.45);
  margin-left:6px;
}
.step__dot i{ color: rgba(224,179,92,0.95); }
.step h3{ margin:0 0 6px; }
.step p{ margin:0; color: var(--muted); }

/* Route cards with “photo” placeholder panel */
.route-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.route{
  overflow:hidden;
  padding:0;
}
.route__img{
  height:140px;
  background: rgba(255,255,255,0.06);
  border-bottom:1px solid rgba(255,255,255,0.12);
  display:flex; align-items:center; justify-content:center;
}
.route__img i{ font-size:28px; color: rgba(224,179,92,0.90); }
.route__body{ padding:18px; }
.route__meta{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:10px; }
.tag{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.14);
  color: var(--muted);
  font-size:0.92rem;
}

/* Checklist block */
.checklist{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
.list{
  margin:0; padding:0; list-style:none; display:grid; gap:10px;
}
.list li{
  display:flex; gap:12px; align-items:flex-start;
  padding:12px 14px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: var(--muted);
}
.list i{ margin-top:2px; color: rgba(108,127,75,0.95); }

/* FAQ accordion */
.faq{
  display:grid;
  gap:12px;
}
details{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
  overflow:hidden;
}
summary{
  cursor:pointer;
  padding:14px 16px;
  font-weight:800;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
summary::-webkit-details-marker{ display:none; }
details p{
  margin:0;
  padding:0 16px 16px;
  color: var(--muted);
}
.faq__icon{
  width:36px; height:36px;
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(224,179,92,0.14);
  border:1px solid rgba(224,179,92,0.30);
}

/* Contact split */
.split{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap:16px;
  align-items:stretch;
}

.form{ display:grid; gap:12px; }
.field{ display:grid; gap:8px; }
label{ font-weight:800; color: rgba(245,240,234,0.92); }
input, textarea, select{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.20);
  color: var(--text);
  font-size:1rem;
  outline:none;
}
textarea{ min-height:120px; resize:vertical; }
input:focus, textarea:focus, select:focus{
  border-color: rgba(208,122,84,0.60);
  box-shadow: 0 0 0 4px rgba(208,122,84,0.14);
}

.notice{
  padding:14px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.16);
  color: var(--muted);
}

/* Reviews cards */
.review-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.stars{ letter-spacing:1px; color: rgba(224,179,92,0.95); }

/* Footer */
.footer{
  padding:34px 0;
  border-top:1px solid var(--border);
  background: rgba(27,20,16,0.78);
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap:16px;
}
.footer small{ color: var(--muted); display:block; margin-top:10px; }
.footer a{ color: var(--muted); }
.footer a:hover{ color: var(--text); text-decoration:none; }

.social{
  display:flex; gap:10px; flex-wrap:wrap;
}
.social a{
  display:inline-flex; align-items:center; justify-content:center;
  width:42px; height:42px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
}
.social a:hover{ text-decoration:none; background: rgba(255,255,255,0.10); }

/* Modal */
.modal{
  position:fixed; inset:0;
  display:none; align-items:center; justify-content:center;
  padding:18px;
  background: rgba(0,0,0,0.60);
  z-index:2000;
}
.modal.is-open{ display:flex; }
.modal__box{
  width:min(560px, 100%);
  border-radius: 20px;
  border:1px solid rgba(255,255,255,0.20);
  background: rgba(27,20,16,0.96);
  box-shadow: var(--shadow);
  padding:18px;
}
.modal__box h3{ margin:0 0 8px; }
.modal__box p{ margin:0 0 14px; color: var(--muted); }

/* Cookie banner (homepage only) */
.cookie{
  position:fixed;
  left:14px; right:14px; bottom:14px;
  z-index:1800;
  display:none;
}
.cookie.is-visible{ display:block; }
.cookie__panel{
  display:flex; gap:14px;
  align-items:flex-start; justify-content:space-between;
  padding:14px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,0.18);
  background: rgba(27,20,16,0.93);
  box-shadow: var(--shadow);
}
.cookie__panel p{ margin:0; color: var(--muted); max-width: 92ch; }
.cookie__actions{ display:flex; gap:10px; flex-wrap:wrap; }

/* Page hero & prose */
.page-hero{ padding:26px; }
.page-hero h1{ margin:0 0 8px; font-size: clamp(26px, 3.2vw, 40px); }
.page-hero p{ margin:0; color: var(--muted); max-width: 82ch; }
.prose{ padding:22px; }
.prose h2{ margin:18px 0 8px; }
.prose p{ margin:0 0 12px; color: var(--muted); }
.prose ul{ margin:0 0 12px 18px; color: var(--muted); }
.prose li{ margin:6px 0; }


/* Mobile navigation */
.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  cursor:pointer;
}
.nav-toggle:hover{ background: rgba(255,255,255,0.10); }


/* Alternating light sections (no blue, keep readability) */
.section--light{
  --text: #2a1f18;
  --muted: rgba(42,31,24,0.78);
  --surface: rgba(42,31,24,0.06);
  --surface-2: rgba(42,31,24,0.10);
  --border: rgba(42,31,24,0.16);
  background:
    radial-gradient(1100px 520px at 20% -10%, rgba(224,179,92,0.20), transparent 55%),
    radial-gradient(900px 520px at 95% 30%, rgba(108,127,75,0.14), transparent 55%),
    linear-gradient(180deg, #f6f1ea, #efe7dd);
  color: var(--text);
}
.section--light a{ color: var(--text); }
.section--light .panel,
.section--light .card,
.section--light details{
  background: rgba(255,255,255,0.70);
  border-color: rgba(42,31,24,0.16);
}
.section--light .route__img{
  background: rgba(42,31,24,0.04);
  border-bottom-color: rgba(42,31,24,0.12);
}
.section--light .pill{
  background: rgba(255,255,255,0.75);
  border-color: rgba(42,31,24,0.16);
}
.section--light input,
.section--light textarea,
.section--light select{
  background: rgba(255,255,255,0.78);
  border-color: rgba(42,31,24,0.18);
  color: var(--text);
}
.section--light input:focus,
.section--light textarea:focus,
.section--light select:focus{
  border-color: rgba(208,122,84,0.65);
  box-shadow: 0 0 0 4px rgba(208,122,84,0.16);
}
.section--light .tag{
  background: rgba(255,255,255,0.70);
  border-color: rgba(42,31,24,0.14);
}
.section--light .nav a:hover{ background: rgba(42,31,24,0.06); }

@media (max-width: 980px){
  .header__inner{
    flex-wrap:wrap;
    align-items:center;
  }
  .brand{ flex: 1 1 auto; }
  .nav-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-left:auto;
  }
  .nav{
    flex-basis:100%;
    order:3;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    padding:12px 0 0;
  }
  .nav.is-open{
    display:flex;
    animation: navDrop .12s ease-out;
  }
  .nav a{
    width:100%;
    padding:12px 12px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.05);
  }
  .nav a:hover{
    background: rgba(255,255,255,0.09);
  }
  .nav__cta{
    background: rgba(208,122,84,0.22) !important;
    border-color: rgba(208,122,84,0.48) !important;
  }
}

@keyframes navDrop{
  from{ transform: translateY(-6px); opacity:0.6; }
  to{ transform: translateY(0); opacity:1; }
}


/* Alternating light sections (no blue, keep readability) */
.section--light{
  --text: #2a1f18;
  --muted: rgba(42,31,24,0.78);
  --surface: rgba(42,31,24,0.06);
  --surface-2: rgba(42,31,24,0.10);
  --border: rgba(42,31,24,0.16);
  background:
    radial-gradient(1100px 520px at 20% -10%, rgba(224,179,92,0.20), transparent 55%),
    radial-gradient(900px 520px at 95% 30%, rgba(108,127,75,0.14), transparent 55%),
    linear-gradient(180deg, #f6f1ea, #efe7dd);
  color: var(--text);
}
.section--light a{ color: var(--text); }
.section--light .panel,
.section--light .card,
.section--light details{
  background: rgba(255,255,255,0.70);
  border-color: rgba(42,31,24,0.16);
}
.section--light .route__img{
  background: rgba(42,31,24,0.04);
  border-bottom-color: rgba(42,31,24,0.12);
}
.section--light .pill{
  background: rgba(255,255,255,0.75);
  border-color: rgba(42,31,24,0.16);
}
.section--light input,
.section--light textarea,
.section--light select{
  background: rgba(255,255,255,0.78);
  border-color: rgba(42,31,24,0.18);
  color: var(--text);
}
.section--light input:focus,
.section--light textarea:focus,
.section--light select:focus{
  border-color: rgba(208,122,84,0.65);
  box-shadow: 0 0 0 4px rgba(208,122,84,0.16);
}
.section--light .tag{
  background: rgba(255,255,255,0.70);
  border-color: rgba(42,31,24,0.14);
}
.section--light .nav a:hover{ background: rgba(42,31,24,0.06); }

@media (max-width: 980px){
  .hero__strip{ grid-template-columns: 1fr; }
  .mosaic{ grid-template-columns: 1fr; }
  .mosaic__grid{ grid-template-columns: 1fr; }
  .route-grid{ grid-template-columns: 1fr; }
  .checklist{ grid-template-columns: 1fr; }
  .review-grid{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
}
