/* ============================================================
   尊龙娱乐 · 档案室共用样式  /assets/site.css
   墨黑底 + 鎏金线 + 编号前缀 + 横向长表
   ============================================================ */

/* ---------- 1. Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd, ul, ol { margin: 0; }

ul, ol { padding: 0; list-style: none; }

img, svg, video { display: block; max-width: 100%; }

button { font: inherit; color: inherit; background: none; border: 0; }
input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
table { border-collapse: collapse; }
th { text-align: left; }

/* ---------- 2. Tokens ---------- */
:root {
  --ink: #0B0D0F;
  --coal: #15191C;
  --coal-deep: #101417;
  --gold: #C9A227;
  --gold-hi: #EBD07A;
  --gold-dim: #6E5A22;
  --cinnabar: #C9504F;
  --cinnabar-deep: #B23A3A;
  --jade: #4FA98C;
  --jade-deep: #2F6F5E;
  --indigo: #3B2F63;
  --indigo-soft: #B9AEE6;
  --silver: #9AA3A8;
  --cloud: #F2F0EA;

  --font-title: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", "Times New Roman", serif;
  --font-body: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", "SFMono-Regular", Consolas, "Courier New", monospace;

  --shell: 1440px;
  --gutter: 24px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --hair: 1px solid rgba(110, 90, 34, .45);
}

/* ---------- 3. Base ---------- */
body {
  min-height: 100vh;
  background-color: var(--ink);
  background-image:
    radial-gradient(1100px 520px at 84% -12%, rgba(201, 162, 39, .10), transparent 70%),
    radial-gradient(780px 460px at 4% 6%, rgba(59, 47, 99, .30), transparent 72%);
  background-repeat: no-repeat;
  color: var(--cloud);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.28;
  color: var(--cloud);
  font-style: normal;
}

p { font-size: 16px; color: var(--cloud); }

strong { color: var(--gold-hi); font-weight: 700; }

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

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

[id] { scroll-margin-top: 132px; }

/* ---------- 4. Skip link ---------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -72px;
  z-index: 200;
  padding: 10px 20px;
  background: var(--gold);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, .6);
  transition: top 180ms var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- 5. Header ---------- */
.zl-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(11, 13, 15, .97);
  box-shadow: 0 18px 40px -30px rgba(0, 0, 0, .95);
}

.zl-header__inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 12px var(--gutter) 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px 20px;
}

.zl-header__brand {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

.zl-header__tools {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.zl-nav {
  grid-column: 1 / -1;
  grid-row: 2;
  min-width: 0;
}

/* brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: opacity 160ms var(--ease);
}
.brand:hover { opacity: .92; }

.brand__mark {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  font-family: var(--font-title);
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
  background: linear-gradient(140deg, var(--gold-hi) 0%, var(--gold) 55%, var(--gold-dim) 100%);
  border: 2px solid var(--gold-hi);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, .6);
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.brand__name {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--cloud);
  letter-spacing: .02em;
}

.brand__line {
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: .22em;
  color: var(--gold);
}

.zl-header__sub {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .04em;
  color: rgba(154, 163, 168, .82);
}

/* seat lookup */
.seat-lookup {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  background: var(--coal);
  border: 1px solid var(--gold-dim);
  box-shadow: inset 0 0 0 1px rgba(11, 13, 15, .9);
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}
.seat-lookup:hover,
.seat-lookup:focus-within {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(11, 13, 15, .9), 0 0 0 3px rgba(201, 162, 39, .16);
}

.seat-lookup__label {
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--silver);
  white-space: nowrap;
}

.seat-lookup__prefix {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold);
}

.seat-lookup__input {
  width: 9ch;
  min-width: 0;
  padding: 2px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px dashed var(--gold-dim);
  border-radius: 0;
  color: var(--gold-hi);
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: .06em;
  outline: none;
  transition: border-color 160ms var(--ease), color 160ms var(--ease);
}
.seat-lookup__input::placeholder {
  color: rgba(154, 163, 168, .72);
  letter-spacing: 0;
  font-size: 12.5px;
}
.seat-lookup__input:focus { border-bottom-color: var(--gold-hi); }
.seat-lookup__input[data-miss] {
  border-bottom-color: var(--cinnabar);
  color: var(--cinnabar);
}

.seat-lookup__status {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--jade);
  white-space: nowrap;
}
.seat-lookup__status:empty { display: none; }

