:root {
  --bg: #fbfbf9;
  --surface: #ffffff;
  --surface-alt: #f0f0ec;
  --text: #1b1b1a;
  --text-muted: #585856;
  --border: rgba(27, 27, 26, 0.12);
  --accent: #2e2e2c;
  --accent-2: #9a7b4f;
  --secondary: #3d3d3a;
  --on-accent: #fbfbf9;
  --dark: #1b1b1a;
  --radius: 20px;
  --radius-btn: 6px;
  --font-heading: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  --font-body: Cambria, Georgia, serif;
  --max: 1240px;
  --section-pad: 128px;
  --header-h: 120px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

h1 {
  font-size: clamp(44px, 7.5vw, 84px);
  line-height: 1.04;
}

h2 {
  font-size: clamp(30px, 5vw, 50px);
}

h3 {
  font-size: clamp(22px, 3vw, 28px);
}

p {
  margin: 0 0 1.1em;
}

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

.kicker {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0 0 1rem;
}

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

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

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

.section--dark {
  background: var(--dark);
  color: var(--on-accent);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark .kicker {
  color: var(--on-accent);
}

.section--dark .kicker {
  color: var(--accent-2);
}

.section--dark p,
.section--dark a {
  color: rgba(251, 251, 249, 0.82);
}

.section--dark a:hover {
  color: var(--on-accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.85em 1.4em;
  border-radius: var(--radius-btn);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

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

.btn--ghost:hover {
  background: var(--accent);
  color: var(--on-accent);
}

.btn--text {
  background: none;
  border: none;
  color: var(--accent-2);
  padding: 0;
  border-radius: 0;
  text-decoration: none;
  font-size: 16px;
}

.btn--text:hover {
  color: var(--accent);
  background: none;
}

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-solid {
  background: var(--surface);
  border-bottom-color: var(--border);
}

.header-inner {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  padding: 18px 0 0;
}

.brand-row {
  display: flex;
  justify-content: center;
  padding-bottom: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand img {
  width: 40px;
  height: 38px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.nav-row {
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--border);
  padding: 12px 0 16px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--text-muted);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  width: 44px;
  height: 44px;
  padding: 0;
  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);
}

.independence {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  background: var(--surface);
  max-width: 52rem;
}

.independence--home {
  margin: 48px auto 0;
}

.independence--page {
  margin: 28px 0 0;
}

.page-hero {
  padding: 72px 0 0;
}

.page-hero h1 {
  margin-bottom: 0.35em;
}

.page-hero .lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 40rem;
  margin-top: 1.25rem;
}

.page-hero .independence--page + .lead {
  margin-top: 1.25rem;
}

.hero-offset {
  position: relative;
  min-height: min(78vh, 720px);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: stretch;
  background: var(--bg);
}

.hero-offset__media {
  grid-column: 2 / -1;
  grid-row: 1;
  min-height: 420px;
}

.hero-offset__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px;
}

.hero-offset__panel {
  grid-column: 1 / 2;
  grid-row: 1;
  align-self: center;
  position: relative;
  z-index: 2;
  margin-left: max(24px, calc((100vw - var(--max)) / 2));
  margin-right: -12%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(36px, 5vw, 64px);
  max-width: 560px;
}

.hero-offset__panel h1 {
  margin-bottom: 0.5em;
}

.hero-offset__panel .intro {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.category-card {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.category-card__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--surface);
  padding: 28px 28px 32px;
  border-top: 1px solid var(--border);
}

.category-card__panel h3 {
  margin-bottom: 0.4em;
}

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

.amenities-lead {
  max-width: 40rem;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.amenity-tile {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  background: var(--surface);
}

.amenity-tile h3 {
  font-size: 20px;
  margin-bottom: 0.5em;
}

.amenity-tile p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.regions-compose {
  text-align: center;
}

.regions-compose .frame {
  max-width: 36rem;
  margin: 0 auto 3rem;
  color: rgba(251, 251, 249, 0.78);
}

.regions-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.regions-list li {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 500;
  letter-spacing: -1px;
  color: var(--on-accent);
}

.closing-cta {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.closing-cta a {
  font-family: var(--font-heading);
  color: var(--accent-2);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-2);
}

.look-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
}

.look-item {
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.look-item .num {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.22em;
  color: var(--accent-2);
  margin-bottom: 12px;
}

.look-item h3 {
  font-size: 24px;
  margin-bottom: 0.5em;
}

.look-item p {
  color: var(--text-muted);
}

.about-split {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.about-split__copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.masonry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.masonry .venue-card:nth-child(even) {
  margin-top: 64px;
}

.venue-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  display: flex;
  flex-direction: column;
}

.venue-card__body {
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.venue-card__body h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 0;
}

.venue-card__meta {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: inherit;
}

.venue-card__place,
.venue-card__class {
  display: block;
}

.venue-card__stars {
  color: var(--accent-2);
  letter-spacing: 0.08em;
  font-size: 14px;
}

.venue-card__desc {
  color: var(--text-muted);
  flex: 1;
}

.venue-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.venue-card--alt {
  flex-direction: column;
}

.venue-card--alt .venue-card__media {
  order: 2;
}

.venue-card--alt .venue-card__body {
  order: 1;
}

.venue-card--alt .btn {
  order: 3;
  margin: 0 28px 36px;
  align-self: flex-start;
}

.venue-card--alt .venue-card__body .btn {
  display: none;
}

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

.band-venue {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.band-venue:first-of-type {
  border-top: 1px solid var(--border);
}

.band-venue__media img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: var(--radius);
}

.band-venue__content {
  text-align: center;
  max-width: 40rem;
  margin: 36px auto 0;
}

.band-venue__content .venue-card__meta {
  align-items: center;
}

.band-venue__content h2 {
  margin-bottom: 12px;
}

.band-venue__rule {
  width: 48px;
  height: 2px;
  background: var(--accent-2);
  margin: 0 auto 20px;
  border: none;
}

.band-venue__content .venue-card__desc {
  margin-bottom: 1.25rem;
}

.downtown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.downtown-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  display: flex;
  flex-direction: column;
}

.downtown-card__media {
  position: relative;
}

.downtown-card__media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  min-height: 360px;
}

