:root {
  color-scheme: light;
  --navy: #18253d;
  --gold: #bc9844;
  --muted: #576277;
  --line: #e4e7ec;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--navy);
  background: #fff;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}
* { box-sizing: border-box; }
body { margin: 0; min-width: 280px; border-top: 5px solid var(--navy); }
.page { width: min(1080px, calc(100% - 96px)); margin: 0 auto; padding: clamp(64px, 11vh, 110px) 0 64px; }
.brand { padding-bottom: clamp(64px, 10vh, 96px); }
.brand img { display: block; width: 100%; height: auto; }
.booking { display: grid; grid-template-columns: minmax(0, 1fr) 252px; align-items: center; gap: 50px; }
.eyebrow { margin: 0 0 18px; color: var(--muted); font-size: .875rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; line-height: 1.6; }
h1 { font-size: clamp(2.3rem, 4.2vw, 3.5rem); line-height: 1.12; font-weight: 600; letter-spacing: -.045em; margin: 0; }
.intro { margin: 20px 0 30px; font-size: 1.0625rem; line-height: 1.6; color: var(--muted); }
.booking-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 54px; padding: 15px 23px; border: 1px solid var(--navy); border-radius: 5px; text-decoration: none; font-size: .9375rem; font-weight: 600; line-height: 1.4; text-align: center; transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease; }
.button-primary { background: var(--navy); color: #fff; }
.button-primary:hover { background: #293c5c; border-color: #293c5c; }
.button-secondary { background: #fff; color: var(--navy); border-color: #c9cfd8; }
.button-secondary:hover { background: #f5f6f8; border-color: var(--navy); }
.button:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.button svg { flex: 0 0 auto; }
.phone-booking { border-left: 1px solid var(--line); padding-left: 42px; text-align: center; }
.qr { display: block; width: 148px; height: 148px; margin: 0 auto 15px; }
.phone-copy h2 { margin: 0 0 7px; font-size: 1rem; line-height: 1.4; font-weight: 600; }
.phone-copy p { margin: 0; color: var(--muted); font-size: .875rem; line-height: 1.6; }
.closing-rule { margin-top: clamp(64px, 10vh, 96px); height: 1px; background: var(--line); position: relative; }
.closing-rule::before { content: ""; position: absolute; width: 64px; height: 3px; background: var(--gold); top: -1px; left: 0; }
.site-footer { padding-top: 22px; text-align: center; font-size: .875rem; line-height: 1.6; }
.site-footer a { display: inline-block; padding: 8px; color: var(--muted); text-decoration: none; }
.site-footer span { color: var(--navy); font-weight: 600; }
.site-footer a:hover { text-decoration: underline; text-underline-offset: 3px; }
.site-footer a:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 3px; }
@media (max-width: 850px) {
  .page { width: calc(100% - 64px); }
  .booking { grid-template-columns: minmax(0, 1fr) 205px; gap: 28px; }
  .phone-booking { padding-left: 24px; }
  .button { padding-inline: 18px; }
}
@media (max-width: 680px) {
  .page { width: calc(100% - 40px); padding-top: 46px; padding-bottom: 40px; }
  .brand { padding-bottom: 54px; }
  .booking { display: block; }
  .eyebrow { font-size: .8125rem; letter-spacing: .13em; margin-bottom: 15px; }
  h1 { font-size: clamp(2.1rem, 8vw, 3rem); }
  .intro { margin: 18px 0 27px; max-width: 310px; font-size: 1rem; }
  .booking-actions { flex-direction: column; gap: 12px; }
  .button { min-height: 56px; font-size: 1rem; }
  .phone-booking { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 38px; padding: 27px 0 0; border-left: 0; border-top: 1px solid var(--line); text-align: left; }
  .qr { width: 112px; height: 112px; margin: 0; flex-shrink: 0; }
  .phone-copy { max-width: 190px; }
  .closing-rule { margin-top: 32px; }
}
@media (max-width: 340px) {
  .phone-booking { gap: 8px; }
  .qr { width: 96px; height: 96px; }
  .phone-copy h2 { font-size: .9375rem; }
}
@media (prefers-reduced-motion: reduce) { .button { transition: none; } }
