:root {
  --lhb-bg: #f9f7f4;
  --lhb-card: #ffffff;
  --lhb-text: #1e1e22;
  --lhb-muted: #66656a;
  --lhb-border: #ddd9dc;
  --lhb-placeholder: #77757a;
  --lhb-accent: #d91f49;
  --lhb-accent-dark: #b81639;
  --lhb-accent-soft: #fff1f4;
  --lhb-success: #18834b;
  --lhb-error: #b4253e;
  --lhb-shadow: 0 18px 50px rgba(25, 18, 22, 0.10);
  --lhb-radius: 11px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% 0%, rgba(217,31,73,0.025), transparent 28%),
    var(--lhb-bg);
  color: var(--lhb-text);
  font-family: "Montserrat", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.lhb-booking {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(32px, 6vw, 80px) 18px;
}

.lhb-booking__card {
  width: min(100%, 620px);
  background: var(--lhb-card);
  border: 1px solid rgba(0,0,0,0.045);
  border-radius: 16px;
  padding: clamp(26px, 4vw, 42px);
  box-shadow: var(--lhb-shadow);
}

.lhb-booking__heading { text-align: center; }

.lhb-booking__eyebrow {
  margin: 0 0 2px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #19191c;
}

.lhb-booking__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 6vw, 58px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.lhb-booking__title em {
  color: var(--lhb-accent);
  font-style: italic;
}

.lhb-booking__intro {
  margin: 12px auto 24px;
  color: #36343a;
  font-size: 12px;
  line-height: 1.55;
  max-width: 430px;
}

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

.lhb-grid {
  display: grid;
  gap: 10px;
}

.lhb-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lhb-field {
  position: relative;
}

.lhb-field input,
.lhb-field select,
.lhb-field textarea {
  width: 100%;
  border: 1px solid var(--lhb-border);
  border-radius: var(--lhb-radius);
  background: #fff;
  color: var(--lhb-text);
  font: 500 12px/1.4 "Montserrat", Arial, sans-serif;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.lhb-field input,
.lhb-field select {
  min-height: 46px;
  padding: 0 38px 0 14px;
}

.lhb-field textarea {
  min-height: 92px;
  padding: 13px 14px;
  resize: vertical;
}

.lhb-field select {
  appearance: none;
  cursor: pointer;
}

.lhb-field input::placeholder,
.lhb-field textarea::placeholder,
.lhb-field select:invalid {
  color: var(--lhb-placeholder);
}

.lhb-field input:focus,
.lhb-field select:focus,
.lhb-field textarea:focus {
  outline: none;
  border-color: rgba(217,31,73,0.55);
  box-shadow: 0 0 0 3px rgba(217,31,73,0.08);
}

.lhb-field input[aria-invalid="true"],
.lhb-field select[aria-invalid="true"],
.lhb-field textarea[aria-invalid="true"] {
  border-color: var(--lhb-error);
  box-shadow: 0 0 0 3px rgba(180,37,62,0.07);
}

.lhb-field__icon {
  position: absolute;
  right: 14px;
  top: 50%;
  width: 11px;
  height: 11px;
  pointer-events: none;
  transform: translateY(-50%);
  color: #4e4c52;
}

.lhb-field__icon--chevron {
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
}

.lhb-field__icon--calendar {
  width: 12px;
  height: 12px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
}

.lhb-field__icon--calendar::before {
  content: "";
  position: absolute;
  left: -1.5px;
  right: -1.5px;
  top: 2px;
  border-top: 1.5px solid currentColor;
}

.lhb-field__icon--calendar::after {
  content: "";
  position: absolute;
  width: 1.5px;
  height: 3px;
  left: 2px;
  top: -3px;
  background: currentColor;
  box-shadow: 5px 0 0 currentColor;
}

.lhb-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 10px 13px;
  border: 1px solid rgba(217,31,73,0.15);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff8f9, var(--lhb-accent-soft));
}

.lhb-price__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #56525a;
}

.lhb-price__value {
  font-size: 12px;
  line-height: 1.3;
  color: #242228;
  text-align: right;
}

.lhb-submit {
  display: grid;
  grid-template-columns: 20px 1fr 20px;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, #e62d54, var(--lhb-accent));
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(217,31,73,0.20);
  font: 700 12px/1 "Montserrat", Arial, sans-serif;
  letter-spacing: 0.01em;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.lhb-submit:hover:not(:disabled),
.lhb-submit:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(217,31,73,0.25);
  filter: brightness(1.02);
  outline: none;
}

.lhb-submit:active:not(:disabled) { transform: translateY(0); }
.lhb-submit:disabled { opacity: 0.72; cursor: wait; }

.lhb-submit__text { text-align: center; }
.lhb-submit__icon { font-size: 12px; }

.lhb-booking__contact {
  margin: 2px 0 0;
  text-align: center;
  color: #454248;
  font-size: 11px;
  line-height: 1.5;
}

.lhb-booking__contact a {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.lhb-booking__contact a:hover { color: var(--lhb-accent); }

.lhb-feedback {
  border-radius: 10px;
  padding: 12px 13px;
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}

.lhb-feedback[data-type="success"] {
  background: #effaf4;
  border: 1px solid #ccecd9;
  color: #176a42;
}

.lhb-feedback[data-type="error"] {
  background: #fff2f4;
  border: 1px solid #f4cbd2;
  color: #9c2037;
}

.lhb-feedback strong { font-weight: 800; }

.lhb-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.lhb-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 680px) {
  .lhb-booking__card { padding: 24px 18px; border-radius: 14px; }
  .lhb-booking__intro { margin-bottom: 19px; }
  .lhb-grid--two { grid-template-columns: 1fr; }
  .lhb-price { align-items: flex-start; flex-direction: column; }
  .lhb-price__value { text-align: left; }
}

@media (max-width: 420px) {
  .lhb-booking { padding: 18px 10px; }
  .lhb-booking__card { padding: 22px 14px; }
  .lhb-booking__eyebrow { font-size: 11px; }
  .lhb-booking__title { font-size: 41px; }
  .lhb-booking__intro { font-size: 11px; }
  .lhb-field input, .lhb-field select, .lhb-field textarea { font-size: 11px; }
  .lhb-submit { font-size: 10px; }
  .lhb-desktop-break { display: none; }
}
