body.no-scroll #app {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  overflow-y: auto;
}

.res-outer {
  min-height: calc(100vh - var(--nav-h));
  position: relative;
}

.res-bg {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.res-bg-overlay {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(106deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.28) 44%, rgba(0,0,0,0.08) 100%);
  z-index: 1;
}

.res-inner {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: 48px var(--pad-x);
  gap: clamp(28px, 4vw, 52px);
}

.res-left {
  flex: 0 0 clamp(180px, 22vw, 280px);
  align-self: flex-start;
  padding-top: clamp(120px, 32vh, 240px);
}

.res-big-title {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 36px;
}

.res-tagline {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.res-right {
  flex: 1;
  max-width: 700px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.steps-float {
  display: flex;
  align-items: flex-start;
}

.sf-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  flex-shrink: 0;
}

.sf-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  transition: all 0.3s;
  flex-shrink: 0;
}

.sf-step.active .sf-circle {
  background: #ffffff;
  border-color: #ffffff;
  color: #111111;
}

.sf-step.done .sf-circle {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.6);
  color: #ffffff;
}

.sf-label {
  font-size: 7.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  transition: color 0.3s;
  white-space: nowrap;
}

.sf-step.active .sf-label { color: #ffffff; font-weight: 600; }
.sf-step.done .sf-label  { color: rgba(255,255,255,0.5); }

.sf-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.22);
  margin-top: 16px;
  min-width: 12px;
  max-width: 60px;
}

.form-panel {
  background: #ffffff;
  border-radius: 8px;
  padding: 36px 40px 40px;
  color: #111111;
  min-height: 360px;
}

.fp-eye {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 8px;
}

.fp-title {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: #111111;
  margin-bottom: 26px;
}

.fp-err {
  font-size: 11px;
  color: rgba(200,50,50,0.85);
  min-height: 16px;
  margin-top: 4px;
}

.f-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-bottom: 4px;
}

.f-col2 { grid-column: 1 / -1; }

.f-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.f-group label {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.0px;
  text-transform: uppercase;
  color: #888888;
}

.f-group input,
.f-group select,
.f-group textarea {
  border: none;
  border-bottom: 1.5px solid #e6e6e6;
  padding: 8px 0;
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #111111;
  outline: none;
  background: transparent;
  width: 100%;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}

.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
  border-bottom-color: #111111;
}

.f-group input::placeholder,
.f-group textarea::placeholder {
  color: #c0c0c0;
  font-size: 14px;
}

.f-group textarea {
  resize: vertical;
  min-height: 66px;
  line-height: 1.6;
}

.f-group select { cursor: pointer; }

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.pill {
  padding: 7px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 100px;
  font-size: 12px;
  color: #666666;
  cursor: pointer;
  transition: all 0.16s;
  user-select: none;
}

