@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("./fonts/inter-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("./fonts/oswald-latin.woff2") format("woff2");
}

:root {
  color-scheme: light;
  font-family: "Inter", Arial, sans-serif;
  color: #0a0a0a;
  background: #f5f5f5;
  font-synthesis: none;
  --black: #0a0a0a;
  --white: #ffffff;
  --paper: #fafafa;
  --soft: #f1f1ef;
  --muted: #666666;
  --gold: #b8956b;
  --gold-dark: #8a6d4b;
  --line: #0a0a0a;
}

* { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background: var(--paper);
}
html, body { margin: 0; min-height: 100%; overflow-x: hidden; }
body {
  min-height: 100dvh;
  background: var(--paper);
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
button, textarea, input { font: inherit; }
button {
  cursor: pointer;
  touch-action: manipulation;
}
button:disabled { cursor: default; }

::selection {
  background: var(--gold);
  color: var(--black);
}

:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 2px;
}

.app {
  position: relative;
  width: min(980px, 100%);
  height: 100dvh;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  overflow: hidden;
  background: var(--white);
  border-inline: 1px solid var(--line);
}

.app::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  height: 5px;
  background: var(--black);
  pointer-events: none;
}

/* ============ En-tête ============ */

.topbar {
  position: relative;
  z-index: 10;
  min-height: 92px;
  padding: max(20px, env(safe-area-inset-top)) 25px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}

.topbar.scrolled { box-shadow: 0 7px 0 rgba(10, 10, 10, .05); }

.identity {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.identity-copy { min-width: 0; }

.mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--white);
  border-bottom: 3px solid var(--gold);
}

.mark span {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
}

.product {
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.byline {
  margin-left: 7px;
  color: var(--muted);
  font-family: "Inter", Arial, sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .14em;
  vertical-align: middle;
}

.property {
  margin-top: 7px;
  overflow: hidden;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .17em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.availability {
  min-height: 34px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.availability-dot {
  position: relative;
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: var(--gold);
}

.availability-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid var(--gold);
  animation: dot-ping 2.2s cubic-bezier(0, 0, .2, 1) infinite;
}

@keyframes dot-ping {
  0% { opacity: .8; transform: scale(.55); }
  70%, 100% { opacity: 0; transform: scale(1.35); }
}

.availability.offline {
  background: var(--black);
  color: var(--white);
}

.availability.offline .availability-dot { background: #d8d8d8; }
.availability.offline .availability-dot::after { animation: none; border-color: transparent; }

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.language-switch {
  height: 34px;
  display: flex;
  border: 1px solid var(--line);
}

.language-switch button {
  min-width: 38px;
  border: 0;
  border-right: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 10px;
  letter-spacing: .08em;
  transition: background .15s ease, color .15s ease;
}

.language-switch button:last-child { border-right: 0; }
.language-switch button:not([aria-pressed="true"]):hover { background: var(--soft); }
.language-switch button[aria-pressed="true"] { background: var(--black); color: var(--white); }
.language-switch button:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: -2px;
}

/* ============ Conversation ============ */

.conversation-wrap {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.conversation {
  position: relative;
  flex: 1;
  min-height: 0;
  padding: 34px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #b7b7b7 transparent;
}

.conversation::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent calc(100% - 1px), #e5e5e5 calc(100% - 1px)) 0 0 / 25% 100%,
    linear-gradient(180deg, var(--paper), var(--white) 160px);
  opacity: .55;
}

.scroll-bottom {
  position: absolute;
  right: 20px;
  bottom: 16px;
  z-index: 8;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
  box-shadow: 4px 4px 0 rgba(10, 10, 10, .16);
  animation: message-in .18s ease-out both;
  transition: background .15s ease, color .15s ease, transform .1s ease;
}

.scroll-bottom:hover,
.scroll-bottom:focus-visible {
  outline: none;
  background: var(--black);
  color: var(--white);
}

.scroll-bottom:active { transform: translateY(1px); }

.scroll-bottom svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 2;
}

.loading {
  margin: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.loading-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--white);
  border-bottom: 2px solid var(--gold);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 18px;
  animation: breathe 1.6s ease-in-out infinite;
}

@keyframes breathe { 50% { opacity: .55; } }