.downtown-card__name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 20px 24px;
  background: rgba(27, 27, 26, 0.72);
  color: var(--on-accent);
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 500;
  letter-spacing: -0.5px;
}

.downtown-card__body {
  padding: 28px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.downtown-grid .downtown-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 620px;
  justify-self: center;
  width: 100%;
}

.catalog-close {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  max-width: 40rem;
}

.editorial-lead {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.45;
  max-width: 52rem;
  margin-bottom: 64px;
  color: var(--text);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 56px;
}

.editorial-grid section h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 1rem;
}

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

.adults-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
}

.adults-index {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--surface);
}

.adults-index h2 {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.adults-index ol {
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 14px;
  line-height: 1.6;
}

.adults-index a {
  color: var(--text-muted);
  text-decoration: none;
}

.adults-index a:hover {
  color: var(--accent-2);
}

.adults-prose section {
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.adults-prose section:last-child {
  border-bottom: none;
}

.adults-prose h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 1rem;
}

.adults-prose p {
  color: var(--text-muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.contact-intro p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.contact-email {
  font-family: var(--font-heading);
  font-size: 18px;
}

.contact-form {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  background: var(--surface);
}

.form-field {
  margin-bottom: 22px;
}

.form-field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  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-2);
  outline-offset: 1px;
}

.agree-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.agree-row input {
  margin-top: 4px;
  flex-shrink: 0;
}

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

.field-error {
  color: #8b2e2e;
  font-size: 13px;
  margin-top: 8px;
  min-height: 1.2em;
}

.form-status[aria-live] {
  margin-top: 12px;
  color: #8b2e2e;
  font-size: 14px;
}

.confirm-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  background: var(--surface);
}

.confirm-panel h2 {
  font-size: 28px;
  margin-bottom: 0.6em;
}

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

