/* Cohesive guest-experience visual layer: calm, warm and photo-first. */
:root {
  --vd-ink: #2d241a;
  --vd-green: #1e4334;
  --vd-gold: #b8893d;
  --vd-paper: #fffaf1;
  --vd-line: rgba(67, 49, 28, .14);
}

#suites {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 10%, rgba(184, 137, 61, .11), transparent 27rem),
    radial-gradient(circle at 92% 92%, rgba(30, 67, 52, .08), transparent 30rem);
}

#suites .section-intro {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
}

#suites .section-label,
.arrival-panel .section-label {
  color: var(--vd-gold);
  font-weight: 800;
  letter-spacing: .12em;
}

.suite-grid {
  gap: clamp(1.15rem, 2.4vw, 1.8rem);
}

.suite-card {
  overflow: hidden;
  border: 1px solid var(--vd-line);
  border-radius: 1.05rem;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 .6rem 1.8rem rgba(46, 35, 19, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.suite-card:hover {
  transform: translateY(-.3rem);
  border-color: rgba(184, 137, 61, .42);
  box-shadow: 0 1.1rem 2.4rem rgba(46, 35, 19, .13);
}

.suite-card .room-image img {
  transition: transform .55s ease;
}

.suite-card:hover .room-image img {
  transform: scale(1.045);
}

.suite-card .room-content {
  padding: 1.25rem 1.25rem 1.35rem;
}

.suite-card .suite-bird-mini {
  align-items: center;
  min-height: 2.1rem;
  color: var(--vd-green);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.suite-card .suite-bird-mini img {
  width: 2.3rem;
  height: 2.3rem;
  object-fit: contain;
}

.suite-card .card-title {
  margin-top: .65rem;
  color: var(--vd-ink);
}

.suite-card .suite-detail-link {
  width: 100%;
  margin-top: .35rem;
  justify-content: center;
  border-color: var(--vd-green);
  color: var(--vd-green);
  font-weight: 750;
}

.suite-card .suite-detail-link:hover,
.suite-card .suite-detail-link:focus-visible {
  background: var(--vd-green);
  color: #fff;
}

.arrival-panel {
  position: relative;
  overflow: hidden;
  border-color: rgba(184, 137, 61, .29);
  box-shadow: 0 .75rem 2.4rem rgba(46, 35, 19, .06);
}

.arrival-panel::after {
  content: "";
  position: absolute;
  inset: auto -3rem -4.5rem auto;
  width: 12rem;
  height: 12rem;
  border: 1px solid rgba(184, 137, 61, .28);
  border-radius: 50%;
  pointer-events: none;
}

.arrival-panel > * {
  position: relative;
  z-index: 1;
}

.arrival-panel .check-list {
  display: grid;
  gap: .8rem;
}

.arrival-panel .check-list li {
  padding: .15rem 0 .15rem .1rem;
  color: var(--vd-ink);
}

#faq .section-intro {
  max-width: 43rem;
}

#faq .faq-list {
  max-width: 52rem;
  margin-inline: auto;
}

#faq details {
  margin-bottom: .65rem;
  border: 1px solid var(--vd-line);
  border-radius: .75rem;
  background: #fff;
  box-shadow: 0 .35rem 1rem rgba(46, 35, 19, .035);
}

#faq summary {
  padding: 1rem 1.15rem;
  color: var(--vd-ink);
  font-weight: 750;
  cursor: pointer;
}

#faq details p {
  padding: 0 1.15rem 1.1rem;
}

.mobile-booking-bar {
  border: 1px solid rgba(255,255,255,.23);
  backdrop-filter: blur(10px);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(184, 137, 61, .72);
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .suite-card .room-content { padding: 1.15rem; }
  .suite-card:hover { transform: none; }
  .suite-card .suite-detail-link { min-height: 3rem; }
  .arrival-panel { border-radius: .85rem; }
}
