/* ==========================================================================
   SINGLE ACCOMMODATION — Editorial
   ========================================================================== */

/* layout — mirrors .sdest-layout from single-destination.css */
.sacc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 5rem;
  padding: 5rem 0 8rem;
  align-items: start;
}

/* body sections */
.sacc-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.sacc-section:last-child {
  border-bottom: none;
}
.sacc-section h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  margin-bottom: 1.2rem;
}
.sacc-section p {
  margin-bottom: 1.2rem;
}

/* amenities */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}
.amenity {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.83rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  color: var(--black);
}
.amenity svg {
  width: 16px;
  height: 16px;
  stroke: var(--sage);
  fill: none;
  flex-shrink: 0;
}

/* price card */
.sacc-price-card {
  background: var(--black);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.sacc-price-from {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 1);
}
.sacc-price-num {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  font-weight: 300;
}
.sacc-price-per {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 0.5rem;
}
.sacc-price-card .btn-gold {
  background: var(--accent);
  color: var(--white);
  padding: 0.85rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  transition: background 0.25s;
  text-decoration: none;
}
.sacc-price-card .btn-gold:hover {
  background: var(--sage);
}

/* fact box */
.sacc-fact-box {
  background: var(--white);
  border-top: 3px solid var(--sage);
  padding: 1.5rem;
}
.sacc-fact-box--spaced {
  margin-top: 1rem;
}
.sacc-fact {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.sacc-fact:last-child {
  border-bottom: none;
}
.sacc-fact .lbl {
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* fact box h5 */
.sacc-fact-box h5 {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

@media (max-width: 1024px) {
  .sacc-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
  }
}
@media (max-width: 600px) {
  .amenities-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Photo Gallery ──────────────────────────────────────────────────────────── */
/* Independent of sdest-gallery — same masonry column layout, separate class names */
.sacc-gallery {
  columns: 3;
  column-gap: 0.75rem;
  margin-top: 1.5rem;
}
.sacc-gallery a {
  display: block;
  break-inside: avoid;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.sacc-gallery a img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}
.sacc-gallery a:hover img {
  transform: scale(1.03);
}
@media (max-width: 900px) {
  .sacc-gallery {
    columns: 2;
  }
}
@media (max-width: 600px) {
  .sacc-gallery {
    columns: 1;
  }
}

/* ── Enquiry CTA wrapper ────────────────────────────────────────────────────── */
.sacc-enquire {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
}
