/* Pre Book enquiry modal — glass, brand green / gold */
.vv-prebook {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: 20px 16px;
}
.vv-prebook[hidden] { display: none; }

.vv-prebook-scrim {
  position: absolute;
  inset: 0;
  background: rgba(18, 32, 22, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.vv-prebook-card {
  position: relative;
  width: min(440px, 100%);
  max-height: min(92vh, 720px);
  overflow: auto;
  padding: 28px 24px 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background:
    linear-gradient(155deg, rgba(250, 247, 240, 0.92), rgba(255, 255, 255, 0.78)),
    rgba(250, 247, 240, 0.88);
  box-shadow:
    0 24px 60px rgba(23, 63, 39, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  font-family: "DM Sans", system-ui, sans-serif;
  color: #1d2a1f;
}

.vv-prebook-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: rgba(46, 83, 50, 0.08);
  color: #2e5332;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.vv-prebook-close:hover { background: rgba(46, 83, 50, 0.14); }
.vv-prebook-close svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.vv-prebook-kicker {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d4a017;
  font-weight: 600;
}

.vv-prebook-card h2 {
  margin: 0 0 8px;
  font-family: Merriweather, Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #2e5332;
  line-height: 1.25;
}

.vv-prebook-sub {
  margin: 0 0 20px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #5a675e;
}

.vv-prebook-form {
  display: grid;
  gap: 12px;
}

.vv-prebook-field {
  display: grid;
  gap: 6px;
}
.vv-prebook-field > span {
  font-size: 0.78rem;
  font-weight: 600;
  color: #3d4f40;
  letter-spacing: 0.02em;
}
.vv-prebook-field > span em {
  font-style: normal;
  font-weight: 500;
  color: #8a948c;
}

.vv-prebook-input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(46, 83, 50, 0.22);
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 0.95rem;
  color: #1d2a1f;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.vv-prebook-input:focus {
  border-color: #2e5332;
  box-shadow: 0 0 0 3px rgba(46, 83, 50, 0.15);
}
.vv-prebook-input[readonly] {
  background: rgba(46, 83, 50, 0.07);
  color: #2e5332;
  font-weight: 600;
  cursor: default;
}
.vv-prebook-input.is-invalid {
  border-color: #c45c4a;
  background: #fff8f7;
}
.vv-prebook-textarea {
  resize: vertical;
  min-height: 72px;
}

.vv-prebook-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.vv-prebook-error {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fdecea;
  color: #8b2e22;
  font-size: 0.88rem;
}

.vv-prebook-submit {
  margin-top: 4px;
  width: 100%;
  padding: 14px 18px;
  border: 0;
  border-radius: 12px;
  background: #2e5332;
  color: #faf7f0;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, transform 0.12s;
}
.vv-prebook-submit:hover { background: #24401f; }
.vv-prebook-submit:active { transform: scale(0.98); }
.vv-prebook-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

body.vv-prebook-open { overflow: hidden; }

@media (max-width: 480px) {
  .vv-prebook { padding: 12px; align-items: end; }
  .vv-prebook-card {
    width: 100%;
    border-radius: 18px 18px 12px 12px;
    padding: 24px 18px 20px;
  }
}
