* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  color: var(--ink);
}
a { color: inherit; }
img { display: block; max-width: 100%; }

/* Shared customer-facing controls. */
.brand { min-width: 0; }
.brand img { flex-shrink: 0; }
.brand span { min-width: 0; }
.button { max-width: 100%; overflow-wrap: anywhere; }
.mobile-action-bar a { min-height: 44px; font-size: .875rem; }
@media (max-width: 420px) {
  .nav { flex-wrap: wrap; padding-block: 10px; }
  .nav-links { margin-left: auto; }
}

/* Shared schedule and accessible inquiry controls. */
[hidden] { display: none !important; }
.schedule-section { padding: 32px 0; }
.schedule-panel { padding: clamp(18px, 4vw, 32px); border-radius: 24px; background: #35070b; color: #fff8ec; }
.schedule-panel h2 { margin: 0 0 12px; color: #fff; font-size: clamp(1.5rem, 4vw, 2rem); }
.schedule-summary { margin: 0 0 18px; color: #ffe29a; font-weight: 750; }
.schedule-list { display: grid; gap: 8px; }
.schedule-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr) auto; align-items: center; gap: 16px; padding: 14px; border: 1px solid #77474a; border-radius: 12px; }
.schedule-row.is-next { background: #572328; border-color: #e0b558; }
.schedule-row time { font-size: 1rem; }
.schedule-row strong, .schedule-row span { display: block; }
.schedule-row span { font-size: 1rem; }
.schedule-map { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 8px 16px; border-radius: 10px; background: #f5d78f; color: #35070b; font-weight: 750; }
.schedule-note { margin: 16px 0 0; font-size: .875rem; }
.schedule-note a { color: #ffe29a; text-underline-offset: 3px; }
.inquiry-panel { max-width: 820px; margin-inline: auto; padding: clamp(20px, 4vw, 36px); border: 1px solid #dbcbbf; border-radius: 24px; background: #fffdf9; }
.inquiry-panel h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
.inquiry-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; margin-block: 24px; }
.inquiry-wide { grid-column: 1 / -1; }
.inquiry-panel label { display: grid; gap: 6px; color: #541015; font-weight: 700; }
.inquiry-panel input, .inquiry-panel textarea { width: 100%; min-width: 0; padding: 12px; border: 1px solid #a79a90; border-radius: 10px; font: inherit; font-size: 1rem; color: #211914; background: #fff; }
.inquiry-panel textarea { resize: vertical; }
.inquiry-panel input { min-height: 48px; }
.inquiry-panel button { font: inherit; font-weight: 750; cursor: pointer; }
.inquiry-panel input:focus-visible, .inquiry-panel textarea:focus-visible, .inquiry-panel button:focus-visible { outline: 3px solid #8d141b; outline-offset: 3px; }
#inquiry-result { margin-top: 24px; padding-top: 18px; border-top: 1px solid #dbcbbf; }
#inquiry-result .booking-actions { margin-top: 16px; }
@media (max-width: 600px) {
  .schedule-row { grid-template-columns: minmax(0,1fr) auto; gap: 8px 12px; }
  .schedule-row time { grid-column: 1 / -1; }
  .inquiry-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
