:root {
  --bg: #120e0e;
  --surface: #1b1414;
  --surface-alt: #241a1a;
  --text: #f3ece9;
  --text-muted: #b4a29d;
  --border: rgba(243, 236, 233, 0.14);
  --accent: #bf8f4f;
  --accent-2: #9d5a4e;
  --secondary: #2a1e1e;
  --on-accent: #171111;
  --band-dark: #0a0707;
  --radius: 6px;
  --radius-btn: 2px;
  --font-heading: 'Times New Roman', Times, serif;
  --font-body: Verdana, Geneva, sans-serif;
  --max: 1200px;
  --section-pad: 104px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

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

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

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

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

h1 {
  font-size: clamp(40px, 6.2vw, 68px);
  line-height: 1.1;
}

h2 {
  font-size: clamp(26px, 4.2vw, 42px);
}

h3 {
  font-size: clamp(20px, 2.4vw, 28px);
}

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;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.2;
  color: var(--on-accent);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius-btn);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  color: var(--on-accent);
  background: #d4a65e;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
}

.btn--block {
  width: 100%;
}

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

.btn--ghost:hover {
  background: var(--surface-alt);
  color: var(--text);
}

.text-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.text-link:hover {
  color: var(--text);
  border-bottom-color: var(--accent);
}

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

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.4px;
  white-space: nowrap;
}

.brand img {
  width: 36px;
  height: 34px;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

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

.nav__contact {
  justify-self: end;
}

.nav__contact a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
}

.nav__contact a:hover,
.nav__contact a[aria-current="page"] {
  color: var(--on-accent);
  background: var(--accent);
  border-color: var(--accent);
}

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

.hero {
  position: relative;
  min-height: max(420px, 62vh);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 7, 7, 0.55) 0%, rgba(18, 14, 14, 0.88) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 820px);
  padding: 4rem 0;
}

.hero__content h1 {
  margin-bottom: 0.75rem;
}

.hero__content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 38rem;
  margin-inline: auto;
}

.hero__notice {
  margin-top: 1.75rem;
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--text-muted);
  opacity: 0.85;
  max-width: 36rem;
  margin-inline: auto;
}

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

.section--band {
  background: var(--band-dark);
}

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

.section__intro {
  max-width: 40rem;
  margin-bottom: 3rem;
}

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

.page-title {
  padding: calc(var(--section-pad) * 0.72) 0 calc(var(--section-pad) * 0.55);
}

.page-title p {
  color: var(--text-muted);
  max-width: 40rem;
}

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

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

.category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.category-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

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

.category-card__body {
  padding: 1.4rem 1.35rem 1.6rem;
}

.category-card__body h3 {
  margin-bottom: 0.55rem;
}

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

.mission-block {
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
}

.mission-block__quote {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 1.25;
  color: var(--accent);
  margin: 0 0 2rem;
}

.mission-block p {
  color: var(--text-muted);
  text-align: left;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 2.5rem;
  align-items: end;
}

.photo-strip__text p {
  color: var(--text-muted);
}

.photo-strip__figure {
  margin: 0;
}

.photo-strip__figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.3s ease;
}

.photo-strip__figure:hover img {
  transform: scale(1.02);
}

.photo-strip__figure figcaption {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.arrival-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.arrival-note {
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--border);
}

.arrival-note h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.arrival-note p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

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

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

.venue-band:last-of-type {
  border-bottom: none;
}

.venue-band__inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.venue-band__photo {
  width: min(100% - 48px, var(--max));
  margin: 0 auto 2rem;
  aspect-ratio: 1 / 1;
  max-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
}

.venue-band__photo--wide {
  aspect-ratio: 16 / 9;
  max-height: 560px;
}

.legal-content [data-cookie-settings] {
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
}

.venue-band__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.venue-band__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.85rem;
}

.venue-band__meta .middot {
  display: none;
}

.venue-band__meta strong {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 1.25;
}

