/* Small accessibility and interaction layer. Visual design is inherited from the reference. */
html { scroll-behavior: smooth; scroll-padding-top: 155px; }
section[id] { scroll-margin-top: 12px; }
button, a, select { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
:focus-visible { outline: 2px solid #a56b7b; outline-offset: 5px; }
[hidden] { display: none !important; }
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 100; padding: 12px 20px; background: white; border: 1px solid #ddd; border-radius: 12px; }
.skip-link:focus { top: 12px; }
#mobile-navigation { padding: 12px 24px 22px; border-top: 1px solid var(--border); background: white; }
#mobile-navigation a { display: block; padding: 12px 0; font-size: 14px; }
.dialog-open { overflow: hidden; }
#booking-dialog { margin: auto; padding: 0; width: min(512px, calc(100% - 32px)); max-height: 90dvh; overflow: auto; border: 1px solid var(--border); border-radius: 20px; background: white; color: var(--foreground); box-shadow: 0 24px 80px #0003; }
#booking-dialog::backdrop { background: #0007; backdrop-filter: blur(3px); }
.booking-content { padding: 32px; position: relative; }
.close-dialog { position: absolute; top: 12px; right: 14px; width: 36px; height: 36px; border-radius: 50%; font-size: 28px; line-height: 1; color: #6c6468; }
.close-dialog:hover { background: var(--secondary); }
.booking-eyebrow { display: inline-block; border-radius: 100px; padding: 4px 12px; background: var(--secondary); font-size: 12px; margin-bottom: 12px; }
#booking-title { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 500; line-height: 1.15; margin: 0 20px 12px 0; }
.booking-content p { font-size: 14px; line-height: 1.65; color: var(--muted-foreground); }
.booking-content label { display: block; font-size: 14px; font-weight: 500; margin: 22px 0 8px; }
.booking-content select { width: 100%; border: 1px solid var(--border); border-radius: 12px; padding: 12px; background: white; font: inherit; font-size: 14px; margin-bottom: 22px; }
.booking-primary, .booking-secondary { display: block; text-align: center; border-radius: 100px; padding: 13px 16px; font-size: 14px; font-weight: 500; margin-bottom: 10px; }
.booking-primary { color: white; background: var(--primary); }
.booking-secondary { border: 1px solid var(--border); }
.booking-primary:hover { opacity: .86; }
.booking-secondary:hover { background: var(--secondary); }
.booking-content .booking-note { margin-top: 18px; text-align: center; font-size: 12px; }
/* Keep the complete wordmark and comfortable navigation at intermediate widths. */
header img { object-fit: contain; flex-shrink: 0; }
@media (min-width: 1280px) {
  header nav:not(#mobile-navigation) { gap: 18px; }
  header nav:not(#mobile-navigation) button { white-space: nowrap; }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  header nav:not(#mobile-navigation) { display: none; }
  #menu-toggle { display: inline-flex; }
}
@media (max-width: 767px) {
  html { scroll-padding-top: 105px; }
  .booking-content { padding: 28px 22px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
