/* ============================================================
   CAPRICHO N8 — RESERVAS.CSS
   ============================================================ */

/* ---- HERO ---- */
.res-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100svh;
}
.rh-left {
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 80px 64px;
}
.rh-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,18,15,.5) 0%, rgba(20,18,15,.88) 100%),
    url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1000&q=85') center/cover;
}
.rh-content { position: relative; z-index: 1; }
.rh-eyebrow {
  font-size: .68rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 16px;
  animation: hreveal .8s var(--ease-smooth) .3s both;
}
@keyframes hreveal { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }
.rh-title {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 6vw, 5.5rem); font-weight: 300;
  color: var(--white); line-height: .9; letter-spacing: -.02em;
  margin-bottom: 20px;
  animation: hreveal .8s var(--ease-smooth) .5s both;
}
.rh-title em { font-style: italic; color: var(--gold-light); }
.rh-sub {
  font-size: .9rem; color: rgba(255,255,255,.5); line-height: 1.7;
  max-width: 380px; margin-bottom: 36px;
  animation: hreveal .8s var(--ease-smooth) .65s both;
}
.rh-info-pills {
  display: flex; flex-direction: column; gap: 12px;
  animation: hreveal .8s var(--ease-smooth) .8s both;
}
.rh-pill {
  display: flex; align-items: center; gap: 10px;
  font-size: .82rem; color: rgba(255,255,255,.55);
}
.rh-pill-icon { font-size: 1rem; flex-shrink: 0; }
.rh-pill a { color: var(--gold); transition: opacity .2s; }
.rh-pill a:hover { opacity: .75; }

/* ---- FORM PANEL ---- */
.rh-right {
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  padding: 80px 48px;
  overflow-y: auto;
}
.res-form-card {
  width: 100%; max-width: 500px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0,0,0,.1);
  overflow: hidden;
  position: relative;
}
.rfc-header {
  background: var(--charcoal); padding: 28px 32px;
}
.rfc-header h2 {
  font-family: var(--ff-display); font-size: 1.5rem; font-weight: 300;
  color: var(--cream); margin-bottom: 4px;
}
.rfc-header p { font-size: .75rem; letter-spacing: .1em; color: var(--ash); text-transform: uppercase; }

/* STEP PROGRESS */
.step-progress {
  display: flex; align-items: center; justify-content: center;
  padding: 16px 32px; gap: 8px;
  background: var(--charcoal); border-bottom: 1px solid rgba(255,255,255,.06);
}
.sp-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.2); transition: background .3s, transform .3s var(--ease-bounce);
}
.sp-dot.active { background: var(--gold); transform: scale(1.3); }
.sp-line { flex: 1; max-width: 40px; height: 1px; background: rgba(255,255,255,.1); }

/* FORM STEPS */
.res-form { padding: 0; }
.form-step { display: none; padding: 32px; animation: stepIn .4s var(--ease-smooth); }
.form-step.active { display: block; }
@keyframes stepIn { from{opacity:0;transform:translateX(20px)} to{opacity:1;transform:none} }

.step-label {
  display: flex; align-items: center; gap: 12px;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ash); margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 1px solid var(--sand-light);
}
.step-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold); color: var(--charcoal);
  font-size: .65rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ash); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--cream);
  border: 1.5px solid var(--sand);
  border-radius: 6px; padding: 12px 14px;
  font-size: .88rem; color: var(--charcoal);
  outline: none; transition: border-color .3s, box-shadow .3s;
  width: 100%; cursor: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,.12);
}
.form-group input.error { border-color: #e05c5c; }
.form-group textarea { resize: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* TIME SLOTS */
.time-slots { display: flex; flex-wrap: wrap; gap: 8px; min-height: 36px; }
.time-slot {
  padding: 7px 14px; border-radius: 20px;
  border: 1.5px solid var(--sand); background: var(--cream);
  font-size: .78rem; color: var(--ash);
  transition: border-color .2s, background .2s, color .2s;
  cursor: none;
}
.time-slot:hover { border-color: var(--gold); color: var(--gold); }
.time-slot.active { border-color: var(--gold); background: var(--gold); color: var(--charcoal); font-weight: 600; }
.time-slots-empty { font-size: .78rem; color: var(--ash-light); padding: 8px 0; }

/* PEOPLE SELECTOR */
.people-selector {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  padding: 24px 0;
}
.psel-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--sand); color: var(--charcoal);
  font-size: 1.3rem; display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s, transform .2s var(--ease-bounce);
  cursor: none;
}
.psel-btn:hover { border-color: var(--gold); background: rgba(201,169,110,.08); transform: scale(1.1); }
.psel-display { text-align: center; }
#pselCount {
  font-family: var(--ff-display); font-size: 3.5rem; font-weight: 300;
  color: var(--charcoal); display: block; line-height: 1;
}
.psel-label { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ash); }