/* nav toggle */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-size: 13px;
  letter-spacing: .14em;
  cursor: pointer;
  transition: border-color 160ms var(--ease), color 160ms var(--ease), background-color 140ms var(--ease);
}
.nav-toggle:hover {
  border-color: var(--gold-hi);
  color: var(--gold-hi);
  background: rgba(201, 162, 39, .08);
}

.nav-toggle__bars {
  position: relative;
  display: block;
  width: 18px;
  height: 12px;
}
.nav-toggle__bars i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 180ms var(--ease), opacity 140ms var(--ease);
}
.nav-toggle__bars i:nth-child(1) { top: 0; }
.nav-toggle__bars i:nth-child(2) { top: 5px; }
.nav-toggle__bars i:nth-child(3) { top: 10px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars i:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* nav */
.zl-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px;
}

.zl-nav__item { min-width: 0; }

.zl-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  color: var(--silver);
  font-size: 15px;
  letter-spacing: .03em;
  transition: color 160ms var(--ease), background-color 140ms var(--ease);
}

.zl-nav__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold-dim);
  transition: color 160ms var(--ease);
}

.zl-nav__link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 180ms var(--ease), background-color 140ms var(--ease);
}

.zl-nav__link:hover { color: var(--gold-hi); }
.zl-nav__link:hover .zl-nav__num { color: var(--gold-hi); }
.zl-nav__link:hover::after { transform: scaleX(1); }

.zl-nav__link[aria-current="page"] {
  color: var(--cloud);
  background: rgba(201, 162, 39, .10);
}
.zl-nav__link[aria-current="page"] .zl-nav__num { color: var(--cinnabar); }
.zl-nav__link[aria-current="page"]::after {
  transform: scaleX(1);
  background: var(--cinnabar);
}

/* rail */
.zl-header__rail {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold-dim);
  overflow: hidden;
  transition: height 180ms var(--ease);
}
.zl-header[data-scrolled] .zl-header__rail { height: 1px; }

.zl-header__rail-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold) 45%, var(--gold-hi));
  transform: scaleX(0);
  transform-origin: 0 50%;
}

/* ---------- 6. Footer ---------- */
.zl-footer {
  margin-top: 96px;
  background:
    linear-gradient(180deg, var(--coal-deep) 0%, var(--coal) 46%, var(--coal-deep) 100%);
  border-top: 2px solid var(--gold-dim);
  color: var(--silver);
  font-size: 14px;
}

.zl-footer__inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 56px var(--gutter) 26px;
}

.zl-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
  gap: 40px 32px;
}

.zl-footer__brand { min-width: 0; }

.zl-footer__name {
  font-family: var(--font-title);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--cloud);
}

.zl-footer__tag {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--gold);
}

.zl-footer__contact {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 2;
  color: var(--silver);
  word-break: break-word;
}
.zl-footer__contact span { display: block; }

.zl-footer__col { min-width: 0; }

.zl-footer__title {
  margin-bottom: 14px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--gold-dim);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--gold);
}

.zl-footer__list li + li { margin-top: 9px; }

.zl-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--silver);
  transition: color 160ms var(--ease);
}
.zl-footer__link::before {
  content: "";
  flex: none;
  width: 10px;
  height: 1px;
  background: var(--gold-dim);
  transition: width 160ms var(--ease), background-color 160ms var(--ease);
}
.zl-footer__link:hover { color: var(--gold-hi); }
.zl-footer__link:hover::before { width: 20px; background: var(--gold-hi); }

.zl-footer__bottom {
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid rgba(110, 90, 34, .5);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px 32px;
}

.zl-footer__note {
  max-width: 64ch;
  font-size: 12.5px;
  line-height: 1.9;
  color: rgba(154, 163, 168, .92);
}

.zl-footer__legal {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .05em;
  color: rgba(201, 162, 39, .88);
  white-space: nowrap;
}

.zl-footer__dot {
  display: inline-block;
  margin: 0 8px;
  color: var(--gold-dim);
}

/* ---------- 7. Layout utilities ---------- */
.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.shell--narrow { max-width: 720px; }

.section { padding: 72px 0; }
.section + .section { border-top: var(--hair); }
.section--tight { padding: 44px 0; }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--split { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
.grid--wide { grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); }

