:root {
  --bg: #0f0e11;
  --surface: #17161b;
  --surface-alt: #201e25;
  --text: #f1eff3;
  --text-muted: #a9a4b0;
  --border: rgba(241, 239, 243, 0.14);
  --accent: #c98d92;
  --accent-2: #7f8fa8;
  --secondary: #242229;
  --on-accent: #131216;
  --band-dark: #09080b;
  --radius: 0px;
  --radius-btn: 999px;
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1240px;
  --section-pad: 128px;
  --header-h: 88px;
}

*,
*::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.75;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease, box-shadow 0.2s ease;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.15;
  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);
}

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

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

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

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

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

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

.btn:hover {
  background: var(--surface-alt);
  color: var(--text);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

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

.btn--accent:hover {
  background: #d9a3a7;
  color: var(--on-accent);
  box-shadow: 0 8px 28px rgba(201, 141, 146, 0.25);
}

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

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

.independence-notice {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  padding: 0.55rem 0;
}

.independence-notice p {
  width: min(100% - 48px, var(--max-width));
  margin-inline: auto;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
}

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

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

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

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

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

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

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

.nav-links a {
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.02em;
  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);
}

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

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

.hero {
  padding-bottom: 0;
}

.hero-letterbox {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  background: var(--band-dark);
}

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

.hero-copy {
  width: min(100% - 48px, 820px);
  margin: 4.5rem auto 0;
  text-align: center;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}

.hero-copy .kicker {
  margin-bottom: 1.25rem;
}

.hero-copy p {
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

.page-title p {
  max-width: 640px;
  margin-top: 1.25rem;
  color: var(--text-muted);
}

.category-rows {
  display: flex;
  flex-direction: column;
}

.category-row {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

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

.category-row h3 {
  font-size: clamp(22px, 2.5vw, 28px);
}

.category-row p {
  color: var(--text-muted);
  margin: 0;
}

.timeline {
  position: relative;
  padding-left: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: 0.55rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-4px);
}

.timeline-item h3 {
  margin-bottom: 0.75rem;
}

.timeline-item p {
  color: var(--text-muted);
  max-width: 640px;
}

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

.look-block .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent);
  letter-spacing: -1px;
  display: block;
  margin-bottom: 0.75rem;
}

.look-block h3 {
  margin-bottom: 0.85rem;
}

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

.testimonials-band {
  background: var(--surface-alt);
  padding: var(--section-pad) 0;
}

.testimonial {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

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

.testimonial blockquote {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.5px;
  font-weight: 500;
  max-width: 900px;
}

.testimonial cite {
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  position: relative;
}

.mission-grid::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
}

.mission-grid p {
  color: var(--text-muted);
  margin-top: 1rem;
}

.mission-grid h2 {
  margin-bottom: 0.5rem;
}

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

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

.venue-card > .btn {
  margin-top: auto;
}

.venue-card__photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--band-dark);
}

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

.venue-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1rem;
}

