/* Wild Gaze – Accommodation page card polish */

.wg-accom {
  background: #fff !important;
}

.wg-accom .wg-accom-inner {
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 40px);
}

.wg-accom .wg-tier-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(26, 20, 8, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.wg-accom .wg-tier-card:hover {
  box-shadow: 0 10px 32px rgba(26, 20, 8, 0.1);
  transform: translateY(-2px);
}

/* Featured Pazuri – horizontal hero card */
.wg-accom-featured {
  margin-bottom: 56px;
}

.wg-accom-featured .wg-accom-hero-card {
  display: grid;
  grid-template-columns: minmax(300px, 1.15fr) minmax(280px, 1fr);
  background: linear-gradient(135deg, #fff 0%, #fdfbf7 100%);
  border: 1px solid rgba(184, 148, 26, 0.22);
  border-radius: var(--wg-premium-card-radius, 16px);
  overflow: hidden;
  box-shadow:
    0 12px 40px rgba(26, 20, 8, 0.08),
    0 2px 8px rgba(184, 148, 26, 0.06);
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wg-accom-featured .wg-accom-hero-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold, #b8941a), var(--gold-lt, #e8b020), transparent);
  z-index: 5;
  pointer-events: none;
}

.wg-accom-featured .wg-accom-hero-card:hover {
  box-shadow:
    0 20px 48px rgba(26, 20, 8, 0.12),
    0 6px 16px rgba(184, 148, 26, 0.1);
  transform: translateY(-4px);
  border-color: rgba(184, 148, 26, 0.35);
}

.wg-accom-featured .wg-accom-hero-card::before {
  content: 'Our Top Pick';
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 4;
  background: linear-gradient(135deg, #d45a00, #c0390a);
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(192, 57, 10, 0.35);
}

.wg-accom-hero-img {
  position: relative;
  min-height: 300px;
  background: #f5f0e6;
  overflow: hidden;
}

.wg-accom-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, rgba(253, 251, 247, 0.15) 100%);
  pointer-events: none;
}

.wg-accom-hero-img img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.wg-accom-featured .wg-accom-hero-card:hover .wg-accom-hero-img img {
  transform: scale(1.03);
}

.wg-accom-hero-body {
  padding: clamp(36px, 4.5vw, 52px) clamp(36px, 4vw, 48px) clamp(36px, 4.5vw, 52px) clamp(40px, 4.5vw, 56px) !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(180deg, #fff 0%, #faf6ee 100%);
  border-left: 1px solid rgba(184, 148, 26, 0.12);
  position: relative;
}

.wg-accom-hero-body::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--gold, #b8941a), var(--gold-lt, #e8b020), transparent);
  border-radius: 2px;
}

.wg-accom-hero-meta {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a7a55;
  padding-left: 2px;
}

.wg-accom-hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1408;
  line-height: 1.2;
  margin: 0;
  padding-left: 2px;
}

.wg-accom-hero-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: #4a3f28;
  margin: 0;
  max-width: 42ch;
  padding-left: 2px;
}

.wg-accom-featured .wg-tier-chip {
  display: inline-block;
  align-self: flex-start;
  margin-top: 4px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(184, 148, 26, 0.35);
  color: #b8941a;
  background: rgba(184, 148, 26, 0.08);
}

.wg-accom-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  margin-top: 8px;
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none !important;
  color: #1a1408 !important;
  background: linear-gradient(135deg, #e8b020, #b8941a);
  padding: 13px 24px;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(184, 148, 26, 0.28);
  transition: opacity 0.2s, gap 0.2s, transform 0.2s, box-shadow 0.2s;
}

.wg-accom-hero-cta:hover {
  opacity: 0.95;
  gap: 14px;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184, 148, 26, 0.35);
}

/* Grid cards – depth & contrast */
.wg-accom-grid .wg-grid {
  gap: 20px;
}

