:root {
  --fc-ink: #12231f;
  --fc-forest: #11654a;
  --fc-lime: #bce743;
  --fc-violet: #6336d9;
  --fc-coral: #ff765f;
  --fc-cream: #fffaf0;
}

.fcb-booking,
.fcb-status-page {
  color: var(--fc-ink);
  font-family: inherit;
}

.fcb-booking {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(0, 1.6fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(28px, 5vw, 64px);
  border-radius: 32px;
  background: var(--fc-cream);
  box-shadow: 0 24px 70px rgba(18, 35, 31, .11);
}

.fcb-eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--fc-forest);
  background: rgba(188, 231, 67, .28);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.fcb-booking h2,
.fcb-status-page h1 {
  margin: 0 0 16px;
  color: var(--fc-ink);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.fcb-booking__intro p { font-size: 18px; line-height: 1.6; }

.fcb-booking__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.fcb-field { display: flex; flex-direction: column; gap: 8px; }
.fcb-field--wide { grid-column: 1 / -1; }
.fcb-field label,
.fcb-status-page label { font-size: 14px; font-weight: 750; }

.fcb-field input,
.fcb-field select,
.fcb-field textarea,
.fcb-status-page textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(18, 35, 31, .18);
  border-radius: 14px;
  color: var(--fc-ink);
  background: #fff;
  font: inherit;
  box-sizing: border-box;
}

.fcb-field textarea,
.fcb-status-page textarea { min-height: 112px; resize: vertical; }
.fcb-field input:focus,
.fcb-field select:focus,
.fcb-field textarea:focus,
.fcb-status-page textarea:focus { outline: 3px solid rgba(188, 231, 67, .48); border-color: var(--fc-forest); }
.fcb-field small { min-height: 18px; color: #52615d; }

.fcb-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; line-height: 1.45; }
.fcb-consent input { margin-top: 3px; }
.fcb-honeypot { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }

.fcb-button {
  min-height: 52px;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--fc-forest);
  box-shadow: 0 10px 24px rgba(17, 101, 74, .24);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}
.fcb-button:hover { transform: translateY(-1px); background: #0c533c; }
.fcb-button:disabled { opacity: .62; cursor: progress; transform: none; }

.fcb-result { display: none; padding: 16px 18px; border-radius: 14px; line-height: 1.5; }
.fcb-result.is-success,
.fcb-result.is-error { display: block; }
.fcb-result.is-success { background: #e9f8dd; color: #245225; }
.fcb-result.is-error { background: #fff0ed; color: #822a20; }

.fcb-status-page { max-width: 820px; margin: 0 auto; padding: clamp(28px, 5vw, 64px); border-radius: 30px; background: var(--fc-cream); }
.fcb-contact { display: grid; grid-template-columns: minmax(240px,.75fr) minmax(0,1.25fr); gap: clamp(30px,6vw,80px); padding: clamp(28px,5vw,64px); border-radius: 30px; background: var(--fc-cream); }
.fcb-contact h2 { margin: 0 0 18px; font-size: clamp(34px,5vw,58px); line-height: 1.04; letter-spacing: -.035em; }
.fcb-contact__details a { color: var(--fc-forest); font-size: 22px; font-weight: 850; }
.fcb-contact__form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fcb-booking-summary { margin: 24px 0; padding: 24px; border-radius: 20px; background: #fff; }
.fcb-status-pill { display: inline-flex; padding: 7px 11px; border-radius: 999px; font-weight: 800; font-size: 13px; }
.fcb-status-pill--pending { background: #fff0bd; color: #6a5100; }
.fcb-status-pill--confirmed { background: #dcf5dc; color: #1b5c27; }
.fcb-status-pill--cancelled,
.fcb-status-pill--rejected { background: #ffe0dc; color: #76251c; }
.fcb-public-messages { margin: 28px 0; }
.fcb-public-message { max-width: 82%; margin: 12px 0; padding: 14px 16px; border-radius: 16px; background: #fff; }
.fcb-public-message--customer { margin-left: auto; background: #e7f0ff; }
.fcb-public-message small { color: #63716d; }
.fcb-public-message p { margin: 7px 0 0; white-space: pre-wrap; }
.fcb-status-page form { display: flex; flex-direction: column; gap: 12px; }

@media (max-width: 760px) {
  .fcb-booking { grid-template-columns: 1fr; border-radius: 22px; }
  .fcb-booking__form, .fcb-contact__form { grid-template-columns: 1fr; }
  .fcb-contact { grid-template-columns: 1fr; }
  .fcb-field--wide { grid-column: auto; }
}
