:root {
  --bg: #f4f5fa;
  --surface: #ffffff;
  --surface-alt: #e8eaf4;
  --text: #191c2b;
  --text-muted: #515674;
  --border: rgba(25, 28, 43, 0.12);
  --accent: #3a4485;
  --accent-2: #b08a3e;
  --secondary: #262c4d;
  --on-accent: #ffffff;
  --dark: #151830;
  --radius: 0px;
  --radius-btn: 999px;
  --font-heading: 'Hoefler Text', 'Book Antiqua', Georgia, serif;
  --font-body: Avenir, 'Segoe UI', Arial, sans-serif;
  --max: 1140px;
  --section-pad: 96px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--secondary);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--text);
}

h1 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.12;
}

h2 {
  font-size: clamp(26px, 4vw, 40px);
}

h3 {
  font-size: clamp(20px, 2.5vw, 26px);
}

p {
  margin: 0 0 1.1em;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.accent-rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  border: 0;
  margin: 0 0 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--on-accent);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius-btn);
  padding: 0.85em 1.6em;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  color: var(--on-accent);
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(25, 28, 43, 0.12);
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--border);
}

.btn--ghost:hover {
  background: var(--surface);
  color: var(--secondary);
  border-color: var(--accent);
}

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

.brand:hover {
  color: var(--accent);
}

.brand__mark {
  width: 36px;
  height: 48px;
  object-fit: contain;
}

.brand__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.15rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  padding: 0.35em 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  color: var(--accent);
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent-2);
}

.hero-quiet {
  background: var(--surface-alt);
  padding: calc(var(--section-pad) * 0.95) 0;
}

.hero-quiet__inner {
  max-width: 720px;
}

.hero-quiet .lead {
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.independence-inline {
  margin-top: 2rem;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 62ch;
}

.section {
  padding: var(--section-pad) 0;
}

.section--dark {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.88);
}

.section--dark h2,
.section--dark h3 {
  color: #fff;
}

.section--dark .kicker {
  color: rgba(255, 255, 255, 0.55);
}

.section--alt {
  background: var(--surface-alt);
}

.section--surface {
  background: var(--surface);
}

.section__head {
  margin-bottom: 2.75rem;
  max-width: 640px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(25, 28, 43, 0.1);
  color: inherit;
}

.category-card__media {
  flex: 1;
  min-height: 220px;
  overflow: hidden;
}

.category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.category-card:hover .category-card__media img {
  transform: scale(1.02);
}

.category-card__panel {
  background: var(--surface);
  padding: 1.5rem 1.4rem 1.6rem;
  margin-top: -3.5rem;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
}

.category-card__panel h3 {
  margin-bottom: 0.45em;
  font-size: 1.35rem;
}

.category-card__panel p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.9em;
}

.category-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 3rem;
  align-items: start;
}

.about-split__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about-split__cols p {
  color: rgba(255, 255, 255, 0.78);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 1.15rem;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 0.25rem;
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.1rem;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5em;
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 28ch;
  margin-inline: auto;
}

.amenity-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}

