@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700&family=Italianno&display=swap");

:root {
  --ffbf-gold: #CF823C;
  --ffbf-black: #111;
  --ffbf-white: #fff;
  --ffbf-soft: #fffaf5;
  --ffbf-border: #ead7c7;
  --ffbf-muted: #555;
}

.ffbf-booking-form,
.ffbf-booking-form * {
  box-sizing: border-box;
}

.ffbf-booking-form {
  width: 100%;
  background: #fff !important;
  color: #111 !important;
  font-family: Heebo, sans-serif;
  padding: 60px 18px;
}

.ffbf-shell {
  max-width: 1080px;
  margin: 0 auto;
  background: #fff !important;
  border: 1px solid var(--ffbf-border);
  border-radius: 24px;
  padding: 42px;
  box-shadow: 0 18px 55px rgba(0,0,0,.08);
}

.ffbf-intro {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 40px;
}

.ffbf-script-heading,
.ffbf-section-title {
  font-family: Italianno, cursive;
  color: var(--ffbf-gold) !important;
  font-size: 38px;
  line-height: 42px;
  font-weight: 500;
  margin: 0 0 12px;
}

.ffbf-intro h2 {
  color: #111 !important;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  font-weight: 700;
  margin: 0 0 18px;
}

.ffbf-intro p,
.ffbf-help {
  color: #555 !important;
  font-size: 17px;
  line-height: 28px;
  font-weight: 300;
}

.ffbf-panel {
  background: var(--ffbf-soft) !important;
  border: 1px solid var(--ffbf-border);
  border-radius: 22px;
  padding: 30px;
  margin-bottom: 24px;
}

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

.ffbf-booking-form label {
  color: #111 !important;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

.ffbf-booking-form label span {
  color: var(--ffbf-gold) !important;
}

.ffbf-booking-form input,
.ffbf-booking-form textarea,
.ffbf-booking-form select {
  width: 100%;
  min-height: 52px;
  margin-top: 9px;
  background: #fff !important;
  color: #111 !important;
  border: 1px solid #d8d8d8 !important;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px;
  line-height: 24px;
  font-family: Heebo, sans-serif;
  outline: none;
}

.ffbf-booking-form textarea {
  min-height: 150px;
  resize: vertical;
}

.ffbf-booking-form input:focus,
.ffbf-booking-form textarea:focus,
.ffbf-booking-form select:focus {
  border-color: var(--ffbf-gold) !important;
  box-shadow: 0 0 0 4px rgba(207,130,60,.15);
}

.ffbf-menu-list {
  display: grid;
  gap: 22px;
  margin-top: 22px;
}

.ffbf-menu-block {
  background: #fff !important;
  border: 1px solid rgba(207,130,60,.35);
  border-radius: 18px;
  overflow: hidden;
}

.ffbf-menu-block summary {
  cursor: pointer;
  list-style: none;
  background: #fff2e7 !important;
  color: #111 !important;
  padding: 20px 24px;
  font-size: 21px;
  line-height: 28px;
  font-weight: 700;
  border-bottom: 1px solid rgba(207,130,60,.25);
}

.ffbf-menu-block summary::-webkit-details-marker {
  display: none;
}

.ffbf-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  background: #fff !important;
}

.ffbf-check {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  background: #fffaf5 !important;
  border: 1px solid #f0dfd0;
  border-radius: 14px;
  padding: 15px 16px;
  color: #111 !important;
  font-size: 16px !important;
  line-height: 25px !important;
  font-weight: 400 !important;
}

.ffbf-check:hover {
  border-color: var(--ffbf-gold);
  background: #fff6ef !important;
}

.ffbf-check input[type="checkbox"] {
  width: 20px !important;
  min-width: 20px !important;
  height: 20px !important;
  min-height: 20px !important;
  margin: 3px 0 0 !important;
  padding: 0 !important;
  accent-color: var(--ffbf-gold);
}

.ffbf-check span {
  color: #111 !important;
  font-size: 16px !important;
  line-height: 25px !important;
  font-weight: 400 !important;
}

.ffbf-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  background: var(--ffbf-gold) !important;
  color: #fff !important;
  border: 1px solid var(--ffbf-gold) !important;
  border-radius: 999px;
  padding: 16px 34px;
  font-size: 17px;
  line-height: 24px;
  font-weight: 700;
  cursor: pointer;
}

.ffbf-submit:hover {
  background: #111 !important;
  border-color: #111 !important;
}

.ffbf-response {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 600;
}

.ffbf-response.success {
  color: #067647 !important;
}

.ffbf-response.error {
  color: #b42318 !important;
}

@media (max-width: 900px) {
  .ffbf-shell {
    padding: 28px;
  }

  .ffbf-grid,
  .ffbf-items {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .ffbf-booking-form {
    padding: 36px 14px;
  }

  .ffbf-shell {
    padding: 22px;
    border-radius: 18px;
  }

  .ffbf-panel {
    padding: 22px;
  }

  .ffbf-script-heading,
  .ffbf-section-title {
    font-size: 34px;
  }

  .ffbf-menu-block summary {
    font-size: 19px;
    padding: 18px;
  }

  .ffbf-items {
    padding: 18px;
  }
}