:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
  --ink: #111310;
  --paper: #f2f3ef;
  --white: #ffffff;
  --muted-white: rgba(255, 255, 255, 0.84);
  --line-white: rgba(255, 255, 255, 0.22);
  --muted-ink: #4d524d;
  --line-ink: #d8dbd5;
  --accent: #d94b3b;
  --accent-hover: #ef5a49;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

.site-shell {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: 44% center;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 14, 12, 0.88) 0%, rgba(12, 14, 12, 0.64) 42%, rgba(12, 14, 12, 0.18) 78%, rgba(12, 14, 12, 0.28) 100%),
    linear-gradient(0deg, rgba(12, 14, 12, 0.64) 0%, rgba(12, 14, 12, 0) 34%);
}

.site-header {
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: 94px;
  padding: 20px 3.4vw;
  border-bottom: 1px solid var(--line-white);
  background: rgba(10, 12, 10, 0.34);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.brand {
  display: inline-flex;
  min-width: 176px;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: #fff;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  gap: 1px;
  font-size: 11px;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: 20px;
  font-weight: 800;
}

.brand-copy span {
  color: var(--muted-white);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.65vw, 28px);
}

.desktop-nav a,
.phone-link {
  position: relative;
  padding: 12px 0;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after,
.phone-link::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.phone-link:hover::after,
.phone-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}

.phone-link::after {
  display: none;
}

.phone-link:hover,
.phone-link:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.social-links {
  display: flex;
  gap: 6px;
}

.social-link {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  place-items: center;
  background: rgba(10, 12, 10, 0.28);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.social-link img {
  display: block;
  width: 22px;
  height: 22px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 760;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.button-accent {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.button-accent:hover,
.button-accent:focus-visible {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(17, 19, 16, 0.1);
  color: #fff;
  backdrop-filter: blur(3px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.button-dark:hover,
.button-dark:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
}

.icon-button {
  display: inline-grid;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 0;
  place-items: center;
  background: transparent;
  color: inherit;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}

.menu-toggle {
  display: none;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  content: "";
}

.menu-lines {
  position: relative;
}

.menu-lines::before {
  position: absolute;
  top: -6px;
}

.menu-lines::after {
  position: absolute;
  top: 6px;
}

.hero {
  display: flex;
  min-height: 0;
  align-items: center;
  padding: 42px max(4.2vw, calc((100vw - 1420px) / 2));
}

.hero-copy {
  width: min(760px, 64vw);
}

.section-label,
.panel-index {
  margin: 0;
  color: var(--muted-white);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}


h1 {
  max-width: 740px;
  margin: 0;
  font-size: 68px;
  font-weight: 720;
  line-height: 1;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 590px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.brand-line {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-footer {
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 98px;
  border-top: 1px solid var(--line-white);
}

.hall-switcher {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  max-width: 720px;
}

.hall-switcher a {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  border-right: 1px solid var(--line-white);
  font-size: 13px;
  font-weight: 720;
  text-decoration: none;
  transition: background 160ms ease;
}

.hall-switcher a:hover,
.hall-switcher a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.hall-switcher span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.address-link {
  display: grid;
  min-width: 270px;
  align-content: center;
  gap: 4px;
  padding: 0 3.4vw;
  text-align: right;
  text-decoration: none;
}

.address-link span {
  color: var(--muted-white);
  font-size: 12px;
}

.address-link strong {
  font-size: 13px;
}

.panel-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(3, 5, 3, 0.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.panel-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.side-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 31;
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(48vw, 720px);
  min-width: 560px;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  transform: translateX(102%);
  transition: transform 280ms cubic-bezier(0.22, 0.76, 0.2, 1);
}

.side-panel.is-open {
  transform: translateX(0);
}

.panel-header {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 34px;
  border-bottom: 1px solid var(--line-ink);
  background: rgba(242, 243, 239, 0.96);
}

.panel-index,
.section-label {
  color: var(--accent);
}

.panel-header h2 {
  margin: 5px 0 0;
  font-size: 26px;
  line-height: 1;
}

.panel-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.panel-close {
  color: var(--ink);
}

.panel-scroll {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 44px 42px max(56px, env(safe-area-inset-bottom));
  scrollbar-gutter: stable;
}

.panel-view {
  max-width: 610px;
  margin: 0 auto;
}

.panel-intro h3 {
  margin: 12px 0 0;
  font-size: 42px;
  font-weight: 770;
  line-height: 1.04;
}

.panel-intro > p:last-child {
  margin: 20px 0 0;
  color: var(--muted-ink);
  font-size: 16px;
  line-height: 1.6;
}

.hall-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border-bottom: 1px solid #bec2bc;
}

.hall-tabs button {
  min-height: 48px;
  padding: 0 8px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: #777c75;
  font-size: 13px;
  font-weight: 720;
}

.hall-tabs button[aria-selected="true"] {
  border-bottom-color: var(--accent);
  color: var(--ink);
}

.hall-card {
  margin-top: 24px;
  border: 1px solid var(--line-ink);
  background: #fff;
}

.hall-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.7;
  object-fit: cover;
}

.hall-card-copy {
  padding: 25px;
}

.hall-card h4,
.resident-callout h4 {
  margin: 9px 0 0;
  font-size: 25px;
  line-height: 1.1;
}

.hall-card-copy > p:not(.section-label),
.resident-callout p {
  margin: 14px 0 0;
  color: var(--muted-ink);
  line-height: 1.55;
}

.text-action {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding: 16px 0 0;
  border: 0;
  border-top: 1px solid var(--line-ink);
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 780;
  text-align: left;
}

.text-action span {
  color: var(--accent);
  font-size: 22px;
}

.data-list,
.availability-box,
.contact-list {
  margin: 34px 0;
  border-top: 1px solid #bfc3bd;
}

.data-list > div,
.availability-box > div,
.contact-list a {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #bfc3bd;
}

.data-list span,
.availability-box span,
.contact-list span {
  color: var(--muted-ink);
  font-size: 13px;
}

.data-list strong,
.availability-box strong,
.contact-list strong {
  font-size: 14px;
  text-align: right;
}

.contact-list a {
  text-decoration: none;
}

.contact-list a:hover strong,
.contact-list a:focus-visible strong {
  color: var(--accent);
}

.contact-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-label img {
  width: 20px;
  height: 20px;
  filter: invert(1);
}

.notice {
  margin: 0 0 28px;
  padding: 22px;
  border-left: 3px solid var(--accent);
  background: #e6e8e2;
}

.notice p,
.small-note {
  margin: 8px 0 0;
  color: var(--muted-ink);
  font-size: 14px;
  line-height: 1.55;
}

[data-panel="availability"] > .button {
  margin-top: 28px;
}

.resident-callout {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
  padding: 26px;
  border: 1px solid var(--line-ink);
  background: #fff;
}

.resident-mark {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-size: 22px;
  font-weight: 820;
}

.resident-callout h4 {
  margin: 0;
}

.plain-list {
  display: grid;
  gap: 0;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding: 16px 0 16px 24px;
  border-bottom: 1px solid var(--line-ink);
  font-size: 14px;
}

.plain-list li::before {
  position: absolute;
  top: 22px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--accent);
  content: "";
}

.rules-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.rules-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line-ink);
}

.rules-list li > span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 780;
}