.message {
  position: relative;
  max-width: min(78%, 640px);
  padding: 15px 17px 13px;
  border: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.62;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  animation: message-in .22s ease-out both;
}

@keyframes message-in {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.message-time {
  display: block;
  margin-top: 7px;
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: .1em;
  opacity: .5;
  text-align: right;
  text-transform: uppercase;
}

.message.assistant {
  align-self: flex-start;
  background: var(--soft);
  color: var(--black);
}

.message.assistant.welcome {
  max-width: min(88%, 720px);
  padding: 24px 25px 22px;
  border-left: 7px solid var(--gold);
  background: var(--white);
  box-shadow: 10px 10px 0 rgba(184, 149, 107, .13);
  font-size: 15px;
  line-height: 1.65;
}

.message.assistant.welcome::before {
  content: "VOTRE CONCIERGE PRIVÉ";
  display: block;
  margin-bottom: 13px;
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .19em;
}

.message.user {
  align-self: flex-end;
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.message.user .message-time { opacity: .55; }

.message.pending {
  min-width: 58px;
  color: transparent;
}

.message.pending::after {
  content: "•••";
  position: absolute;
  inset: 11px 15px;
  color: var(--black);
  letter-spacing: .14em;
  animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse { 50% { opacity: .3; } }

/* ============ Suggestions ============ */

.quick {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 0 25px 18px;
  background: var(--white);
  scrollbar-width: none;
}

.quick::-webkit-scrollbar { display: none; }

.quick button {
  position: relative;
  min-height: 44px;
  flex: 0 0 auto;
  margin-right: -1px;
  padding: 11px 15px 11px 38px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .055em;
  text-transform: uppercase;
  transition: background .15s ease, color .15s ease, transform .1s ease;
  animation: quick-in .28s ease-out both;
}

.quick button:nth-child(2) { animation-delay: .05s; }
.quick button:nth-child(3) { animation-delay: .1s; }
.quick button:nth-child(4) { animation-delay: .15s; }

@keyframes quick-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.quick button::before {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 15px;
  color: var(--gold-dark);
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  text-align: center;
  transform: translateY(-52%);
}

.quick button[data-icon="calendar"]::before { content: "◷"; }
.quick button[data-icon="home"]::before { content: "⌂"; }
.quick button[data-icon="paw"]::before { content: "◇"; }
.quick button[data-icon="arrival"]::before { content: "→"; }
.quick button[data-icon="guide"]::before { content: "§"; }
.quick button[data-icon="spa"]::before { content: "≈"; }
.quick button[data-icon="help"]::before { content: "?"; }

.quick button:hover,
.quick button:focus-visible {
  z-index: 1;
  outline: none;
  background: var(--black);
  color: var(--white);
}

.quick button:active { transform: translateY(1px); }

.quick button:hover::before,
.quick button:focus-visible::before { color: var(--gold); }

/* ============ Réservation ============ */

.booking-panel {
  position: absolute;
  inset: 0;
  z-index: 40;
  display: grid;
  align-items: end;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, .58);
  backdrop-filter: blur(3px);
}

.booking-card {
  position: relative;
  width: min(720px, calc(100% - 40px));
  max-height: calc(100dvh - 48px);
  margin: 0 auto 24px;
  padding: 27px;
  overflow-y: auto;
  border: 1px solid var(--black);
  border-top: 7px solid var(--gold);
  background: var(--white);
  box-shadow: 12px 12px 0 rgba(10, 10, 10, .24);
  animation: booking-in .2s ease-out both;
}

@keyframes booking-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.booking-heading {
  margin-bottom: 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.eyebrow {
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
}

.booking-heading h2 {
  margin: 7px 0 0;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 28px;
  line-height: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.booking-close {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
  font-size: 24px;
  line-height: 1;
  transition: background .15s ease, color .15s ease;
}

.booking-close:hover,
.booking-close:focus-visible {
  outline: none;
  background: var(--black);
  color: var(--white);
}

.booking-dates,
.booking-guests {
  display: grid;
  gap: 12px;
}

.booking-dates { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.booking-guests {
  margin-top: 12px;
  grid-template-columns: 120px 120px minmax(0, 1fr);
  align-items: end;
}

.booking-card label > span:not(.sr-only) {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.booking-card input[type="date"],
.booking-card input[type="number"] {
  width: 100%;
  height: 48px;
  padding: 0 13px;
  border: 1px solid var(--black);
  border-radius: 0;
  outline: none;
  background: var(--white);
  color: var(--black);
  font-size: 14px;
  transition: box-shadow .15s ease;
}

.booking-card input:focus { box-shadow: 4px 4px 0 var(--gold); }

.dog-choice {
  height: 48px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--black);
  transition: box-shadow .15s ease;
}

.dog-choice:focus-within { box-shadow: 4px 4px 0 var(--gold); }
.dog-choice input { width: 18px; height: 18px; accent-color: var(--black); }
.dog-choice > span:not(.sr-only) { margin: 0; color: var(--black); }

.booking-summary {
  margin: 14px 0 0;
  padding: 10px 13px;
  border-left: 3px solid var(--gold);
  background: var(--soft);
  color: var(--black);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: message-in .18s ease-out both;
}

.booking-error {
  margin: 12px 0 0;
  color: #8f1f18;
  font-size: 12px;
}

.booking-submit {
  width: 100%;
  min-height: 48px;
  margin-top: 16px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .15s ease, transform .1s ease;
}

.booking-submit:hover,
.booking-submit:focus-visible {
  outline: none;
  background: var(--gold-dark);
}

.booking-submit:active { transform: translateY(1px); }

.booking-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

/* ============ Composer ============ */

.composer-area {
  position: relative;
  z-index: 5;
  padding: 14px 25px max(15px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: var(--white);
}

.composer-count {
  position: absolute;
  top: 1px;
  right: 27px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .08em;
}

.composer-count.limit { color: #8f1f18; font-weight: 700; }

.composer {
  min-height: 56px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 5px 5px 5px 17px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: box-shadow .15s ease;
}

.composer:focus-within { box-shadow: 5px 5px 0 var(--gold); }

.composer textarea {
  min-height: 44px;
  max-height: 132px;
  flex: 1;
  padding: 11px 0 9px;
  resize: none;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--black);
  font-size: 14px;
  line-height: 1.45;
}

.composer textarea::placeholder { color: #858585; }
.composer textarea:disabled { opacity: .6; }

.composer button {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border: 0;
  background: var(--black);
  color: var(--white);
  transition: background .15s ease, opacity .15s ease, transform .1s ease;
}

.composer button:hover:not(:disabled),
.composer button:focus-visible {
  outline: none;
  background: var(--gold-dark);
}

.composer button:active:not(:disabled) { transform: scale(.93); }
.composer button:disabled { opacity: .35; }

.composer button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.8;
}

.privacy {
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #777777;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.privacy svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: var(--gold-dark);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.7;
}

/* ============ Erreur fatale ============ */

.fatal {
  grid-row: 2 / span 3;
  max-width: 470px;
  margin: auto;
  padding: 42px 30px;
  text-align: center;
}

.fatal-mark {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--white);
  border-bottom: 3px solid var(--gold);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 24px;
}

.fatal strong {
  display: block;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: .015em;
  text-transform: uppercase;
}

.fatal p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[hidden] { display: none !important; }

/* ============ Tablette (521–980 px) ============ */

@media (min-width: 521px) and (max-width: 980px) {
  .conversation { padding: 30px 48px 26px; }
  .message { max-width: 72%; }
  .quick { padding: 0 48px 18px; }
  .composer-area { padding: 16px 48px 18px; }
  .composer-count { right: 50px; }
  .booking-panel { align-items: center; }
  .booking-card { margin: 0 auto; }
  .scroll-bottom { right: 52px; }
}

@media (min-width: 981px) {
  body { background: linear-gradient(90deg, #ededeb 0 50%, #f7f7f6 50% 100%); }
  .app { box-shadow: 18px 0 0 rgba(184, 149, 107, .18); }
  .booking-panel { align-items: center; }
  .booking-card { margin: 0 auto; }
}

/* ============ Mobile (≤ 520 px) ============ */

@media (max-width: 520px) {
  .app { border-inline: 0; }
  .topbar {
    min-height: 72px;
    padding: max(13px, env(safe-area-inset-top)) 12px 12px;
  }
  .identity { gap: 9px; }
  .mark { width: 38px; height: 38px; flex-basis: 38px; border-bottom-width: 2px; }
  .mark span { font-size: 21px; }
  .product { font-size: 18px; }
  .byline { display: none; }
  .property { max-width: 155px; margin-top: 5px; font-size: 7.5px; letter-spacing: .11em; }
  .topbar-actions { gap: 6px; }
  .language-switch { height: 32px; }
  .language-switch button { min-width: 34px; font-size: 9px; }
  .availability { min-height: 32px; padding: 8px; font-size: 7.5px; letter-spacing: .08em; }
  .availability-dot { width: 6px; height: 6px; flex-basis: 6px; }
  .conversation { padding: 18px 12px 14px; gap: 12px; }
  .conversation > :first-child { margin-top: auto; }
  .conversation::after { background: linear-gradient(180deg, var(--paper), var(--white) 130px); }
  .scroll-bottom { right: 12px; bottom: 12px; width: 38px; height: 38px; }
  .message { max-width: 92%; padding: 11px 12px 10px; font-size: 13px; line-height: 1.48; }
  .message-time { margin-top: 5px; font-size: 7.5px; }
  .message.assistant.welcome {
    max-width: 100%;
    padding: 15px 14px 14px;
    border-left-width: 4px;
    box-shadow: 6px 6px 0 rgba(184, 149, 107, .13);
    font-size: 13px;
    line-height: 1.52;
  }
  .message.assistant.welcome::before { margin-bottom: 8px; font-size: 7.5px; }
  .quick {
    padding: 0 10px 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    overflow: visible;
  }
  .quick button {
    width: 100%;
    min-height: 44px;
    margin: 0;
    padding: 9px 9px 9px 31px;
    white-space: normal;
    font-size: 9.5px;
    line-height: 1.2;
  }
  .quick button:nth-child(3):last-child { grid-column: 1 / -1; }
  .quick button::before { left: 10px; }
  .booking-card {
    width: calc(100% - 20px);
    margin-bottom: max(10px, env(safe-area-inset-bottom));
    padding: 8px 17px 18px;
    box-shadow: 6px 6px 0 rgba(10, 10, 10, .24);
  }
  .booking-card::before {
    content: "";
    display: block;
    width: 44px;
    height: 4px;
    margin: 6px auto 14px;
    background: var(--black);
    opacity: .85;
  }
  .booking-heading { margin-bottom: 17px; }
  .booking-heading h2 { font-size: 24px; }
  .booking-dates { grid-template-columns: 1fr; }
  .booking-guests { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .booking-card input[type="date"],
  .booking-card input[type="number"] { height: 50px; font-size: 16px; }
  .dog-choice { grid-column: 1 / -1; height: 50px; }
  .booking-summary { font-size: 9px; }
  .composer-area { padding: 9px 8px max(9px, env(safe-area-inset-bottom)); }
  .composer-count { top: -1px; right: 10px; }
  .composer { min-height: 52px; padding-left: 13px; }
  .composer textarea { font-size: 16px; }
  .composer button { width: 44px; height: 44px; flex-basis: 44px; }
  .privacy { padding-top: 8px; font-size: 7px; }
}

@media (max-width: 370px) {
  .availability span:last-child { display: none; }
  .availability { width: 32px; justify-content: center; }
  .property { max-width: 125px; }
}

/* ============ Paysage / faible hauteur ============ */

@media (max-height: 520px) {
  .topbar { min-height: 58px; padding-top: 8px; padding-bottom: 8px; }
  .mark { width: 36px; height: 36px; flex-basis: 36px; }
  .mark span { font-size: 20px; }
  .product { font-size: 17px; }
  .property { margin-top: 4px; }
  .privacy { display: none; }
  .composer-area { padding-top: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ── v8b : offre de réservation directe dans la conversation ── */
.message.assistant.booking-offer {
  background: var(--white);
}

.booking-cta {
  display: block;
  padding: 13px 16px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 13px;
  letter-spacing: .08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .15s ease, transform .1s ease;
}

.booking-cta:hover,
.booking-cta:focus-visible {
  outline: none;
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.booking-cta:active { transform: translateY(1px); }

.booking-cta-note {
  display: block;
  margin-top: 8px;
  font-size: 11.5px;
  color: var(--muted);
  text-align: center;
}

.quick button[data-icon="key"]::before { content: "\2197"; }
