:root {
  --bg: #0d0d0f;
  --surface: #151517;
  --surface-alt: #1d1d20;
  --text: #f0f0f2;
  --text-muted: #a8a8ae;
  --border: rgba(240, 240, 242, 0.15);
  --accent: #c7ccd4;
  --accent-2: #8f7c52;
  --secondary: #222226;
  --on-accent: #111113;
  --deep: #08080a;
  --radius: 10px;
  --radius-btn: 0px;
  --font-heading: Cambria, Georgia, serif;
  --font-body: Calibri, "Segoe UI", Arial, sans-serif;
  --max: 1200px;
  --section-pad: 104px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

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

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, 26px);
}

p {
  margin-bottom: 1em;
}

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

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

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

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

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

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

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

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

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

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

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

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.4px;
}

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

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

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

.nav-links a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-variant: small-caps;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.35rem 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);
}

.independence-notice {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.independence-notice p {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 0.55rem 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-muted);
}

main {
  display: block;
}

.section {
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border);
}

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

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

.section-head {
  margin-bottom: 3rem;
  max-width: 62ch;
}

.section-head h2 {
  margin-bottom: 0.85rem;
}

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

.reveal {
  opacity: 0;
  transition: opacity 240ms ease;
}

.reveal.is-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transition: none;
  }
}

.hero-quiet {
  background: var(--surface-alt);
  padding: clamp(72px, 12vw, 140px) 0;
  border-bottom: 1px solid var(--border);
}

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

.hero-quiet .kicker {
  margin-bottom: 1.1rem;
}

.hero-quiet h1 {
  margin-inline: 0;
  margin-bottom: 1.4rem;
}

.hero-quiet .lede {
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 1.08rem;
  margin: 0;
}

.cat-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  min-height: 420px;
}

.cat-band:last-child {
  border-bottom: 0;
}

.cat-band__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.cat-band__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--surface);
  border-left: 1px solid var(--border);
}

.cat-band--flip .cat-band__media {
  order: 2;
}

.cat-band--flip .cat-band__body {
  order: 1;
  border-left: 0;
  border-right: 1px solid var(--border);
}

.cat-band__body h2 {
  margin-bottom: 0.9rem;
}

.cat-band__body p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 42ch;
}

.closing-cta {
  text-align: center;
  max-width: 58ch;
  margin: 0 auto;
}

.closing-cta h2 {
  margin-bottom: 1rem;
}

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

.closing-cta a {
  display: inline-block;
  margin-top: 0.5rem;
}

.look-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.look-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.75rem;
}

.look-item .num {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--accent-2);
  margin-bottom: 0.7rem;
}

.look-item h3 {
  margin-bottom: 0.65rem;
}

.look-item p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin: 0;
}

.arrival-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.arrival-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-alt);
  padding: 2rem 1.75rem 1.75rem;
  overflow: hidden;
}

.arrival-card .bg-num {
  position: absolute;
  top: 0.4rem;
  right: 0.8rem;
  font-family: var(--font-heading);
  font-size: clamp(64px, 10vw, 96px);
  line-height: 1;
  color: var(--text);
  opacity: 0.07;
  pointer-events: none;
}

.arrival-card h3 {
  position: relative;
  margin-bottom: 0.7rem;
}

.arrival-card p {
  position: relative;
  color: var(--text-muted);
  margin: 0;
}

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

.region-tile {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--secondary);
  padding: 1.5rem;
}

.region-tile h3 {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
}

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

.page-title {
  padding: clamp(56px, 8vw, 96px) 0 3rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface-alt);
}

.page-title .hero-rule {
  width: 48px;
  height: 2px;
  background: var(--accent-2);
  margin-bottom: 1rem;
  border: 0;
}

.page-title h1 {
  margin-bottom: 1rem;
}

.page-title .intro {
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0;
}

.catalog-close {
  padding: 3.5rem 0 var(--section-pad);
  border-top: 1px solid var(--border);
}

.catalog-close p {
  max-width: 58ch;
  color: var(--text-muted);
}

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

.row-card {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

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

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

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

.row-card__body {
  text-align: center;
}

.row-card__body .place {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.row-card__body h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 0.55rem;
}

.row-card__body p {
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 52ch;
  font-size: 0.98rem;
}

.row-card__action {
  flex-shrink: 0;
}

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

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

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

.band-venue__photo {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

.band-venue__photo img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  aspect-ratio: 21 / 9;
}

.band-venue__meta {
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}

.band-venue__meta .sep {
  margin: 0 0.45rem;
  color: var(--accent-2);
}

.band-venue p {
  max-width: 58ch;
  margin: 0 auto 1.5rem;
  color: var(--text-muted);
}



.city-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.city-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  min-height: 340px;
}

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

.city-row--alt .city-row__media {
  order: 2;
}

.city-row--alt .city-row__body {
  order: 1;
  border-right: 1px solid var(--border);
  border-left: 0;
}

.city-row__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.city-row__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.75rem, 4vw, 3rem);
  background: var(--surface);
  border-left: 1px solid var(--border);
}

.city-row__body .kicker {
  margin-bottom: 0.6rem;
}

.city-row__body h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 0.75rem;
}

.city-row__body p {
  color: var(--text-muted);
  margin-bottom: 1.35rem;
}

.editorial-lead {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.55;
  max-width: none;
  color: var(--text);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
}

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