.sitemap-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.sitemap-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.sitemap-row a {
  font-family: var(--font-heading);
  font-size: 18px;
  text-decoration: none;
  color: var(--text);
}

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

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

.legal-body {
  max-width: 44rem;
}

.legal-body h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

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

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

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

.site-footer {
  background: var(--surface);
  border-top: 2px solid var(--accent-2);
  padding: 72px 0 40px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px 32px;
}

.footer-brand .brand {
  margin-bottom: 16px;
}

.footer-blurb {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 28rem;
}

.footer-group h2 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 16px;
}

.footer-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-group li {
  margin-bottom: 10px;
}

.footer-group a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
}

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

.footer-independence {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  max-width: 48rem;
}

.footer-bottom {
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom .cookie-line {
  margin-top: 8px;
}

.footer-bottom button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.footer-bottom button:hover {
  color: var(--accent-2);
}

.consent {
  position: fixed;
  z-index: 1000;
  left: 24px;
  bottom: 24px;
  width: min(400px, calc(100vw - 32px));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent-2);
  box-shadow: none;
  padding: 22px 20px 18px;
}

.consent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--accent-2);
  border-radius: 1px;
}

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

.consent__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin: 0 0 8px;
}

.consent__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 16px;
}

.consent__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 16px;
}

.consent__cat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  font-family: var(--font-heading);
}

.consent__cat input:disabled {
  opacity: 0.7;
}

.consent__actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.consent__actions button {
  font-family: var(--font-heading);
  font-size: 12px;
  padding: 10px 6px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--text);
  cursor: pointer;
  line-height: 1.25;
}

.consent__actions button[data-action="accept"] {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}

.consent__actions button:hover {
  border-color: var(--accent-2);
}

.consent__actions button[data-action="accept"]:hover {
  background: var(--secondary);
}

.consent__manage {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 13px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
}

.consent__policy {
  font-size: 12px;
  color: var(--text-muted);
}

.consent__policy a {
  color: var(--accent-2);
}

@media (max-width: 1024px) {
  :root {
    --section-pad: 96px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .category-card {
    min-height: 420px;
  }

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

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

  .hero-offset__panel {
    margin-left: 24px;
  }

  .downtown-card__media img {
    aspect-ratio: 4 / 5;
    min-height: 300px;
  }
}

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

  .brand-row {
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
  }

  .nav-row {
    display: none;
    border-top: 1px solid var(--border);
    padding: 8px 0 16px;
  }

  .nav-row.is-open {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-links a {
    display: block;
    padding: 12px 4px;
    border-bottom: 1px solid var(--border);
  }

  .hero-offset {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .hero-offset__media {
    order: 1;
  }

  .hero-offset__media img {
    min-height: 280px;
    aspect-ratio: 16 / 10;
  }

  .hero-offset__panel {
    order: 2;
    margin: -40px 16px 0;
    max-width: none;
  }

  .about-split,
  .about-split__copy,
  .editorial-grid,
  .adults-layout,
  .contact-layout,
  .masonry,
  .downtown-grid {
    grid-template-columns: 1fr;
  }

  .masonry .venue-card:nth-child(even) {
    margin-top: 0;
  }

  .adults-index {
    position: static;
  }

  .adults-index ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    list-style: none;
    padding: 0;
  }

  .sitemap-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

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

  .container {
    width: min(100% - 32px, var(--max));
  }

  .look-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .band-venue__media img {
    aspect-ratio: 16 / 10;
  }

  .downtown-grid .downtown-card:last-child:nth-child(odd) {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .consent {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .consent::after {
    display: none;
  }

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

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .header-inner {
    width: min(100% - 24px, var(--max));
  }

  .container {
    width: min(100% - 24px, var(--max));
  }

  .hero-offset__panel {
    margin: -28px 12px 0;
    padding: 28px 22px;
  }

  .venue-card__body,
  .downtown-card__body {
    padding: 24px 20px 28px;
  }

  .contact-form,
  .confirm-panel {
    padding: 28px 20px;
  }

  .independence {
    padding: 12px 16px;
    font-size: 13px;
  }
}
