/* ══════════════════════════════════════
   RESERVA — Premium Contact Panel
══════════════════════════════════════ */

.rg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.rl h2 {
  font-family: var(--fd);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  color: #EDE8D5;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.rl h2 em { color: #C9A84C; font-style: italic; }
.rl p {
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(237,232,213,.62);
  margin-bottom: 2.5rem;
}
.il { display: flex; flex-direction: column; gap: 1rem; }
.ir {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .875rem;
  color: rgba(237,232,213,.55);
}
.ir strong {
  font-family: var(--fc);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #C9A84C;
  min-width: 80px;
}

/* ══════════════════════════════════════
   RIGHT PANEL — New vibe
══════════════════════════════════════ */

#reservationSection {
  position: relative;
  /* Lighter — warm translucent overlay */
  background: rgba(22, 42, 70, 0.45);
  border: 1px solid rgba(201,168,76,0.22);
  overflow: hidden;
  padding: 0;
}

/* Diagonal gold shimmer top-right */
#reservationSection::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(201,168,76,0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Bottom-left warm glow */
#reservationSection::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Content */
.rs-inner {
  position: relative;
  z-index: 1;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* ── Force ALL link colors ── */
#reservationSection a,
#reservationSection a:link,
#reservationSection a:visited,
#reservationSection a:hover,
#reservationSection a:active,
#reservationSection a:focus,
#reservationSection a * {
  color: #EDE8D5 !important;
  text-decoration: none !important;
}

/* ── Channel buttons ── */
.rs-channels {
  display: flex;
  align-items: stretch;
  width: 100%;
  border: 1px solid rgba(201,168,76,0.18);
}

.rs-ch {
  flex: 1;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 3rem 2rem;
  gap: 1rem;
  cursor: pointer;
  transition: background 0.35s ease;
}

.rs-ch:hover {
  background: rgba(201,168,76,0.08) !important;
}

/* Icon ring */
.rs-ch-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9A84C;
  transition: transform 0.35s ease, border-color 0.35s, box-shadow 0.35s;
}

.rs-ch:hover .rs-ch-icon {
  transform: scale(1.1) !important;
  border-color: rgba(201,168,76,0.7);
  box-shadow: 0 0 28px rgba(201,168,76,0.2);
}

/* Channel name */
.rs-ch-name {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.6rem !important;
  font-style: italic !important;
  font-weight: 400 !important;
  color: #EDE8D5 !important;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.rs-ch:hover .rs-ch-name {
  color: #C9A84C !important;
}

/* Channel sub-hint */
.rs-ch-hint {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.5) !important;
}

/* Vertical separator */
.rs-ch-sep {
  width: 1px;
  background: rgba(201,168,76,0.14);
  align-self: stretch;
  flex-shrink: 0;
}

/* ── Disclaimer ── */
.r-note {
  font-size: 0.82rem;
  color: rgba(237,232,213,0.38) !important;
  font-style: italic;
  line-height: 1.6;
  text-align: center;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(201,168,76,0.1);
  width: 100%;
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .rg {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 480px) {
  .rs-ch { padding: 2rem 1.2rem; }
  .rs-ch-icon { width: 62px; height: 62px; }
}
