/* === RDV — overrides luxe === */

.active-link { color: var(--gold, #c9a96e) !important; }

.rdv-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(15,15,20,0.55), rgba(15,15,20,0.75)),
    url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1600&q=80') center/cover;
  color: #fff;
  padding: 140px 24px 80px;
  text-align: center;
}
.rdv-hero-content { max-width: 800px; }
.rdv-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 18px 0 18px;
  letter-spacing: -0.5px;
}
.rdv-hero h1 em { font-style: italic; color: #c9a96e; }
.rdv-hero p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.rdv-section {
  padding: 80px 24px 100px;
  background: #fafaf7;
}
.rdv-container {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.rdv-step {
  background: #fff;
  padding: 40px 32px;
  border-radius: 4px;
  box-shadow: 0 2px 24px rgba(15,15,26,0.06);
  border: 1px solid #ece9e1;
  animation: fadeUp 0.5s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ece9e1;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #c9a96e;
  font-style: italic;
}
.step-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0;
  color: #1a1a2e;
}
.step-head h2 em { font-style: italic; color: #c9a96e; }

/* Services */
.service-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) {
  .service-options { grid-template-columns: repeat(3, 1fr); }
}
.service-opt { cursor: pointer; }
.service-opt input { display: none; }
.opt-card {
  border: 1.5px solid #ece9e1;
  border-radius: 4px;
  padding: 22px 18px;
  transition: all 0.25s ease;
  background: #fff;
  text-align: left;
}
.opt-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0 0 6px;
  color: #1a1a2e;
}
.opt-card p {
  font-size: 0.9rem;
  color: #555;
  margin: 0 0 12px;
  line-height: 1.5;
}
.duration {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c9a96e;
  font-weight: 500;
}
.service-opt input:checked + .opt-card {
  border-color: #c9a96e;
  background: #fdfbf5;
  box-shadow: 0 4px 16px rgba(201,169,110,0.15);
}

/* Calendar */
.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.cal-day, .cal-head {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.cal-head {
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #999;
  cursor: default;
  aspect-ratio: auto;
  padding: 8px 0;
  font-weight: 500;
}
.cal-day {
  background: #faf8f3;
  color: #1a1a2e;
  border: 1px solid #ece9e1;
}
.cal-day:hover:not(.disabled) {
  border-color: #c9a96e;
  background: #fdfbf5;
}
.cal-day.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: transparent;
  border: none;
}
.cal-day.selected {
  background: #1a1a2e;
  color: #fff;
  border-color: #1a1a2e;
}
.cal-day .num { font-size: 1.05rem; font-weight: 500; }
.cal-day .mon { font-size: 0.65rem; letter-spacing: 0.5px; text-transform: uppercase; opacity: 0.7; margin-top: 2px; }

.cal-nav {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 8px 14px;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #1a1a2e;
}
.cal-nav button {
  background: none;
  border: 1px solid #ece9e1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  color: #1a1a2e;
  transition: all 0.2s;
}
.cal-nav button:hover { border-color: #c9a96e; color: #c9a96e; }
.cal-nav button:disabled { opacity: 0.3; cursor: not-allowed; }

/* Slots */
.slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
}
.slot {
  padding: 14px 10px;
  border: 1px solid #ece9e1;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a2e;
  transition: all 0.2s;
}
.slot:hover:not(.taken) {
  border-color: #c9a96e;
  color: #c9a96e;
}
.slot.selected {
  background: #1a1a2e;
  color: #fff;
  border-color: #1a1a2e;
}
.slot.taken {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Form */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1a1a2e;
  font-weight: 500;
}
.booking-form input,
.booking-form textarea {
  padding: 14px 16px;
  border: 1px solid #ece9e1;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  background: #fafaf7;
  color: #1a1a2e;
  letter-spacing: normal;
  text-transform: none;
  transition: border-color 0.2s;
}
.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: #c9a96e;
  background: #fff;
}

.recap {
  background: #faf8f3;
  border-left: 2px solid #c9a96e;
  padding: 18px 22px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
}
.recap strong { color: #1a1a2e; }

.btn-luxe {
  display: inline-block;
  padding: 16px 36px;
  background: #1a1a2e;
  color: #fff;
  border: 1px solid #1a1a2e;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  text-align: center;
}
.btn-luxe:hover {
  background: #c9a96e;
  border-color: #c9a96e;
}

.confirm-box {
  text-align: center;
  padding: 40px 20px;
}
.confirm-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #fdfbf5;
  color: #c9a96e;
  display: flex;
  align-items: center;
  justify-content: center;
}
.confirm-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 16px;
  color: #1a1a2e;
}
.confirm-box h2 em { font-style: italic; color: #c9a96e; }
.confirm-msg {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* Error */
.error-msg {
  background: #fdecea;
  color: #b00020;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-bottom: 14px;
}
