/* Aura & Armour — /booknow
   The booking page reached from the Google Business Profile link. It borrows
   every token, button and footer rule from site.css; only the form controls,
   which the main page has none of, are defined here. Same design language:
   square corners, gold as a hairline detail, one ground per band. */

/* The [hidden] attribute is only honoured by a UA rule of specificity
   (0,1,0) — `[hidden] { display: none }`. Any class rule that sets `display`
   ties on specificity and wins on order, so `.booking-form { display: grid }`
   silently defeats `form.hidden = true`. That shipped once: the form stayed
   on screen after a successful send with its button frozen on "Sending…",
   while the thank-you appeared underneath it. Every panel this page shows
   and hides is toggled through `hidden`, so the guard belongs here, first,
   and it has to be !important to outrank whatever comes later. */
[hidden] { display: none !important; }

.booking-body { display: flex; flex-direction: column; min-height: 100vh; }
.booking-main { flex: 1 0 auto; padding-top: clamp(40px, 6vw, 72px); }
.booking-wrap { max-width: 720px; }

/* ---------- top bar ---------- */
.booking-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px var(--pad);
  background: var(--cream);
  border-bottom: 1px solid var(--gold);
}
.booking-bar .wordmark { text-decoration: none; color: var(--ink); }
.booking-bar-phone {
  font-family: var(--sans); text-align: right; text-decoration: none; color: var(--ink);
  line-height: 1.3;
}
.booking-bar-phone-label {
  display: block; font-size: 10px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--mute);
}
.booking-bar-phone-number {
  display: block; font-size: clamp(14px, 3.6vw, 17px); letter-spacing: 0.04em; font-weight: 500;
  white-space: nowrap;
}
.booking-bar-phone:hover .booking-bar-phone-number { color: var(--wine); }

/* ---------- headings ---------- */
.booking-title { font-size: clamp(38px, 7vw, 68px); margin-top: 14px; }
.booking-lead { color: var(--ink-soft); margin: 0 0 34px; }

/* ---------- call / chat, above the form ---------- */
/* Two big targets, side by side on anything wider than a phone and stacked
   on one. Not .btn — a button that size with 0.16em uppercase tracking
   turns into a ransom note; these are plates with a label above a value. */
.quick-actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin: 30px 0 0;
}
@media (max-width: 560px) { .quick-actions { grid-template-columns: 1fr; } }

.quick-action {
  display: block;
  padding: 22px 24px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.quick-action-label {
  display: block;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; font-weight: 500;
  opacity: 0.75;
  margin-bottom: 7px;
}
.quick-action-value {
  display: block;
  /* Jost, not the Bodoni used for headings. Bodoni's hairline strokes go
     faint at a glance and its digits are easy to misread — and this is a
     phone number someone may be copying down. Plain and legible beats
     elegant on the one element that has to be read correctly. */
  font-family: var(--sans); font-weight: 500;
  font-size: clamp(20px, 4vw, 25px);
  letter-spacing: 0.02em; line-height: 1.15;
  white-space: nowrap;
}
.quick-action-call { background: var(--wine); color: #fff; }
.quick-action-call:hover { background: #5F2A39; }
.quick-action-chat { background: transparent; color: var(--ink); border-color: var(--ink); }
.quick-action-chat:hover { background: var(--ink); color: var(--cream); }

/* Gold hairline through a centred label — the same detail the site uses as
   a section rule, turned into a divider. */
.quick-divider {
  display: flex; align-items: center; gap: 16px;
  margin: 26px 0 30px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--mute);
}
.quick-divider::before,
.quick-divider::after { content: ''; flex: 1; border-top: 1px solid var(--gold); }

/* ---------- form ---------- */
.booking-form { display: grid; gap: 22px; }

.field { display: grid; gap: 8px; }
.field label {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--mute); font-weight: 500;
}
.field-optional { text-transform: none; letter-spacing: 0.06em; font-style: italic; opacity: 0.75; }

/* Two side by side on desktop, stacked on a phone — a date and a time are
   one decision and read better as one row. */
.field-row { display: grid; gap: 22px; grid-template-columns: 1fr 1fr; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }

.booking-form input,
.booking-form select,
.booking-form textarea {
  /* Jost, not the Cormorant used for prose. A field is an interface control,
     not reading matter — the plain sans is easier to scan, and digits in a
     phone number or a date read unambiguously in it.
     16px is a floor, not a preference: iOS Safari zooms the whole page in on
     focusing any field under 16px, and the visitor never gets it back. */
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink);
  background: #FFFCF8;
  border: 1px solid var(--line);
  border-radius: 0;                /* square corners everywhere */
  padding: 13px 14px;
  width: 100%;
  /* iOS otherwise rounds and re-styles every control, and renders an empty
     date input at a different height from the selects beside it. */
  -webkit-appearance: none;
  appearance: none;
  min-height: 52px;
}
.booking-form textarea { resize: vertical; line-height: 1.6; }
.booking-form input:hover,
.booking-form select:hover,
.booking-form textarea:hover { border-color: var(--gold); }
.booking-form input:focus-visible,
.booking-form select:focus-visible,
.booking-form textarea:focus-visible { border-color: var(--wine); }
.booking-form ::placeholder { color: var(--mute); opacity: 0.7; }