.amenity-list dt,
.amenity-list dd {
  margin: 0;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.amenity-list dt {
  font-weight: 700;
  padding-right: 1.5rem;
  grid-column: 1;
}

.amenity-list dd {
  color: var(--text-muted);
  padding-left: 0.5rem;
  grid-column: 2;
}

.amenity-list {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr;
}

.page-hero {
  padding: calc(var(--section-pad) * 0.75) 0 2.5rem;
}

.page-hero p {
  max-width: 62ch;
  color: var(--text-muted);
}

.catalog-close {
  padding: 0 0 var(--section-pad);
}

.catalog-close p {
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.band-stack {
  display: flex;
  flex-direction: column;
}

.band-venue {
  border-bottom: 1px solid var(--border);
  padding-bottom: 3.5rem;
  margin-bottom: 3.5rem;
}

.band-venue:last-of-type {
  margin-bottom: 0;
}

.band-venue__media {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.75rem;
}

.band-venue__media img {
  width: 100%;
  height: clamp(280px, 48vw, 520px);
  object-fit: cover;
  transition: transform 0.35s ease;
}

.band-venue:hover .band-venue__media img {
  transform: scale(1.02);
}

.band-venue__nameplate {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem 1.4rem;
  background: rgba(21, 24, 48, 0.72);
  color: #fff;
}

.band-venue__nameplate h2 {
  color: #fff;
  margin: 0;
  font-size: clamp(22px, 3vw, 32px);
}

.band-venue__body {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.band-venue__meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.band-venue__body p {
  color: var(--text-muted);
  margin-bottom: 1.4rem;
}

.grand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
}

.grand-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.grand-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(25, 28, 43, 0.1);
}

.grand-card__media {
  overflow: hidden;
}

.grand-card__media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.grand-card:hover .grand-card__media img {
  transform: scale(1.02);
}

.grand-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.grand-card__body h2 {
  font-size: 1.45rem;
  margin-bottom: 0.25em;
}

.grand-card__body .venue-meta {
  margin: 0 0 0.75rem;
  flex: 0 0 auto;
}

.grand-card__body p:not(.venue-meta) {
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.35rem;
}

.row-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.row-venue {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1.75rem;
  align-items: center;
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.row-venue:last-child {
  border-bottom: 1px solid var(--border);
}

.row-venue:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(25, 28, 43, 0.08);
  background: var(--surface);
  padding-inline: 1rem;
  margin-inline: -1rem;
}

.row-venue__thumb {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.row-venue__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.row-venue:hover .row-venue__thumb img {
  transform: scale(1.02);
}

.row-venue__text {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.row-venue__text h2 {
  font-size: 1.35rem;
  margin-bottom: 0.2em;
}

.venue-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 0.65rem;
}

.row-venue__text .kicker {
  margin-bottom: 0.4rem;
}

.row-venue__text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.row-venue__text p.venue-meta {
  margin: 0 0 0.65rem;
}

.row-venue .btn {
  white-space: nowrap;
}

.editorial-stack {
  padding-bottom: var(--section-pad);
}

.editorial-block {
  padding: 3.25rem 0;
  border-top: 1px solid var(--border);
  max-width: 720px;
}

.editorial-block:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.editorial-block .num-kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.75rem;
}

.editorial-block p {
  color: var(--text-muted);
}

.notes-lead {
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  line-height: 1.55;
  max-width: none;
  color: var(--text);
  margin-bottom: 3.5rem;
  font-family: var(--font-heading);
}

.notes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 3.5rem;
}

.notes-grid article h2 {
  font-size: 1.4rem;
  margin-bottom: 0.75em;
}

.notes-grid article p {
  color: var(--text-muted);
}

.contact-wrap {
  max-width: 640px;
  margin-inline: auto;
  padding-bottom: var(--section-pad);
}

.contact-wrap > .intro {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem 2rem 2.25rem;
}

.form-field {
  margin-bottom: 1.25rem;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.agree-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 1.5rem 0 1.25rem;
}

