/* Google Local booking page — mobile-first */

.page-book {
  min-height: 100vh;
  background: #0f2340;
}

.page-book .site-van-bg {
  display: none;
}

.book-hero {
  padding: calc(var(--nav-h, 72px) + 28px) 20px 20px;
  text-align: center;
  background: linear-gradient(180deg, #143356 0%, #0f2340 100%);
}

.book-hero__inner {
  max-width: 520px;
  margin: 0 auto;
}

.book-hero__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fcd34d;
}

.book-hero__title {
  margin: 0 0 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 10vw, 64px);
  letter-spacing: 1px;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.book-hero__lead {
  margin: 0 auto 16px;
  max-width: 34em;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.book-hero__phone {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 7vw, 36px);
  letter-spacing: 1px;
  color: #fcd34d;
  text-decoration: none;
}

.book-hero__phone:hover {
  color: #fff;
}

.book-main {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 16px 48px;
}

.book-panel {
  position: relative;
  z-index: 2;
  background: #ffffff;
  opacity: 1;
  border-radius: 16px;
  padding: 24px 20px 22px;
  border: 1px solid rgba(15, 35, 64, 0.12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.book-form label,
.book-fieldset {
  display: block;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f2340;
}

.book-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #6b7c90;
}

.book-req {
  color: #dc2626;
  font-weight: 700;
}

.book-form input,
.book-form select,
.book-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid #c5d2e2;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #0f2340;
  background: #ffffff;
  opacity: 1;
}

.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  outline: none;
  border-color: #2e6da4;
  box-shadow: 0 0 0 3px rgba(46, 109, 164, 0.18);
  background: #ffffff;
}

.book-form textarea {
  min-height: 88px;
  resize: vertical;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.book-fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 14px;
}

.book-fieldset legend {
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f2340;
}

.book-when {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.book-chip {
  margin: 0;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  font-size: 14px;
  color: #0f2340;
}

.book-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.book-chip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 12px;
  text-align: center;
  border-radius: 10px;
  border: 2px solid #c5d2e2;
  background: #ffffff;
  color: #0f2340;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.book-chip input:checked + span {
  border-color: #f59e0b;
  background: #fde68a;
  box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.35);
}

.book-date-wrap[hidden] {
  display: none;
}

.book-submit {
  width: 100%;
  margin-top: 4px;
  padding: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0f2340;
  background: linear-gradient(135deg, #fde68a 0%, #fcd34d 42%, #f59e0b 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.book-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.book-fine {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: #6b7c90;
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.book-error {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.book-success {
  text-align: center;
  padding: 12px 4px 4px;
  background: #ffffff;
}

.book-success__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dcfce7;
  color: #15803d;
  font-size: 28px;
  font-weight: 700;
}

.book-success h2 {
  margin: 0 0 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.5px;
  color: #0f2340;
}

.book-success p {
  margin: 0 0 18px;
  color: #334155;
  font-size: 15px;
  line-height: 1.55;
}

.book-success__phone {
  font-weight: 700;
  color: #0f2340;
}

.book-success__call,
.book-success__home {
  display: block;
  margin: 0 auto 10px;
  max-width: 280px;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}

.book-success__call {
  color: #0f2340;
  background: linear-gradient(135deg, #fde68a 0%, #fcd34d 100%);
}

.book-success__home {
  color: #2e6da4;
  background: transparent;
}

.book-alt {
  margin: 20px 0 0;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.book-alt a {
  color: #fcd34d;
  font-weight: 600;
}

.page-book footer {
  background: #0a1a30;
}

@media (max-width: 600px) {
  .book-hero {
    padding: calc(var(--nav-h, 62px) + 18px) 14px 14px;
  }

  .book-panel {
    padding: 18px 14px 16px;
  }

  .book-when {
    gap: 6px;
  }

  .book-chip span {
    min-height: 46px;
    font-size: 13px;
    padding: 8px 8px;
  }
}