.wg-accom-grid .wg-card {
  background: #fff !important;
  border: 1px solid #f1f5f9 !important;
  border-radius: var(--wg-premium-card-radius, 16px) !important;
  box-shadow: var(--wg-premium-card-shadow, 0 10px 30px rgba(132, 105, 51, 0.04), 0 1px 4px rgba(0, 0, 0, 0.01)) !important;
  overflow: hidden;
  transition: all 0.4s ease !important;
}

.wg-accom-grid .wg-card:hover {
  box-shadow: var(--wg-premium-card-shadow-hover, 0 18px 40px rgba(132, 105, 51, 0.1), 0 4px 12px rgba(0, 0, 0, 0.04)) !important;
  transform: translateY(-5px);
  border-color: rgba(191, 161, 95, 0.35) !important;
}

.wg-accom-grid .wg-img-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--wg-premium-card-radius, 16px) var(--wg-premium-card-radius, 16px) 0 0;
}

.wg-accom-grid .wg-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.wg-accom-grid .wg-card:hover .wg-img-wrap img {
  transform: scale(1.04);
}

.wg-accom-grid .wg-card-nameplate {
  padding: 14px 16px 0;
}

.wg-accom-grid .wg-card-title {
  font-size: 0.95rem !important;
  color: #1a1408 !important;
  line-height: 1.35 !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  font-family: var(--font-display, 'Playfair Display'), Georgia, serif !important;
  font-weight: 600 !important;
}

.wg-accom-grid .wg-card-meta {
  font-size: 0.75rem !important;
  color: #846933 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  font-family: var(--font-body, 'Montserrat'), sans-serif !important;
}

.wg-accom-grid .wg-body {
  padding: 12px 16px 18px !important;
}

.wg-accom-grid .wg-desc {
  font-size: 0.76rem !important;
  color: #4a3f28 !important;
  line-height: 1.6 !important;
  margin-bottom: 8px;
}

.wg-accom-grid .wg-tier-chip {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(191, 161, 95, 0.25);
  color: #846933;
  background: #fdfbf7;
}

.wg-accom-grid .wg-tier-chip.t-luxury {
  border-color: #d45a00;
  color: #d45a00;
  background: rgba(212, 90, 0, 0.06);
}

.wg-accom-grid .wg-tier-chip.t-plus {
  border-color: #b8941a;
  color: #b8941a;
  background: rgba(184, 148, 26, 0.06);
}

.wg-accom .wg-accom-intro {
  color: #4a3f28;
}

/* Card action buttons */
.wg-accom-grid .wg-accom-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #ebe4d4;
}

.wg-accom-grid .wg-accom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
  padding: 9px 12px;
  border-radius: 6px;
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none !important;
  text-align: center;
  transition: opacity 0.2s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.wg-accom-grid .wg-accom-btn-site {
  color: #1a1408 !important;
  background: #fff;
  border: 1px solid #d4b87a;
}

.wg-accom-grid .wg-accom-btn-site:hover {
  background: #faf8f2;
  border-color: #b8941a;
}

.wg-accom-grid .wg-accom-btn-book {
  color: #fff !important;
  background: linear-gradient(135deg, #d45a00, #c0390a);
  border: 1px solid transparent;
}

.wg-accom-grid .wg-accom-btn-book:hover {
  opacity: 0.92;
}

.wg-accom-grid .wg-accom-btn i {
  font-size: 0.55rem;
  opacity: 0.85;
}

@media (max-width: 400px) {
  .wg-accom-grid .wg-accom-card-actions {
    flex-direction: column;
  }
  .wg-accom-grid .wg-accom-btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wg-accom-featured .wg-accom-hero-card {
    grid-template-columns: 1fr;
  }

  .wg-accom-hero-img,
  .wg-accom-hero-img img {
    min-height: 220px;
  }

  .wg-accom-hero-body {
    padding: 28px 24px 32px;
    border-left: none;
    border-top: 1px solid rgba(184, 148, 26, 0.12);
  }

  .wg-accom-hero-body::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .wg-accom-grid .wg-grid {
    grid-template-columns: 1fr !important;
  }
}