.editorial-block h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  margin-bottom: 1rem;
}

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

.method-stack {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}

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

.method-item h2 {
  margin-bottom: 1.1rem;
}

.method-item p {
  color: var(--text-muted);
  max-width: 68ch;
}

.contact-intro {
  background: var(--surface-alt);
  padding: clamp(56px, 8vw, 96px) 0 3.5rem;
  border-bottom: 1px solid var(--border);
}

.contact-intro .hero-rule {
  width: 48px;
  height: 2px;
  background: var(--accent-2);
  margin-bottom: 1rem;
  border: 0;
}

.contact-intro .intro {
  max-width: 58ch;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.contact-intro .mail {
  margin-top: 1.25rem;
}

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

.contact-form {
  max-width: 820px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

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

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

.form-field label {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

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

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

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

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

.agree-row input {
  margin-top: 0.3rem;
  width: 18px;
  height: 18px;
  accent-color: var(--accent-2);
  flex-shrink: 0;
}

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

.agree-row label a {
  color: var(--accent);
}

.field-error {
  color: #c98989;
  font-size: 0.88rem;
  margin-top: 0.35rem;
  display: none;
}

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

.form-actions {
  margin-top: 1.5rem;
}

.form-status {
  margin-top: 1rem;
  color: #c98989;
  font-size: 0.95rem;
  display: none;
}

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

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

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

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

.confirm-panel .ref {
  color: var(--accent-2);
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
}

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

.legal-body h1 {
  margin-bottom: 0.75rem;
}

.legal-body > .meta {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.legal-body h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  margin: 2.5rem 0 0.9rem;
}

.legal-body h3 {
  margin: 1.5rem 0 0.6rem;
}

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

.legal-body ul {
  padding-left: 1.25rem;
  margin-bottom: 1em;
}

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

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

.sitemap-item a {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
}

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

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

.site-footer {
  background: var(--surface);
  border-top: 2px solid var(--accent-2);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

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

.footer-group h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 0.85rem;
  display: inline-block;
  border-bottom: 2px solid var(--accent-2);
  padding-bottom: 0.25rem;
}

.footer-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-group a,
.footer-brand a.mail {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-group a:hover,
.footer-brand a.mail:hover {
  color: var(--text);
}

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

.footer-brand .blurb {
  color: var(--text-muted);
  max-width: 52ch;
  margin-bottom: 1.25rem;
}

.footer-brand .cookie-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-brand .cookie-btn:hover {
  color: var(--accent-2);
}

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

.footer-bottom .ind-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 72ch;
  margin: 0 auto 1rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.1rem;
  margin-bottom: 1rem;
}

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

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

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

.consent-banner {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1000;
  width: min(380px, calc(100vw - 2rem));
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: none;
}

.consent-banner.is-open {
  display: block;
}

.consent-banner p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.consent-banner .consent-policy {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.consent-actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.consent-actions .btn {
  width: 100%;
}

.consent-manage-link {
  background: none;
  border: 0;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.88rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0.35rem 0;
  align-self: center;
}

.consent-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.consent-dialog-backdrop.is-open {
  display: flex;
}

.consent-dialog {
  width: min(420px, 100%);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.consent-dialog h2 {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.consent-cat {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--border);
}

.consent-cat:last-of-type {
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

.consent-cat h3 {
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}

.consent-cat p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.consent-cat input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  accent-color: var(--accent-2);
  flex-shrink: 0;
}

.consent-cat input:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

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

  .footer-grid {
    gap: 2.5rem;
  }
}

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

  .nav-links {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
  }

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

  .nav-links li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child {
    border-bottom: 0;
  }

  .nav-links a {
    display: block;
    padding: 0.9rem 1.25rem;
    letter-spacing: 0.14em;
  }

  .site-header {
    position: sticky;
  }

  .nav-inner {
    position: relative;
  }

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

  .cat-band {
    grid-template-columns: 1fr;
  }

  .cat-band__body,
  .cat-band--flip .cat-band__body {
    border: 0;
    border-top: 1px solid var(--border);
  }

  .cat-band--flip .cat-band__media,
  .cat-band--flip .cat-band__body {
    order: initial;
  }

  .cat-band__media img {
    min-height: 260px;
  }
}

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

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

  .regions-row {
    grid-template-columns: 1fr;
  }

  .row-card {
    grid-template-columns: 80px 1fr;
    gap: 1rem;
  }

  .row-card__thumb {
    width: 80px;
    height: 80px;
  }

  .row-card__action {
    grid-column: 1 / -1;
  }

  .row-card__action .btn {
    width: 100%;
  }

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

  .city-row,
  .city-row--alt {
    grid-template-columns: 1fr;
  }

  .city-row--alt .city-row__media,
  .city-row--alt .city-row__body {
    order: initial;
  }

  .city-row__body,
  .city-row--alt .city-row__body {
    border: 0;
    border-top: 1px solid var(--border);
  }

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

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

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

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

@media (max-width: 480px) {
  .container,
  .nav-inner,
  .independence-notice p {
    width: min(100% - 28px, var(--max));
  }

  .hero-quiet {
    padding: 56px 0 64px;
  }

  .band-venue__photo img {
    aspect-ratio: 4 / 3;
  }

  .btn {
    padding: 0.8rem 1.1rem;
  }
}