.venue-band__region {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.venue-band__city {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

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

.venue-band .btn {
  max-width: 320px;
  width: 100%;
}

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

.quiet-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.quiet-card .venue-band__photo {
  width: 100%;
  margin: 0;
  max-height: none;
  border-radius: 0;
}

.quiet-card__body {
  padding: 1.5rem 1.5rem 1.65rem;
  text-align: center;
}

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

.row-card {
  display: grid;
  grid-template-columns: 40% 1fr;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.row-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.row-card--flip {
  grid-template-columns: 1fr 40%;
}

.row-card--flip .row-card__media {
  order: 2;
}

.row-card--flip .row-card__body {
  order: 1;
}

.row-card__media {
  min-height: 280px;
  overflow: hidden;
}

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

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

.row-card__body {
  padding: 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
}

.row-card__loc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.row-card__body p {
  color: var(--text-muted);
}

.catalog-close {
  padding: 3rem 0 var(--section-pad);
  color: var(--text-muted);
  max-width: 40rem;
}

.editorial-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}

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

.editorial-band--flip .editorial-band__aside {
  order: -1;
}

.editorial-band__aside {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}

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

.editorial-band__copy h2 {
  margin-bottom: 1rem;
  max-width: 38rem;
  margin-inline: 0;
}

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

.contact-intro {
  background: var(--surface-alt);
  padding: var(--section-pad) 0 calc(var(--section-pad) * 0.55);
}

.contact-intro p {
  color: var(--text-muted);
  max-width: 36rem;
}

.contact-email {
  margin-top: 1.25rem;
}

.contact-form-wrap {
  padding: calc(var(--section-pad) * 0.55) 0 var(--section-pad);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
  max-width: 760px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

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

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

.agree-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.65rem;
}

.agree-row input {
  margin-top: 0.3rem;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--accent);
}

.agree-row label {
  flex: 1;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.agree-row .field-error {
  flex-basis: 100%;
  color: var(--accent-2);
  font-size: 0.88rem;
}

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

.form-status {
  grid-column: 1 / -1;
  color: var(--accent-2);
  font-size: 0.92rem;
}

.confirm-panel {
  max-width: 560px;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.confirm-panel h2 {
  margin-bottom: 0.75rem;
}

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

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

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

.legal-content h3 {
  margin-top: 1.5rem;
  font-size: 1.15rem;
}

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

.legal-content ul {
  padding-left: 1.25rem;
  margin: 0 0 1.1em;
}

.sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0 0 var(--section-pad);
}

.sitemap-list li {
  border-bottom: 1px solid var(--border);
}

.sitemap-list a {
  display: block;
  padding: 1.1rem 0;
  color: var(--text);
  text-decoration: none;
  font-size: 1.05rem;
}

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

.site-footer {
  background: var(--surface-alt);
  margin-top: auto;
}

.footer-independence {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 1.1rem 0 0;
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--text-muted);
  opacity: 0.9;
}

.footer-upper {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 2.5rem 0 2.75rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
}

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

.footer-about,
.footer-blurb {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 3rem;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

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

.footer-lower {
  background: var(--band-dark);
  padding: 1.5rem 0 1.75rem;
  text-align: center;
}

.footer-lower .copyright {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-lower .cookie-settings-wrap {
  margin-top: 0.65rem;
}

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

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

.consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
  padding: 1.25rem 1.5rem;
}

.consent[hidden] {
  display: none;
}

.consent__inner {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.2fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

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

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

.consent__divider {
  width: 1px;
  align-self: stretch;
  background: var(--border);
}

.consent__controls {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.consent__toggles {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.consent__toggle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
}

.consent__toggle-label {
  font-size: 0.82rem;
  color: var(--text);
}

.consent__toggle-desc {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.consent__switch {
  position: relative;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
}

.consent__switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.consent__slider {
  position: absolute;
  inset: 0;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.consent__slider::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.consent__switch input:checked + .consent__slider {
  background: var(--accent);
  border-color: var(--accent);
}

.consent__switch input:checked + .consent__slider::before {
  transform: translateX(18px);
  background: var(--on-accent);
}

.consent__switch input:disabled + .consent__slider {
  opacity: 0.7;
  cursor: not-allowed;
}

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

.consent__actions button {
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1.25;
  padding: 0.7rem 0.45rem;
  border-radius: var(--radius-btn);
  border: 1px solid var(--border);
  background: var(--secondary);
  color: var(--text);
  cursor: pointer;
}

.consent__actions button:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.consent__actions .consent__accept {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}

.consent__manage {
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0;
  align-self: start;
}

.consent--compact .consent__toggles {
  display: none;
}

.consent--expanded .consent__manage {
  display: none;
}

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

  .photo-strip {
    gap: 1.75rem;
  }

  .footer-upper {
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav__links,
  .nav__contact {
    display: none;
  }

  .site-header {
    position: sticky;
  }

  .nav.is-open {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 1rem;
  }

  .nav.is-open .brand {
    order: 0;
  }

  .nav.is-open .nav__toggle {
    order: 1;
    margin-left: auto;
  }

  .nav.is-open .nav__links {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-basis: 100%;
    background: var(--surface);
    padding: 0.75rem 0 0.35rem;
    gap: 0.35rem;
  }

  .nav.is-open .nav__contact {
    order: 3;
    display: block;
    flex-basis: 100%;
    padding: 0.35rem 0 0.25rem;
  }

  .nav.is-open .nav__contact a {
    display: inline-block;
  }

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

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

  .consent__divider {
    width: 100%;
    height: 1px;
  }
}

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

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

  .row-card,
  .row-card--flip {
    grid-template-columns: 1fr;
  }

  .row-card--flip .row-card__media,
  .row-card--flip .row-card__body {
    order: initial;
  }

  .row-card__media {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

  .row-card__body {
    padding: 1.5rem;
  }

  .photo-strip {
    grid-template-columns: 1fr;
  }

  .editorial-band,
  .editorial-band--flip {
    grid-template-columns: 1fr;
  }

  .editorial-band--flip .editorial-band__aside {
    order: initial;
  }

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

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

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

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

@media (max-width: 480px) {
  .consent {
    padding: 1rem;
  }

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

  .venue-band__photo {
    aspect-ratio: 1 / 1;
  }

  .hero__content {
    width: min(100% - 32px, 820px);
  }
}
