/* ==========================================================================
   ACCOMMODATIONS — Editorial Grid
   ========================================================================== */

/* ── Sections ── */
.acc-intro {
  padding: var(--sp-xl) 0 40px;
  text-align: center;
}
.acc-intro h2 {
  max-width: 700px;
  margin: 0 auto 1.4rem;
  color: var(--brown);
}
.acc-intro p {
  max-width: 560px;
  margin: 0 auto;
}

.acc-section {
  padding: var(--sp-xl) 0;
}
.acc-section--alt {
  background-color: #f7f3ed;
}

.acc-chapter-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--sp-lg);
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
  gap: 2rem;
}
/* Tanzania h2 — primary, large */
.acc-chapter-head h2 {
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--brown);
}
/* Beyond Tanzania h3 — secondary, smaller */
.acc-chapter-head h3 {
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  color: var(--brown);
}
.acc-chapter-count {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  white-space: nowrap;
}

/* ── Grid — no padding, handled by .acc-section ── */
.acc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}
@media (max-width: 1024px) {
  .acc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .acc-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ── Card shell ── */
.acc-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  border-radius: 0;
  overflow: hidden;
  background: var(--charcoal);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* ── Image area ── */
.acc-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.acc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.acc-card:hover .acc-card-img img {
  transform: scale(1.04);
}

/* Stars — top LEFT of image */
.acc-card-stars {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(0, 0, 0, 0.55);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  backdrop-filter: blur(4px);
  z-index: 2;
}

/* ── Card body ── */
.acc-card-body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow: hidden;
}

/* Country label above the title */
.acc-card-country {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-light);
  display: block;
  margin-bottom: 0.2rem;
}

.acc-card-type {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
  display: block;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
}

.acc-card-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.4rem;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Location (destination name) — renamed from acc-card-dest */
.acc-card-loc {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sage-light);
  margin: 0 0 0.4rem;
  display: flex;
  align-items: center;
  gap: 4px;
}
.acc-card-loc svg {
  flex-shrink: 0;
}

.acc-card-price {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--sage-light);
  margin: auto 0 0;
}
.acc-card-price strong {
  color: var(--white);
  font-size: 1rem;
}
.acc-card-price span {
  font-size: 0.7rem;
  color: var(--sage-light);
}