.pill:hover { border-color: #999; }

.pill.on {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.style-card {
  border: 1.5px solid #ebebeb;
  border-radius: 8px;
  padding: 18px 12px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.16s, background 0.16s;
  user-select: none;
}

.style-card:hover { border-color: #bbb; }

.style-card.on {
  border-color: #111111;
  background: #f7f7f7;
}

.sc-name {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #777;
}

.style-card.on .sc-name {
  color: #111111;
  font-weight: 600;
}

.dual-cal {
  display: flex;
  gap: 0;
  margin-bottom: 4px;
}

.cal-month { flex: 1; }

.cal-sep {
  width: 1px;
  background: #eeeeee;
  margin: 0 24px;
  flex-shrink: 0;
}

.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.cal-nav {
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #666;
  transition: background 0.14s;
}

.cal-nav:hover { background: #f2f2f2; }
.cal-nav.hide  { visibility: hidden; }

.cal-mname {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #111111;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px 0;
}

.cal-dh {
  text-align: center;
  font-size: 8.5px;
  color: #cccccc;
  padding: 3px 0 8px;
  letter-spacing: 0.5px;
}

.cal-d {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11.5px;
  cursor: pointer;
  border-radius: 50%;
  color: #333333;
  transition: background 0.12s, color 0.12s;
  user-select: none;
  position: relative;
}

.cal-d:hover:not(.cal-empty):not(.cal-past):not(.cal-booked) { background: #f0f0f0; }
.cal-d.cal-past   { color: #ddd; cursor: default; }
.cal-d.cal-booked { color: #ddd; cursor: not-allowed; text-decoration: line-through; }
.cal-d.cal-empty  { cursor: default; }
.cal-d.cal-today  { font-weight: 700; }

.cal-d.cal-today::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.cal-d.cal-sel      { background: #111111; color: #ffffff; border-radius: 50%; }
.cal-d.cal-range-s  { background: #111111; color: #ffffff; border-radius: 50% 0 0 50%; }
.cal-d.cal-range-e  { background: #111111; color: #ffffff; border-radius: 0 50% 50% 0; }
.cal-d.cal-in-range { background: #f0f0f0; border-radius: 0; color: #444; }

.cal-info {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  gap: 32px;
}

.cal-info-lbl {
  font-size: 8.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #cccccc;
  margin-bottom: 4px;
}

.cal-info-val {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #111111;
}

.summary-box {
  border: 1px solid #eeeeee;
  border-radius: 6px;
  padding: 16px 20px;
  margin-bottom: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
}

.summary-row:last-child { border-bottom: none; }

.sum-lbl {
  font-size: 8.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #bbbbbb;
  flex-shrink: 0;
  margin-right: 16px;
}

.sum-val {
  font-size: 12.5px;
  font-weight: 500;
  color: #111111;
  text-align: right;
  max-width: 280px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.btn-fp-back {
  background: none;
  border: 1px solid #ddd;
  padding: 9px 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  cursor: pointer;
  color: #aaaaaa;
  border-radius: 2px;
  transition: all 0.16s;
}

.btn-fp-back:hover { border-color: #aaa; color: #555; }

.btn-fp-next {
  background: #111111;
  border: none;
  padding: 10px 24px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  cursor: pointer;
  color: #ffffff;
  border-radius: 2px;
  transition: background 0.16s;
}

.btn-fp-next:hover     { background: #2e2e2e; }
.btn-fp-next:disabled  { opacity: 0.5; cursor: not-allowed; }

.success-wrap {
  text-align: center;
  padding: 52px 20px;
}

.success-ring {
  width: 56px; height: 56px;
  border: 1.5px solid #d8d8d8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.success-h {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #111111;
  margin-bottom: 12px;
}

.success-p {
  font-size: 13px;
  color: #888;
  line-height: 1.75;
  max-width: 340px;
  margin: 0 auto;
}

.success-tag {
  margin-top: 22px;
  font-size: 13px;
  color: #cccccc;
}

.pwd-overlay {
  position: fixed;
  inset: 0;
  z-index: 980;
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.pwd-overlay.visible { opacity: 1; }

.pwd-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px 36px;
  width: 100%;
  max-width: 360px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.pwd-title {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-primary);
}

.pwd-desc {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 6px;
}

.pwd-box input[type="password"] {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  color: var(--text-primary);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 10px 0;
  outline: none;
  text-align: center;
  letter-spacing: 0.15em;
  transition: border-bottom-color 0.3s;
}

.pwd-box input[type="password"]:focus { border-bottom-color: rgba(255,255,255,0.55); }

.pwd-error {
  font-size: 0.64rem;
  color: rgba(255,120,120,0.85);
  min-height: 16px;
}

.pwd-box .btn-outline {
  margin-top: 10px;
  width: 100%;
}

@media (max-width: 900px) {
  .res-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px var(--pad-x);
  }

  .res-left {
    flex: none;
    align-self: auto;
    padding-bottom: 0;
  }

  .res-right {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .sf-label    { display: none; }
  .sf-line     { max-width: 32px; }
  .f-grid      { grid-template-columns: 1fr; }
  .f-col2      { grid-column: 1; }
  .style-grid  { grid-template-columns: 1fr 1fr; }
  .dual-cal    { flex-direction: column; gap: 20px; }
  .cal-sep     { display: none; }
  .form-panel  { padding: 24px 20px; }
}
