/* Wild Gaze – destination detail pages (clean SBR-inspired layout) */

.wg-dest-page {
  font-family: 'Raleway', sans-serif;
  background: var(--section-bg, #f9f6ee);
  color: var(--text-body, #4a3f28);
}

.wg-dest-page * { box-sizing: border-box; }

/* ── Quick facts strip (moved to booking sidebar; hidden on page) ── */
.wg-dest-facts {
  display: none;
}
.wg-dest-facts-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.wg-dest-fact {
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid var(--card-border, #e8dfc8);
}
.wg-dest-fact:last-child { border-right: none; }
.wg-dest-fact-val {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold, #b8941a);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.wg-dest-fact-lbl {
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted, #8a7a55);
}

/* ── Main content ────────────────────────────────── */
.wg-dest-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 64px) clamp(20px, 4vw, 40px) clamp(64px, 8vw, 96px);
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.wg-dest-content { display: flex; flex-direction: column; gap: 36px; }

.wg-dest-intro-label {
  font-family: 'Cinzel', serif;
  font-size: .54rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--orange, #d45a00);
  margin-bottom: 10px;
}
.wg-dest-intro-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--orange, #d45a00);
  vertical-align: middle;
  margin-right: 10px;
}

.wg-dest-intro-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dark, #1a1408);
  line-height: 1.25;
  margin: 0 0 16px;
}

.wg-dest-lead {
  font-size: .9rem;
  line-height: 1.8;
  color: var(--text-light, #6b5c38);
  margin: 0;
}

.wg-dest-prose {
  font-size: .84rem;
  line-height: 1.82;
  color: var(--text-light, #6b5c38);
}
.wg-dest-prose p { margin: 0 0 14px; }
.wg-dest-prose p:last-child { margin-bottom: 0; }

/* ── Photo gallery ───────────────────────────────── */
.wg-dest-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
}

.wg-dest-gallery--multi {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.wg-dest-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 16 / 10;
  background: #e8e0d0;
  box-shadow: 0 4px 20px rgba(26, 20, 8, .08);
}
.wg-dest-gallery-item.tall { aspect-ratio: 3 / 4; }
.wg-dest-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  image-rendering: auto;
}

/* ── Highlights (experience cards) ───────────────── */
.wg-dest-experiences-title {
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dark, #1a1408);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--card-border, #e5dcc8);
}

.wg-dest-experiences {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.wg-dest-exp {
  background: #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 12px;
  padding: 22px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.wg-dest-exp:hover {
  border-color: #bfa15f;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(191, 161, 95, 0.2);
  transform: translateY(-4px);
}
.wg-dest-exp strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold, #b8941a);
  margin-bottom: 8px;
}
.wg-dest-exp span {
  font-size: 0.84rem;
  line-height: 1.6;
  color: #475569;
}

/* ── Tags ────────────────────────────────────────── */
.wg-dest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.wg-dest-tag {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted, #8a7a55);
  background: #fff;
  border: 1px solid var(--card-border, #e8dfc8);
  padding: 5px 11px;
}

/* ── Sidebar ─────────────────────────────────────── */
.wg-dest-aside {
  position: sticky;
  top: calc(var(--nav-h, 64px) + 20px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wg-dest-book {
  background: var(--dark, #1a1408);
  border: 1px solid rgba(184, 148, 26, .25);
  padding: 26px 24px;
  position: relative;
}
.wg-dest-book::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold, #b8941a), transparent);
}
.wg-dest-book-label {
  font-family: 'Cinzel', serif;
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold, #b8941a);
  margin-bottom: 8px;
}
.wg-dest-book-name {
  font-family: 'Cinzel', serif;
  font-size: .95rem;
  font-weight: 700;
  color: #f0e8d0;
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 18px;
}
.wg-dest-book-row {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(184, 148, 26, .15);
}
.wg-dest-book-row:last-of-type { border-bottom: none; margin-bottom: 16px; }
.wg-dest-book-row .lbl { color: rgba(240, 232, 208, .5); }
.wg-dest-book-row .val {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: var(--gold-lt, #e8b020);
  font-size: .72rem;
}
.wg-dest-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: 'Cinzel', serif;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dark, #1a1408);
  background: linear-gradient(135deg, var(--gold-lt, #e8b020), var(--gold, #b8941a));
  padding: 13px 18px;
  text-decoration: none;
  transition: opacity .2s;
}
.wg-dest-book-btn:hover { opacity: .88; color: var(--dark, #1a1408); }

.wg-dest-back {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cinzel', serif;
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted, #8a7a55);
  text-decoration: none;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--card-border, #e8dfc8);
  transition: color .2s, border-color .2s;
}
.wg-dest-back:hover { color: var(--gold, #b8941a); border-color: var(--gold, #b8941a); }

@media (max-width: 960px) {
  .wg-dest-body { grid-template-columns: 1fr; }
  .wg-dest-aside { position: static; }
  .wg-dest-facts-inner { grid-template-columns: repeat(2, 1fr); }
  .wg-dest-fact:nth-child(2) { border-right: none; }
  .wg-dest-fact:nth-child(1),
  .wg-dest-fact:nth-child(2) { border-bottom: 1px solid var(--card-border, #e8dfc8); }
}
@media (max-width: 640px) {
  .wg-dest-gallery { grid-template-columns: 1fr; }
  .wg-dest-gallery-item.tall { aspect-ratio: 16 / 10; }
  .wg-dest-experiences { grid-template-columns: 1fr; }
  .wg-dest-facts-inner { grid-template-columns: 1fr; }
  .wg-dest-fact { border-right: none; border-bottom: 1px solid var(--card-border, #e8dfc8); }
  .wg-dest-fact:last-child { border-bottom: none; }
}

@import url('wg-media-fidelity.css');
