/* ============================================================
   VOYAGEURS TOURS — PAGES CSS
   Footer · Newsletter · How We Work · Inner Pages · Tours Page
   ============================================================ */

/* ── HOW WE WORK ──────────────────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.how-steps { margin-top: 40px; }

.how-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.how-step:first-child { border-top: 1px solid var(--border); }

.how-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--terra3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.how-step-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--terra);
  fill: none;
  stroke-width: 1.7;
}

.how-step-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 7px;
  color: var(--ink);
}

.how-step-title em { font-style: italic; color: var(--terra); }

.how-step-text {
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.78;
}

.how-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* Stats quad */
.stats-quad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  overflow: hidden;
}

.stats-quad-box {
  background: var(--parchment);
  padding: 36px 28px;
}

.stats-quad-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 6px;
}

.stats-quad-label {
  font-size: 10.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink3);
  font-family: var(--sans);
}

/* ── NEWSLETTER BAND ──────────────────────────────────────── */
.newsletter-band {
  background: var(--terra);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-band::before,
.newsletter-band::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.04);
}

.newsletter-band::before { width: 300px; height: 300px; top: -80px; right: -60px; }
.newsletter-band::after  { width: 250px; height: 250px; bottom: -80px; left: -40px; }

.newsletter-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
}

.newsletter-title em { font-style: italic; color: #f5d8a0; }

.newsletter-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 36px;
  position: relative;
}

.newsletter-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}

.newsletter-input {
  flex: 1;
  padding: 15px 24px;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  outline: none;
}

.newsletter-input::placeholder { color: rgba(255, 255, 255, 0.45); }

.newsletter-btn {
  background: var(--white);
  color: var(--terra);
  border: none;
  padding: 12px 26px;
  border-radius: 100px;
  margin: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  cursor: pointer;
  transition: background .2s;
  font-family: var(--sans);
}

.newsletter-btn:hover { background: var(--parchment); }

/* ── SITE FOOTER ──────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  padding: 72px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.footer-brand-sub {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 4px;
  font-family: var(--sans);
}

.footer-brand-tagline {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 18px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  transition: border-color .2s, color .2s, background .2s;
  cursor: pointer;
  text-decoration: none;
}

.footer-social-link:hover {
  border-color: var(--terra);
  color: var(--white);
  background: var(--terra);
}

.footer-social-link svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.footer-col h5 {
  font-size: 9.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.60);
  margin-bottom: 18px;
  font-weight: 400;
  font-family: var(--sans);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  transition: color .2s;
}

.footer-col li a:hover { color: var(--gold2); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.20);
  font-family: var(--sans);
}

.footer-langs { display: flex; gap: 6px; }

.footer-lang {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  padding: 5px 12px;
  border-radius: 100px;
  transition: all .2s;
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--sans);
}

.footer-lang.active,
.footer-lang:hover {
  color: var(--gold2);
  background: rgba(255, 255, 255, 0.06);
}

/* ── TOURS LISTING PAGE ───────────────────────────────────── */
.tours-page-filters {
  background: var(--parchment);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 64px;
  z-index: 50;
}

.filters-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink3);
  font-weight: 400;
  white-space: nowrap;
  font-family: var(--sans);
}

.filter-select {
  padding: 9px 32px 9px 14px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a6a5a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color .2s;
}

.filter-select:focus { border-color: var(--terra); outline: none; }

.filter-pill {
  padding: 8px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 12px;
  color: var(--ink2);
  cursor: pointer;
  transition: all .2s;
  border-radius: 100px;
  font-family: var(--sans);
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--terra);
  color: var(--white);
  border-color: var(--terra);
}

.filter-count {
  font-size: 12px;
  color: var(--ink3);
  margin-left: auto;
  font-family: var(--sans);
}

/* ── TOUR DETAIL PAGE ─────────────────────────────────────── */
.tour-detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.tour-detail-gallery {
  position: relative;
  height: 480px;
  overflow: hidden;
  margin-bottom: 40px;
}

.tour-detail-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-detail-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: var(--parchment);
}

.highlight-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--terra);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight-item-text {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.6;
}

.tour-detail-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.tour-detail-section:last-child { border-bottom: none; }

.tour-detail-section h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 18px;
  color: var(--ink);
}

.tour-detail-section h3 em { font-style: italic; color: var(--terra); }

.incl-excl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.incl-list, .excl-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.incl-item, .excl-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink3);
}

.incl-item::before { content: '✓'; color: #27ae60; font-size: 12px; flex-shrink: 0; margin-top: 2px; }
.excl-item::before { content: '✕'; color: #e74c3c; font-size: 11px; flex-shrink: 0; margin-top: 2px; }

/* Booking sidebar */
.booking-sidebar {
  position: sticky;
  top: 88px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px 28px;
}

.booking-sidebar-price {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}

.booking-sidebar-price sup {
  font-size: 20px;
  font-family: var(--sans);
  font-weight: 300;
}

.booking-sidebar-per {
  font-size: 12px;
  color: var(--ink3);
  margin-bottom: 28px;
  font-family: var(--sans);
}

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-info { padding-top: 8px; }

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:first-child { border-top: 1px solid var(--border); }

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--terra3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--terra);
  fill: none;
  stroke-width: 1.7;
}

.contact-info-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 4px;
  font-family: var(--sans);
}

.contact-info-value {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
}

/* ── ITINERARY ────────────────────────────────────────────── */
.itinerary { display: flex; flex-direction: column; gap: 0; }

.itinerary-day {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  position: relative;
  padding-bottom: 32px;
}

.itinerary-day:last-child { padding-bottom: 0; }

.itinerary-day-num {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.day-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--terra);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  flex-shrink: 0;
}

.day-line {
  width: 1px;
  flex: 1;
  background: var(--border);
  margin-top: 8px;
}

.itinerary-day:last-child .day-line { display: none; }

.itinerary-day-content {}

.itinerary-day-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
  padding-top: 10px;
}

.itinerary-day-text {
  font-size: 14px;
  color: var(--ink3);
  line-height: 1.8;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .how-grid { grid-template-columns: 1fr; gap: 52px; }
  .tour-detail-grid { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 52px; }
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .tour-detail-gallery { height: 300px; }
  .tour-detail-highlights { grid-template-columns: 1fr; }
  .incl-excl-grid { grid-template-columns: 1fr; }
  .stats-quad { grid-template-columns: 1fr 1fr; }
}