/* ---------- 8. Headings & headers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .24em;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px 32px;
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--gold-dim);
}

.section-head__title { font-size: clamp(24px, 3vw, 34px); }

.section-head__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--silver);
}

/* ---------- 9. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--gold);
  border: 2px solid var(--gold);
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, .58);
  transition: background-color 140ms var(--ease), border-color 140ms var(--ease),
              color 140ms var(--ease), box-shadow 160ms var(--ease), transform 160ms var(--ease);
}
.btn:hover {
  background: var(--gold-hi);
  border-color: var(--gold-hi);
  transform: translate(-1px, -1px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, .62);
}
.btn:active {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, .5);
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
}
.btn--ghost:hover {
  background: rgba(201, 162, 39, .12);
  color: var(--gold-hi);
  border-color: var(--gold-hi);
}

.btn--cinnabar {
  background: var(--cinnabar);
  border-color: var(--cinnabar);
  color: var(--cloud);
}
.btn--cinnabar:hover {
  background: var(--cinnabar-deep);
  border-color: var(--cinnabar-deep);
  color: var(--cloud);
}

/* ---------- 10. Breadcrumbs ---------- */
.crumbs {
  padding: 18px 0;
  border-bottom: var(--hair);
}

.crumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .05em;
  color: var(--silver);
}

.crumbs__item + .crumbs__item::before {
  content: "/";
  margin-right: 10px;
  color: var(--gold-dim);
}

.crumbs__link { color: var(--silver); transition: color 160ms var(--ease); }
.crumbs__link:hover { color: var(--gold-hi); }

.crumbs__item[aria-current="page"] { color: var(--gold); }

/* ---------- 11. Prose ---------- */
.prose {
  max-width: 720px;
  color: var(--cloud);
}
.prose > * + * { margin-top: 1.15em; }
.prose h2 { margin-top: 1.9em; font-size: 26px; }
.prose h3 { margin-top: 1.5em; font-size: 20px; }
.prose p { font-size: 16.5px; }
.prose a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-dim);
  transition: color 160ms var(--ease), border-color 160ms var(--ease);
}
.prose a:hover { color: var(--gold-hi); border-bottom-color: var(--gold-hi); }
.prose ul, .prose ol { display: grid; gap: .6em; }
.prose ul li { position: relative; padding-left: 22px; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .82em;
  width: 9px;
  height: 2px;
  background: var(--gold);
}
.prose ol { counter-reset: prose-ol; }
.prose ol li { position: relative; padding-left: 34px; }
.prose ol li::before {
  counter-increment: prose-ol;
  content: counter(prose-ol, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold);
}

/* ---------- 12. Table ---------- */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--gold-dim);
  background: var(--coal);
  -webkit-overflow-scrolling: touch;
}

.data-table {
  width: 100%;
  min-width: 640px;
  font-size: 14px;
}

.data-table thead th {
  padding: 12px 14px;
  background: var(--coal-deep);
  border-bottom: 2px solid var(--gold-dim);
  color: var(--gold);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  white-space: nowrap;
}

.data-table tbody td {
  padding: 11px 14px;
  border-bottom: 1px solid rgba(110, 90, 34, .26);
  color: var(--cloud);
  vertical-align: middle;
}

.data-table tbody tr:nth-child(even) { background: rgba(16, 20, 23, .72); }
.data-table tbody tr:last-child td { border-bottom: 0; }

.data-table tbody tr {
  transition: background-color 140ms var(--ease), box-shadow 160ms var(--ease);
}
.data-table tbody tr:hover { background: rgba(201, 162, 39, .10); }

.data-table tbody tr[data-seat-match] {
  background: rgba(79, 169, 140, .16);
  box-shadow: inset 3px 0 0 var(--jade);
}

.data-table .num {
  font-family: var(--font-mono);
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* ---------- 13. Media ---------- */
.media {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(150deg, #131A1E 0%, var(--ink) 100%);
  border: 2px solid var(--gold-dim);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, .5);
}
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media--16x9 { aspect-ratio: 16 / 9; }
.media--4x3 { aspect-ratio: 4 / 3; }
.media--1x1 { aspect-ratio: 1 / 1; }
.media--21x9 { aspect-ratio: 21 / 9; }

.media--empty {
  display: grid;
  place-items: center;
  min-height: 180px;
  background-image:
    repeating-linear-gradient(45deg, rgba(110, 90, 34, .13) 0 10px, transparent 10px 20px);
  color: var(--gold-dim);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .22em;
}

.media__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--cloud);
  background: linear-gradient(180deg, rgba(11, 13, 15, 0) 0%, rgba(11, 13, 15, .92) 100%);
}