.rules-list strong {
  font-size: 16px;
}

.rules-list p {
  margin: 7px 0 0;
  color: var(--muted-ink);
  font-size: 14px;
  line-height: 1.5;
}

.map-preview {
  display: grid;
  min-height: 160px;
  align-content: space-between;
  margin-top: 30px;
  padding: 24px;
  background:
    linear-gradient(rgba(17, 19, 16, 0.68), rgba(17, 19, 16, 0.68)),
    url("/venue.webp") center / cover;
  color: #fff;
  text-decoration: none;
}

.map-preview > span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

.map-preview strong {
  display: flex;
  justify-content: space-between;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  padding: max(22px, env(safe-area-inset-top)) 22px max(22px, env(safe-area-inset-bottom));
  background: #111310;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted-white);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.mobile-menu-links {
  display: grid;
  align-content: center;
}

.mobile-menu-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-white);
  font-size: 29px;
  font-weight: 740;
  text-decoration: none;
}

.mobile-menu-links span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.mobile-contact-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 14px;
  border: 1px solid var(--line-white);
}

.mobile-contact-links a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-right: 1px solid var(--line-white);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.mobile-contact-links img {
  width: 20px;
  height: 20px;
}

.mobile-contact-links a:last-child {
  border-right: 0;
}

.rent-dialog {
  width: min(920px, calc(100vw - 40px));
  max-height: min(90vh, 900px);
  max-height: min(90dvh, 900px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
}

.rent-dialog::backdrop {
  background: rgba(4, 6, 4, 0.74);
  backdrop-filter: blur(2px);
}

.rent-form {
  padding: 32px 36px 36px;
}

.rent-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.rent-header h2,
.form-success h2 {
  margin: 8px 0 0;
  font-size: 38px;
  line-height: 1.05;
}

.rent-close {
  flex: 0 0 auto;
  color: var(--ink);
}

.form-note {
  max-width: 650px;
  margin: 16px 0 28px;
  color: var(--muted-ink);
  font-size: 14px;
  line-height: 1.55;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-grid label {
  display: grid;
  gap: 7px;
}

.form-grid label > span {
  font-size: 12px;
  font-weight: 740;
}

.form-grid .wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #b9bdb6;
  border-radius: 0;
  outline: none;
  background: #fff;
  color: var(--ink);
}

input,
select {
  height: 48px;
  padding: 0 13px;
}

textarea {
  min-height: 82px;
  padding: 12px 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  margin-top: 22px;
  color: var(--muted-ink);
  font-size: 12px;
  line-height: 1.5;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--accent);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 24px;
}

