/* ============================================================
   VOYAGEURS TOURS — CARDS CSS
   Tour cards · Destination cards · Hotel cards · Review cards
   ============================================================ */

/* ── DESTINATIONS SECTION WRAPPER ─────────────────────────── */
.sec--destinations {
  background: var(--parchment);
  border-radius: 20px;
  margin: 32px 20px;
  padding: 64px 40px;
}

/* ── DESTINATION MOSAIC ───────────────────────────────────── */
.dest-mosaic {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 400px 260px;
  gap: 10px;
}

.dest-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--parchment2);
  border-radius: 16px;
}

.dest-card:first-child {
  grid-row: 1 / 3;
  border-radius: 20px;
}

.dest-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.dest-card:hover .dest-card-img { transform: scale(1.07); }

.dest-card-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 10, 4, 0.80) 0%, transparent 52%);
}

.dest-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 24px;
}

.dest-card-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.dest-card:first-child .dest-card-name { font-size: 40px; }

.dest-card-count {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  margin-top: 6px;
  font-weight: 300;
  font-family: var(--sans);
}

.dest-card-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .28s, transform .28s;
}

.dest-card:hover .dest-card-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ── TOUR CARD ────────────────────────────────────────────── */
.tour-card {
  background: var(--white);
  cursor: pointer;
  transition: box-shadow .3s, transform .3s;
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  box-shadow: 0 8px 40px var(--shadow-card);
  position: relative;
  z-index: 2;
}

/* Inside grid-3 (border via background on parent) */
.tours-grid .tour-card { background: var(--white); }

/* Standalone card (in grid-3-gap) */
.tours-grid-gap .tour-card {
  border: 1px solid var(--border);
  border-radius: 0;
}

.tour-card:hover { transform: translateY(-4px); }

/* Image */
.tour-card-img {
  height: 225px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.tour-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.tour-card:hover .tour-card-img img { transform: scale(1.07); }

.tour-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
}

.tour-card-fav {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background .2s;
}

.tour-card-fav:hover { background: var(--white); }

.tour-card-fav svg {
  width: 15px;
  height: 15px;
  stroke: var(--ink2);
  fill: none;
  stroke-width: 2;
}

.tour-card-fav.active svg {
  fill: var(--terra);
  stroke: var(--terra);
}

/* Body */
.tour-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-card-cat {
  font-size: 9.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 8px;
  font-weight: 500;
  font-family: var(--sans);
}

.tour-card-name {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--ink);
}

.tour-card-desc {
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.75;
  margin-bottom: 16px;
  flex: 1;
}

.tour-card-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

/* Footer */
.tour-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.tour-card-from {
  font-size: 10px;
  color: var(--ink3);
  letter-spacing: .5px;
  margin-bottom: 3px;
  font-family: var(--sans);
}

.tour-card-price {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
}

.tour-card-price sup {
  font-size: 14px;
  font-family: var(--sans);
  font-weight: 300;
  vertical-align: super;
}

.tour-card-price sub {
  font-size: 11px;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink3);
}

/* ── HOTEL CARD ───────────────────────────────────────────── */
.hotel-card {
  background: var(--white);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: box-shadow .3s, transform .3s;
}

.hotel-card:hover {
  box-shadow: 0 8px 40px var(--shadow-card);
  transform: translateY(-4px);
}

.hotel-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.hotel-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.hotel-card:hover .hotel-card-img img { transform: scale(1.06); }

.hotel-card-stars {
  position: absolute;
  bottom: 12px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  padding: 4px 10px;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 2px;
}

.hotel-card-body { padding: 20px 20px 22px; }

.hotel-card-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--ink);
}

.hotel-card-location {
  font-size: 12px;
  color: var(--ink3);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--sans);
}

.hotel-card-location svg {
  width: 12px;
  height: 12px;
  stroke: var(--terra);
  fill: none;
  stroke-width: 2;
}

.hotel-card-desc {
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.7;
  margin-bottom: 16px;
}

.hotel-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

/* ── REVIEW CARD ──────────────────────────────────────────── */
.review-card {
  background: var(--white);
  padding: 32px 28px;
  border-top: 3px solid var(--border);
  transition: border-top-color .28s;
}

.review-card:hover { border-top-color: var(--terra); }

.review-card-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.review-card-text {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.68;
  color: var(--ink2);
  margin-bottom: 24px;
}

.review-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--terra3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--terra);
  flex-shrink: 0;
}

.review-card-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

.review-card-meta {
  font-size: 12px;
  color: var(--ink3);
  margin-top: 2px;
}

/* ── REVIEW SCORE BAR ─────────────────────────────────────── */
.review-score-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 32px 36px;
  background: var(--white);
  border: 1px solid var(--border);
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.review-score-num {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}

.review-score-info {}

.review-score-stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 5px;
  margin-bottom: 4px;
}

.review-score-count {
  font-size: 12px;
  color: var(--ink3);
  font-family: var(--sans);
}

.review-score-sep {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

.review-score-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.review-score-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--parchment);
  padding: 10px 18px;
  font-size: 12px;
  color: var(--ink2);
  font-weight: 300;
  font-family: var(--sans);
}

.review-score-badge svg {
  width: 15px;
  height: 15px;
  stroke: var(--terra);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}

/* ── FEATURED BAND ────────────────────────────────────────── */
.feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  overflow: hidden;
}

.feature-band-img {
  position: relative;
  overflow: hidden;
}

.feature-band-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 12s linear;
}

.feature-band:hover .feature-band-img img { transform: scale(1.06); }

.feature-band-body {
  background: var(--ink);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-band-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 144, 64, 0.12);
  border: 1px solid rgba(201, 144, 64, 0.22);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 24px;
  width: fit-content;
  font-weight: 400;
  font-family: var(--sans);
}

.feature-band-eyebrow span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold2);
  display: block;
}

.feature-band-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 18px;
}

.feature-band-title em { font-style: italic; color: #f5d8a0; }

.feature-band-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.9;
  margin-bottom: 36px;
}

.feature-band-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 36px;
}

.feature-band-stat {
  padding: 20px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-band-stat:last-child { border-right: none; }

.fbs-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 7px;
  font-family: var(--sans);
}

.fbs-value {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--white);
  font-weight: 300;
}

/* ── THEME GRID ───────────────────────────────────────────── */
.themes-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
}

.theme-card {
  aspect-ratio: 2 / 3;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--parchment2);
}

.theme-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.theme-card:hover img { transform: scale(1.1); }

.theme-card-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 10, 4, 0.86) 0%, rgba(18, 10, 4, 0.1) 55%, transparent 100%);
}

.theme-card-name {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 10px;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
}

.theme-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  transition: border-color .28s;
}

.theme-card:hover::after { border-color: var(--terra); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .dest-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dest-card:first-child { grid-row: auto; }
  .feature-band { grid-template-columns: 1fr; }
  .feature-band-img { height: 380px; }
  .feature-band-body { padding: 48px 36px; }
  .feature-band-stats { grid-template-columns: 1fr 1fr; }
  .themes-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .dest-mosaic { grid-template-columns: 1fr; grid-template-rows: 320px 220px 220px 220px 220px; }
  .themes-grid { grid-template-columns: repeat(2, 1fr); }
  .review-score-bar { padding: 24px 20px; }
  .review-score-sep { display: none; }
  .feature-band-body { padding: 40px 24px; }
}