.venue-card__meta {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.venue-card__meta span {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0;
}

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

.venue-card--bottom .venue-card__body {
  order: 0;
}

.venue-card--bottom .venue-card__photo {
  order: 1;
}

.venue-card--bottom .btn {
  order: 2;
  margin: 0 1.75rem 1.75rem;
  width: calc(100% - 3.5rem);
}

.venue-card--top .btn {
  margin: 0 1.75rem 1.75rem;
  width: calc(100% - 3.5rem);
}

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

.card-inset {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-inset__photo {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 1.25rem;
  background: var(--band-dark);
}

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

.card-inset h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.card-inset .loc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

.card-inset p {
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.25rem;
}

.card-inset__foot {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  margin-top: auto;
}

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

.band-venue {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.band-venue__photo {
  overflow: hidden;
  aspect-ratio: 21 / 9;
  margin-bottom: 2rem;
  background: var(--band-dark);
}

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

.band-venue__content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1rem 0.5rem;
}

.band-venue__content h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  margin-bottom: 0.5rem;
}

.band-venue__content .loc {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

.band-venue__foot {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.catalog-close {
  margin-top: var(--section-pad);
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  max-width: 720px;
}

.method-lead {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.35;
  letter-spacing: -0.5px;
  max-width: 100%;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 5rem;
}

.method-block h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 1.25rem;
}

.method-block p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.notes-stack {
  display: flex;
  flex-direction: column;
  gap: 5.5rem;
}

.notes-item .num-kicker {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.notes-item h2 {
  margin-bottom: 1.5rem;
}

.notes-item p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 720px;
}

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

.contact-intro p {
  max-width: 640px;
  color: var(--text-muted);
  margin-top: 1.25rem;
}

.contact-email {
  margin-top: 1.5rem;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.5px;
}

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

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

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

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

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

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

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

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

.form-agree {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.form-error {
  color: var(--accent);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: none;
}

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

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

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

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

.confirm-panel p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.confirm-panel .ref {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 1.25rem;
}

.legal-body {
  padding: calc(var(--section-pad) * 0.7) 0 var(--section-pad);
  max-width: 800px;
}

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

.legal-body > p:first-of-type {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.legal-body h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 2.75rem 0 1rem;
}

.legal-body h3 {
  margin: 1.75rem 0 0.75rem;
}

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

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

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: var(--section-pad);
}

.sitemap-group h2 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

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

.sitemap-group a {
  color: var(--text);
  font-size: 1.05rem;
}

.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;
  }
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 5rem 0 0;
  margin-top: 0;
}

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

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

.footer-group h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

.footer-group a,
.footer-group button {
  color: var(--text);
  font-size: 0.95rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
}

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

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

.footer-brand p {
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 1.25rem;
}

.footer-regions {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1.5rem;
}

.footer-mail {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: -0.5px;
  color: var(--text);
  margin: 0 auto 2.5rem;
  text-align: center;
  width: min(100% - 48px, var(--max-width));
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 2rem 0 2.5rem;
  text-align: center;
  width: min(100% - 48px, var(--max-width));
  margin-inline: auto;
}

.footer-bottom .independence-copy {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 1.25rem;
  line-height: 1.5;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.25rem;
  list-style: none;
}

.footer-legal a,
.footer-legal button {
  font-size: 13px;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
}

.footer-legal a:hover,
.footer-legal button:hover {
  color: var(--accent);
}

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

.consent-banner {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1000;
  width: min(380px, calc(100vw - 2.5rem));
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  padding: 1.35rem;
  display: none;
}

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

.consent-banner p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.15rem;
}

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

.consent-cats {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

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

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

.consent-cat-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.consent-cat-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.consent-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.consent-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

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

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

.consent-switch input:checked + .slider {
  background: var(--accent);
}

.consent-switch input:checked + .slider::before {
  transform: translateX(20px);
  background: var(--on-accent);
}

.consent-switch input:disabled + .slider {
  opacity: 0.7;
  cursor: not-allowed;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.consent-actions .btn {
  flex: 1 1 auto;
  padding: 0.7rem 0.9rem;
  font-size: 12px;
  min-width: 0;
}

.consent-actions .btn--accept {
  order: -1;
  flex: 1 1 100%;
}

.consent-policy {
  display: block;
  margin-top: 0.85rem;
  font-size: 12px;
  color: var(--text-muted);
}

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

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

  .nav-toggle {
    display: flex;
  }

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

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

  .nav-links a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
  }

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

  .site-header {
    position: sticky;
  }

  .nav-inner {
    position: relative;
  }

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

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

  .mission-grid::before {
    display: none;
  }

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

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

  .container,
  .independence-notice p,
  .nav-inner,
  .footer-main,
  .footer-bottom,
  .footer-mail,
  .hero-copy {
    width: min(100% - 32px, var(--max-width));
  }

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

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

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

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

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

  .band-venue__photo {
    aspect-ratio: 16 / 9;
  }
}

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

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

  .consent-actions {
    flex-direction: column;
  }

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

  .consent-actions .btn--accept {
    order: -1;
  }
}

@media (max-width: 600px) {
  .consent-actions {
    flex-direction: column;
  }
}

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

  body {
    font-size: 16px;
  }

  .hero-copy {
    margin-top: 3rem;
    padding-bottom: 3rem;
  }

  .brand-name {
    font-size: 1rem;
  }

  .confirm-panel {
    padding: 2rem 1.25rem;
  }
}