/* CHECK OPTS */
.check-opts { display: flex; flex-direction: column; gap: 8px; }
.check-opts.cols2 { display: grid; grid-template-columns: 1fr 1fr; }
.check-opt {
  display: flex; align-items: center; gap: 10px;
  font-size: .84rem; color: var(--ink); padding: 8px 12px;
  border-radius: 6px; border: 1px solid transparent;
  transition: background .2s, border-color .2s; cursor: none;
}
.check-opt:hover { background: var(--cream); border-color: var(--sand); }
.check-opt input { width: 16px; height: 16px; accent-color: var(--gold); flex-shrink: 0; cursor: none; }

/* STEP ACTIONS */
.step-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--sand-light); }

/* SUCCESS */
.res-success {
  padding: 48px 32px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.success-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 8px; }
.res-success h3 { font-family: var(--ff-display); font-size: 2rem; font-weight: 300; color: var(--charcoal); }
.success-msg { font-family: var(--ff-display); font-size: 1.1rem; color: var(--ash); font-style: italic; }
.success-sub { font-size: .82rem; color: var(--ash); line-height: 1.6; max-width: 340px; }

@media (max-width: 900px) {
  .res-hero { grid-template-columns: 1fr; }
  .rh-left { min-height: 50vh; padding: 80px 24px 48px; }
  .rh-right { padding: 40px 20px; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .check-opts.cols2 { grid-template-columns: 1fr; }
}

/* ================================================================
   INFO STRIP
================================================================ */
.info-strip {
  background: var(--charcoal);
  border-top: 1px solid rgba(201,169,110,.12);
  border-bottom: 1px solid rgba(201,169,110,.12);
}
.info-strip-inner {
  display: flex; flex-wrap: wrap;
  max-width: var(--max-w); margin: 0 auto; padding: 0 48px;
}
.is-block {
  display: flex; align-items: center; gap: 14px;
  padding: 28px 0; flex: 1; min-width: 200px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s var(--ease-smooth), transform .7s var(--ease-smooth);
  transition-delay: var(--d,0s);
}
.is-block.visible { opacity: 1; transform: none; }
.is-icon { font-size: 1.5rem; flex-shrink: 0; }
.is-title { display: block; font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ash); margin-bottom: 2px; }
.is-val { display: block; font-size: .88rem; color: var(--cream); }
.is-sep { width: 1px; background: rgba(255,255,255,.06); margin: 20px 32px; }
@media (max-width: 700px) { .info-strip-inner { padding: 0 20px; } .is-sep { display: none; } }

/* ================================================================
   LOCATION SECTION
================================================================ */
.location-section { padding: 100px 48px; max-width: var(--max-w); margin: 0 auto; }
.ls-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: stretch; }
.ls-p { font-size: .95rem; line-height: 1.8; color: var(--ink); margin: 20px 0 28px; }
.ls-address-card {
  background: var(--cream-dark); border-radius: 8px;
  padding: 24px 28px; display: flex; flex-direction: column; gap: 14px;
  border: 1px solid var(--sand);
}
.lac-row { display: flex; align-items: center; gap: 12px; font-size: .88rem; color: var(--ink); }
.lac-icon { font-size: 1rem; flex-shrink: 0; }
.lac-row a { color: var(--gold); transition: opacity .2s; }
.lac-row a:hover { opacity: .75; }
.ls-map {
  border-radius: 8px; overflow: hidden;
  min-height: 420px;
  filter: sepia(.15) grayscale(.1);
  border: 1px solid var(--sand);
}
.ls-map iframe { width: 100%; height: 100%; min-height: 420px; }
@media (max-width: 900px) {
  .ls-inner { grid-template-columns: 1fr; }
  .location-section { padding: 80px 20px; }
}