.text-link {
  color: var(--ink);
  font-size: 13px;
  font-weight: 720;
}

.form-error {
  margin: 18px 0 0;
  padding: 12px;
  border-left: 3px solid var(--accent);
  background: #f3dcd7;
  color: #7b241b;
  font-size: 13px;
}

.form-success {
  min-height: 440px;
  padding: 54px;
}

.form-success > p:not(.section-label) {
  max-width: 520px;
  margin: 20px 0 30px;
  color: var(--muted-ink);
  font-size: 18px;
  line-height: 1.5;
}

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

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

@media (max-width: 1240px) {
  .site-header {
    gap: 20px;
  }

  .desktop-nav {
    gap: 14px;
  }

  .phone-link {
    display: none;
  }

  h1 {
    font-size: 64px;
  }
}

@media (max-width: 1020px) {
  .desktop-nav,
  .header-rent {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .hero-copy {
    width: min(720px, 82vw);
  }
}

@media (max-width: 760px) {
  .site-shell {
    min-height: 560px;
  }

  .hero-media {
    object-position: 52% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 12, 10, 0.84) 0%, rgba(10, 12, 10, 0.55) 100%),
      linear-gradient(0deg, rgba(10, 12, 10, 0.82) 0%, rgba(10, 12, 10, 0.04) 48%);
  }

  .site-header {
    min-height: 78px;
    padding: max(14px, env(safe-area-inset-top)) 20px 12px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy span {
    font-size: 9px;
  }

  .icon-button {
    width: 44px;
    height: 44px;
  }

  .hero {
    align-items: flex-end;
    padding: 32px 20px 28px;
  }

  .hero-copy {
    width: 100%;
    padding-bottom: 0;
  }


  h1 {
    margin-top: 0;
    font-size: 42px;
    font-weight: 710;
    line-height: 1.01;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.58;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .button {
    min-height: 47px;
  }

  .brand-line {
    margin-top: 18px;
    font-size: 10px;
    line-height: 1.35;
  }

  .hero-footer {
    display: block;
    min-height: 64px;
  }

  .hall-switcher {
    grid-template-columns: repeat(3, minmax(118px, 1fr));
    max-width: none;
    height: 64px;
    overflow-x: auto;
  }

  .hall-switcher a {
    justify-content: center;
    gap: 7px;
    padding: 0 13px;
    font-size: 11px;
    white-space: nowrap;
  }

  .address-link {
    display: none;
  }

  .side-panel {
    width: 100%;
    min-width: 0;
  }

  .panel-header {
    position: sticky;
    top: 0;
    z-index: 2;
    min-height: 78px;
    padding: max(14px, env(safe-area-inset-top)) 18px 13px;
  }

  .panel-header h2 {
    font-size: 22px;
  }

  .panel-rent {
    min-height: 42px;
    padding: 0 13px;
  }

  .panel-close {
    width: 42px;
    height: 42px;
  }

  .panel-scroll {
    padding: 30px 20px max(40px, env(safe-area-inset-bottom));
  }

  .panel-intro h3 {
    font-size: 34px;
  }

  .panel-intro > p:last-child {
    font-size: 15px;
  }

  .hall-card-copy {
    padding: 20px;
  }

  .hall-card h4,
  .resident-callout h4 {
    font-size: 22px;
  }

  .resident-callout {
    grid-template-columns: 68px 1fr;
    gap: 16px;
    padding: 20px;
  }

  .resident-mark {
    width: 68px;
    height: 68px;
    font-size: 17px;
  }

  .rent-dialog {
    width: 100%;
    max-width: none;
    height: 100vh;
    height: 100dvh;
    max-height: none;
    margin: 0;
  }

  .rent-form {
    padding: max(22px, env(safe-area-inset-top)) 20px max(30px, env(safe-area-inset-bottom));
  }

  .rent-header h2,
  .form-success h2 {
    font-size: 31px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid .wide {
    grid-column: auto;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .text-link {
    text-align: center;
  }

  .form-success {
    min-height: 100%;
    padding: 70px 24px;
  }
}

@media (max-height: 720px) and (min-width: 761px) {
  .site-header {
    min-height: 80px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  h1 {
    margin-top: 16px;
    font-size: 58px;
  }

  .hero-lead {
    margin-top: 16px;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .brand-line {
    margin-top: 18px;
  }

  .hero-footer {
    min-height: 76px;
  }
}

@media (max-height: 700px) and (max-width: 760px) {
  .brand-line {
    display: none;
  }

  h1 {
    font-size: 38px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions {
    grid-template-columns: repeat(2, 1fr);
  }

  .button {
    padding: 0 12px;
    font-size: 11px;
  }
}

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

/* Readable type and controls for an older audience. */
.section-label,
.panel-index,
.brand-line,
.mobile-menu-head {
  text-transform: none;
}

.section-label,
.panel-index {
  font-size: 14px;
  font-weight: 700;
}

.panel-header h2 {
  font-size: 30px;
  line-height: 1.15;
}

.panel-intro h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.12;
}

.panel-intro > p:last-child,
.hall-card-copy > p:not(.section-label),
.resident-callout p {
  font-size: 18px;
  line-height: 1.65;
}

.hall-tabs button {
  min-height: 56px;
  font-size: 17px;
}

.text-action,
.data-list span,
.availability-box span,
.contact-list span,
.data-list strong,
.availability-box strong,
.contact-list strong {
  font-size: 17px;
}

.data-list > div,
.availability-box > div,
.contact-list a {
  min-height: 80px;
}

.notice p,
.small-note,
.plain-list li,
.rules-list p {
  font-size: 16px;
  line-height: 1.6;
}

.rules-list strong {
  font-size: 18px;
}

.rules-list li > span,
.map-preview > span {
  font-size: 13px;
}

.form-grid label > span,
.consent,
.text-link {
  font-size: 15px;
}

input,
select {
  height: 54px;
  font-size: 17px;
}

textarea {
  font-size: 17px;
  line-height: 1.5;
}

@media (min-width: 1021px) {
  .site-header {
    min-height: 104px;
    gap: 28px;
    padding: 20px 3vw;
  }

  .brand {
    min-width: 164px;
  }

  .brand-copy {
    gap: 2px;
    font-size: 13px;
    line-height: 1.15;
    text-transform: none;
  }

  .brand-copy strong {
    font-size: 27px;
    font-weight: 750;
  }

  .desktop-nav {
    gap: clamp(18px, 1.5vw, 27px);
  }

  .desktop-nav a,
  .phone-link {
    padding: 15px 0;
    font-size: 18px;
    font-weight: 650;
    text-transform: none;
  }

  .phone-link {
    font-size: 17px;
    padding: 0 16px;
  }

  .button {
    min-height: 56px;
    padding: 0 26px;
    font-size: 16px;
    font-weight: 700;
  }

  .hero {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .hero-copy {
    width: min(700px, 62vw);
  }

  h1 {
    max-width: 690px;
    font-size: 58px;
    font-weight: 680;
    line-height: 1.08;
  }

  .hero-lead {
    max-width: 630px;
    margin-top: 28px;
    font-size: 21px;
    line-height: 1.58;
  }

  .hero-actions {
    gap: 14px;
    margin-top: 30px;
  }

  .brand-line {
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 16px;
    font-weight: 600;
  }

  .hero-footer {
    min-height: 104px;
  }

  .hall-switcher {
    max-width: 780px;
  }

  .hall-switcher a {
    gap: 14px;
    font-size: 16px;
    font-weight: 650;
  }

  .hall-switcher span {
    font-size: 12px;
  }

  .address-link span,
  .address-link strong {
    font-size: 16px;
  }
}

@media (max-width: 760px) {
  .mobile-menu-head {
    font-size: 16px;
  }

  .mobile-menu-links a {
    font-size: 32px;
  }

  .hero-lead {
    font-size: 17px;
    line-height: 1.58;
  }

  .button {
    min-height: 52px;
    font-size: 16px;
  }

  .brand-line {
    font-size: 13px;
    font-weight: 600;
    text-transform: none;
  }

  .hall-switcher a {
    font-size: 13px;
  }

  .hall-switcher span {
    display: none;
  }

  .panel-intro h3 {
    font-size: 32px;
  }

  .panel-intro > p:last-child,
  .hall-card-copy > p:not(.section-label),
  .resident-callout p {
    font-size: 17px;
  }

  .panel-rent {
    min-height: 46px;
    font-size: 15px;
  }

  .contact-list a {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 14px 0;
  }

  .contact-list strong {
    max-width: 100%;
    overflow-wrap: anywhere;
    text-align: left;
  }
}

@media (max-width: 1180px) {
  .social-links {
    display: none;
  }
}

@media (max-height: 700px) and (max-width: 760px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }

  .button {
    font-size: 15px;
  }
}