/* ---------- 14. Panel / Stat / Tag ---------- */
.panel {
  padding: 22px 24px;
  background: var(--coal);
  border: 1px solid var(--gold-dim);
  border-left: 4px solid var(--gold);
}
.panel--cinnabar { border-left-color: var(--cinnabar); }
.panel--jade { border-left-color: var(--jade); }
.panel--indigo { border-left-color: var(--indigo); }

.stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 16px 0 4px;
  border-top: 2px solid var(--gold-dim);
}
.stat__value {
  font-family: var(--font-mono);
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.1;
  color: var(--gold-hi);
  font-variant-numeric: tabular-nums;
}
.stat__label {
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--silver);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  background: rgba(201, 162, 39, .08);
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  white-space: nowrap;
}
.tag--jade {
  color: var(--jade);
  border-color: var(--jade-deep);
  background: rgba(79, 169, 140, .10);
}
.tag--cinnabar {
  color: var(--cinnabar);
  border-color: var(--cinnabar-deep);
  background: rgba(201, 80, 79, .10);
}
.tag--indigo {
  color: var(--indigo-soft);
  border-color: var(--indigo);
  background: rgba(59, 47, 99, .40);
}

/* ---------- 15. Responsive ---------- */
@media (min-width: 960px) {
  .zl-header__inner {
    grid-template-columns: minmax(230px, 330px) minmax(0, 1fr);
    gap: 6px 36px;
    padding-bottom: 16px;
  }
  .zl-header__brand {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
  }
  .zl-header__tools {
    grid-column: 2;
    grid-row: 1;
  }
  .zl-nav {
    grid-column: 2;
    grid-row: 2;
    padding-top: 7px;
    border-top: 1px solid var(--gold-dim);
  }
  .zl-nav__list { justify-content: flex-end; }
}

@media (max-width: 959px) {
  .nav-toggle { display: inline-flex; }

  .zl-header__inner {
    row-gap: 0;
    padding-top: 10px;
    padding-bottom: 11px;
  }

  .zl-header__sub { display: none; }

  .zl-nav {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    border-top: 1px solid var(--gold-dim);
    transition: max-height 220ms var(--ease), opacity 180ms var(--ease);
  }
  .zl-nav[data-open] {
    max-height: 64vh;
    opacity: 1;
    overflow-y: auto;
  }

  .zl-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 14px;
  }
  .zl-nav__item { border-bottom: 1px solid rgba(110, 90, 34, .32); }
  .zl-nav__item:last-child { border-bottom: 0; }
  .zl-nav__link {
    justify-content: flex-start;
    padding: 13px 4px;
    font-size: 16px;
  }
  .zl-nav__link::after { display: none; }
  .zl-nav__link[aria-current="page"] { background: transparent; }
  .zl-nav__link[aria-current="page"]::before {
    content: "";
    width: 3px;
    height: 16px;
    margin-right: 4px;
    background: var(--cinnabar);
  }
}

@media (max-width: 1080px) {
  .zl-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 28px;
  }
  .zl-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  body { font-size: 15.5px; }

  .section { padding: 52px 0; }
  .section-head { margin-bottom: 26px; }

  .grid--2,
  .grid--3,
  .grid--4,
  .grid--split,
  .grid--wide { grid-template-columns: minmax(0, 1fr); }

  .zl-footer { margin-top: 64px; }
  .zl-footer__inner { padding: 42px var(--gutter) 22px; }
  .zl-footer__grid { grid-template-columns: minmax(0, 1fr); }
  .zl-footer__bottom { margin-top: 32px; }
  .zl-footer__legal { white-space: normal; }

  .media { box-shadow: 5px 5px 0 rgba(0, 0, 0, .5); }
}

@media (max-width: 560px) {
  :root { --gutter: 16px; }

  .seat-lookup__label { display: none; }
  .seat-lookup__input { width: 7.5ch; }
  .seat-lookup__input::placeholder { font-size: 11.5px; }
  .seat-lookup__status { font-size: 10.5px; }

  .brand__mark { width: 38px; height: 38px; font-size: 20px; }
  .brand__name { font-size: 17px; }
  .brand__line { font-size: 10px; letter-spacing: .16em; }

  .nav-toggle { padding: 7px 10px; }
  .nav-toggle__label { display: none; }
}

/* ---------- 16. Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
