
:root {
  --navy: #1a1f3a;
  --indigo: #2E266D;
  --gold: #b8975a;
  --gold-lt: #d4b07a;
  --cream: #faf8f4;
  --paper: #ffffff;
  --text: #2c2c2a;
  --text-muted: #6a6a6a;
  --border: rgba(46,38,109,0.14);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: 'Jost', Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
.wrap { max-width: 640px; margin: 0 auto; padding: 40px 20px 80px; }
.brandKicker {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
h1.pageTitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 30px;
  color: var(--navy);
  text-align: center;
  margin: 0 0 6px;
}
p.pageSub {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin: 0 0 36px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 28px 8px;
  margin-bottom: 24px;
}
h2.sectionLabel {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--navy);
  border-top: 2px solid var(--gold);
  padding-top: 24px;
  margin: 36px 0 18px;
}
.card > h2.sectionLabel:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.sectionBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Jost', Arial, sans-serif;
  font-style: normal;
  margin-right: 10px;
  vertical-align: middle;
  letter-spacing: 0;
  text-transform: none;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.field .hint { font-size: 12px; color: var(--text-muted); margin: 0 0 8px; }
input[type=text], input[type=email], input[type=tel], input[type=date],
select, textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: var(--paper);
}
textarea { min-height: 80px; resize: vertical; }
.radioRow, .checkRow {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
}
.radioRow input, .checkRow input { margin-top: 3px; }
.sectionImageWrap {
  max-width: 480px;
  margin: 0 auto 20px;
  overflow: hidden;
  border-radius: 4px;
}
.sectionImageWrap img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}
.bookNowBtn {
  display: inline-block;
  width: auto;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  padding: 10px 24px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.15s ease;
}
.bookNowBtn:hover {
  background: var(--gold);
}
.consentBlock {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0;
  padding: 16px 18px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--text);
}
.consentBlock p { margin: 0 0 8px; }
.consentBlock ul { margin: 0 0 8px; padding-left: 18px; }
.required { color: #a03; }
.sigBlock {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 22px 24px;
}
.sigBlock .legalNote {
  font-size: 12px;
  font-style: italic;
  color: var(--text-muted);
  margin: 0 0 16px;
}
.submitBtn {
  display: block;
  width: 100%;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 15px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  margin-top: 8px;
}
.submitBtn:disabled { opacity: 0.5; cursor: not-allowed; }
.errorText {
  color: #a03;
  font-size: 12px;
  margin: 6px 0 0;
  display: none;
}
.errorText.show { display: block; }
.formError {
  background: #fbe9e9;
  border: 1px solid #e0a0a0;
  color: #7a1a1a;
  border-radius: 3px;
  padding: 12px 16px;
  font-size: 13px;
  margin-bottom: 20px;
  display: none;
}
.formError.show { display: block; }
.successCard { text-align: center; padding: 60px 28px; }
.successCard h1 { font-family: 'Cormorant Garamond', Georgia, serif; color: var(--navy); font-size: 28px; }