/* The native arrow goes with -webkit-appearance: none, so draw one. */
.booking-form select {
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%),
                    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: right 20px center, right 14px center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.booking-form select:disabled { color: var(--mute); }

.field-error {
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.04em;
  color: var(--wine); margin: 0;
}
.field-invalid input,
.field-invalid select,
.field-invalid textarea { border-color: var(--wine); }

.booking-fineprint {
  font-family: var(--sans); font-size: 13px; line-height: 1.6;
  color: var(--mute); margin: 0;
}
.booking-consent {
  font-family: var(--sans); font-size: 13px; line-height: 1.6;
  color: var(--ink-soft); margin: 0;
  padding-left: 14px; border-left: 1px solid var(--gold);
}
.booking-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.booking-actions .btn { flex: 0 1 auto; }
@media (max-width: 480px) {
  .booking-actions { flex-direction: column; align-items: stretch; }
  .booking-actions .btn { justify-content: center; }
}

/* ---------- the screens after submitting ---------- */
.booking-panel-title { font-size: clamp(34px, 6vw, 54px); margin-top: 14px; }
.booking-panel-copy { color: var(--ink-soft); margin: 0 0 20px; }
.booking-panel-copy a { font-weight: 600; white-space: nowrap; }
.booking-panel .booking-actions { margin-top: 10px; }
.booking-panel .booking-fineprint { margin-top: 20px; }

/* The failure screen is the one place the wine is used as an edge rather
   than a fill — it has to read as "something is wrong" without turning the
   page into an error banner. */
.booking-panel-failed { border-left: 2px solid var(--wine); padding-left: clamp(18px, 4vw, 28px); }

/* While the request is in flight. The button keeps its width so the layout
   does not jump between "Book now" and "Sending…". */
.booking-form button[aria-busy="true"] { opacity: 0.6; cursor: progress; }
.booking-form button:disabled { cursor: not-allowed; }

/* ---------- footer ---------- */
.booking-footer { padding-top: clamp(56px, 8vw, 90px); }
.booking-footer-grid {
  display: grid; gap: 40px; grid-template-columns: repeat(3, 1fr);
  padding-bottom: 30px; border-bottom: 1px solid rgba(245,237,228,0.16);
}
@media (max-width: 760px) { .booking-footer-grid { grid-template-columns: 1fr; gap: 30px; } }
.booking-footer a { color: var(--tan); }
.booking-footer-phone { font-size: 20px; letter-spacing: 0.04em; }

/* Netlify's honeypot. Not [hidden] — a bot reading the DOM would skip it and
   the trap would never spring. It has to be visually gone but really there. */
.booking-hp {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ---------- the written half of /booknow ----------
   Added when the page stopped being a bare form and became something worth
   indexing. It reuses .article from site.css for the type scale, so only the
   things that differ from a service page live here. */
.booking-notes {
  margin: clamp(56px, 8vw, 90px) auto 0;
  padding-top: clamp(36px, 5vw, 54px);
  border-top: 1px solid var(--line);
}
.booking-notes h3 {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--mute);
  margin: 32px 0 4px; font-weight: 400;
}
.booking-notes .duration-list { margin-bottom: 0; }
.booking-address { font-family: var(--sans); font-size: 15px; line-height: 1.7; }

/* Deliberately loud. This marks copy the owner has not written yet, and it
   should be impossible to mistake for finished text if it is ever seen in a
   browser. tools/release-gate.mjs stops it reaching production at all. */
.booking-placeholder {
  border: 2px dashed var(--wine);
  padding: 14px 16px;
  background: rgba(124, 58, 77, 0.06);
  font-family: var(--sans); font-size: 14px; line-height: 1.6;
}