.agree-row input {
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.agree-row label {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-error {
  display: none;
  color: #8b2e2e;
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

.form-error.is-visible {
  display: block;
}

.contact-email-line {
  margin-top: 1.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.confirm-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2.25rem 2rem;
  text-align: center;
}

.confirm-panel h2 {
  font-size: 1.6rem;
}

.confirm-panel p {
  color: var(--text-muted);
}

.legal-body {
  padding-bottom: var(--section-pad);
  max-width: 760px;
}

.legal-body h1 {
  margin-bottom: 0.4em;
}

.legal-body h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin-top: 2.25rem;
}

.legal-body h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

.legal-body p,
.legal-body li {
  color: var(--text-muted);
}

.legal-body ul {
  padding-left: 1.2rem;
}

.sitemap-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: var(--section-pad);
}

.sitemap-row {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: 1.5rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.sitemap-row:first-child {
  border-top: 1px solid var(--border);
}

.sitemap-row a {
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
}

.sitemap-row a:hover {
  color: var(--secondary);
}

.sitemap-row p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.site-footer {
  background: var(--surface-alt);
  padding-top: 3.5rem;
}

.footer-independence {
  width: min(100% - 48px, var(--max));
  margin: 0 auto 2rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(160px, 240px) 1fr;
  gap: 3rem;
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  padding-bottom: 3rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.footer-group__title {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.footer-group a {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 0.45rem;
}

.footer-group a:hover {
  color: var(--accent);
}

.footer-brand .brand {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 48ch;
  margin-bottom: 1rem;
}

.footer-brand a[href^="mailto"] {
  font-size: 0.92rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.35rem 1.5rem 1.75rem;
  text-align: center;
}

.footer-bottom .copy {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom [data-cookie-settings] {
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer-bottom [data-cookie-settings]:hover {
  color: var(--secondary);
}

.consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1.1rem 0;
}

.consent[hidden] {
  display: none !important;
}

.consent__inner {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.consent__copy {
  flex: 1;
  min-width: 0;
}

.consent__copy h2 {
  font-size: 1.05rem;
  margin-bottom: 0.35em;
  letter-spacing: -0.2px;
}

.consent__copy p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0 0 0.5em;
}

.consent__copy a {
  font-size: 0.82rem;
}

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

.consent__actions .btn {
  font-size: 0.78rem;
  padding: 0.7em 1.15em;
}

.consent__manage {
  background: none;
  border: 0;
  padding: 0.4em 0.6em;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.consent__panel {
  width: min(100% - 32px, var(--max));
  margin: 0.85rem auto 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.consent__panel.is-open {
  max-height: 320px;
  opacity: 1;
}

.consent__cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem 0 0.25rem;
  border-top: 1px solid var(--border);
}

.consent__cat {
  border: 1px solid var(--border);
  padding: 0.85rem 1rem;
  background: var(--bg);
}

.consent__cat label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.consent__cat p {
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.consent__cat input:disabled {
  cursor: not-allowed;
}

.consent__save-row {
  margin-top: 0.85rem;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .grand-grid {
    gap: 1.75rem;
  }
}

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

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.5rem 1.25rem;
    gap: 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
    letter-spacing: 0.14em;
  }

  .site-nav a[aria-current="page"] {
    border-bottom-color: var(--border);
    color: var(--accent);
  }

  .site-header {
    position: relative;
  }

  .site-header.is-nav-open {
    z-index: 120;
  }

  .notes-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .consent__inner {
    flex-direction: column;
  }

  .consent__actions {
    justify-content: flex-start;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 72px;
  }

  .container,
  .site-header__inner,
  .footer-independence,
  .footer-main {
    width: min(100% - 32px, var(--max));
  }

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

  .steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .steps::before {
    display: none;
  }

  .step {
    text-align: left;
  }

  .step p {
    margin-inline: 0;
    max-width: none;
  }

  .about-split__cols {
    grid-template-columns: 1fr;
  }

  .amenity-list {
    grid-template-columns: 1fr;
  }

  .amenity-list dt,
  .amenity-list dd {
    grid-column: 1;
    padding: 0.35rem 0;
  }

  .amenity-list dt {
    padding-top: 1.1rem;
    border-bottom: 0;
  }

  .amenity-list dd {
    padding-bottom: 1.1rem;
  }

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

  .row-venue {
    grid-template-columns: 96px 1fr;
    gap: 1.1rem 1.25rem;
  }

  .row-venue__thumb {
    width: 96px;
    height: 96px;
  }

  .row-venue .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .row-venue__text {
    text-align: left;
  }

  .sitemap-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .contact-panel {
    padding: 1.5rem 1.25rem;
  }
}

@media (max-width: 480px) {
  :root {
    --section-pad: 56px;
  }

  .brand__name {
    font-size: 1rem;
  }

  .hero-quiet {
    padding: 3.5rem 0;
  }

  .band-venue__nameplate {
    padding: 0.9rem 1rem;
  }

  .consent__actions .btn {
    width: 100%;
  }

  .consent__actions {
    width: 100%;
  }
}
