: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;
  --deep: #09080b;
  --radius: 2px;
  --radius-btn: 6px;
  --font-heading: 'Century Gothic', 'Apple Gothic', 'Segoe UI', sans-serif;
  --font-body: Verdana, Geneva, sans-serif;
  --max-w: 1400px;
  --section-pad: 136px;
  --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: 16px;
  line-height: 1.8;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

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

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: -1.4px;
  line-height: 1.15;
}

h1 {
  font-size: clamp(46px, 8vw, 90px);
  line-height: 1.0;
}

h2 {
  font-size: clamp(30px, 5.2vw, 52px);
}

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

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

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

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

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

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--accent);
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.link-arrow:hover {
  color: var(--text);
}

.link-arrow::after {
  content: "→";
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
}

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

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

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

.brand__logo {
  width: 36px;
  height: 37px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand__name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

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

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-variant: small-caps;
  color: var(--text-muted);
}

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

.main-wrap {
  padding-top: var(--header-h);
}

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

.hero-quiet__rule {
  width: 64px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-quiet h1 {
  max-width: 16ch;
  margin-bottom: 1.75rem;
  margin-inline: 0;
}

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

.hero-quiet .independence-line {
  margin-top: 2.5rem;
  max-width: 68ch;
}

.independence-line {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-muted);
  opacity: 0.85;
}

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

.category-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}

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

.category-card__body {
  padding: 1.75rem 1.5rem 2rem;
}

.category-card h3 {
  font-size: clamp(22px, 2.5vw, 28px);
  margin-bottom: 0.85rem;
}

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

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

.regions-band__frame {
  max-width: 56ch;
  margin: 0 auto 3.5rem;
  color: var(--text-muted);
}

.regions-type {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem) clamp(2rem, 5vw, 4.5rem);
}

.regions-type span {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 300;
  letter-spacing: -1.4px;
  color: var(--text);
  line-height: 1;
}

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

.photo-strip__copy h2 {
  margin-bottom: 1.25rem;
}

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

.photo-strip__media figcaption {
  margin-top: 0.85rem;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.photo-strip__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}

.testimonials-stack {
  max-width: 860px;
}

.testimonials-stack h2 {
  margin-bottom: 3rem;
}

.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(20px, 2.4vw, 28px);
  font-weight: 300;
  letter-spacing: -0.8px;
  line-height: 1.45;
  margin-bottom: 1rem;
}

.testimonial cite {
  display: block;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

.look-item {
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-left: none;
  border-top: none;
}

.look-item:nth-child(odd) {
  border-left: 1px solid var(--border);
}

.look-item:nth-child(-n + 2) {
  border-top: 1px solid var(--border);
}

.look-item__num {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.look-item h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  margin-bottom: 0.85rem;
}

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

.page-hero {
  padding: clamp(64px, 8vw, 110px) 0 3rem;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin-bottom: 1.25rem;
}

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

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 2rem;
  padding: var(--section-pad) 0;
}

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

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

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

.venue-card__city {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.venue-card h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.venue-card__meta {
  font-size: 13px;
  color: var(--text-muted);
}

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

.venue-card > .btn,
.venue-card > .link-arrow {
  align-self: flex-start;
  margin: 0.75rem 1.5rem 2rem;
}

.masonry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 2rem;
  padding: var(--section-pad) 0;
}

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

.venue-card--flip .venue-card__body {
  padding-bottom: 1.25rem;
}

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

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

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

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

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

.venue-band__city {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.75rem;
}

.venue-band h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 0.75rem;
}

.venue-band__rule {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 1.25rem;
}

.venue-band__meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.venue-band__desc {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

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

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

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

.editorial-block {
  max-width: 760px;
  margin: 0 0 5.5rem;
}

.editorial-block:last-child {
  margin-bottom: 0;
}

.editorial-block .kicker {
  margin-bottom: 0.75rem;
}

.editorial-block h2 {
  margin-bottom: 1.75rem;
}

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

.editorial-block p:last-child {
  margin-bottom: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  padding: var(--section-pad) 0;
  align-items: start;
}

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

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

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

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

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

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

.form-agree {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.form-agree input {
  margin-top: 0.35rem;
  flex-shrink: 0;
  width: auto;
}

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

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

.form-error {
  display: none;
  color: #e8a0a5;
  font-size: 13px;
  margin-top: 0.5rem;
}

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

.form-status {
  margin-top: 1rem;
  color: #e8a0a5;
  font-size: 14px;
}

.contact-confirm {
  background: var(--surface);
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-confirm h2 {
  font-size: clamp(28px, 3vw, 36px);
  margin-bottom: 1rem;
}

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

.contact-confirm__ref {
  font-family: var(--font-heading);
  letter-spacing: 0.12em;
  color: var(--accent);
}

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

.legal-body h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 0.75rem;
  max-width: 760px;
}

.legal-body > p:first-of-type {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 14px;
  max-width: 760px;
}

.legal-body h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  margin: 2.5rem 0 1rem;
  max-width: 760px;
}

.legal-body h3 {
  font-size: 18px;
  margin: 1.75rem 0 0.75rem;
  letter-spacing: -0.5px;
  max-width: 760px;
}

.legal-body p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 760px;
}

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

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

.sitemap-body > p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 56ch;
}

.sitemap-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 0.04em;
}

.sitemap-links a {
  color: var(--text);
}

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

.sitemap-links .sep {
  color: var(--text-muted);
  margin: 0 0.85rem;
  user-select: none;
}

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

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

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

.footer-group h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 0.85rem;
  color: var(--text);
}

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

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

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

.footer-brand {
  max-width: 520px;
}

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

.footer-brand__blurb {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.footer-brand__email {
  font-size: 14px;
}

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

.footer-bottom__notice {
  margin-bottom: 1.25rem;
}

.footer-bottom__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

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

.footer-bottom__controls button {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.consent {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
  width: min(400px, calc(100vw - 48px));
  background: rgba(23, 22, 27, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: none;
}

.consent::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -3px;
  height: 1px;
  background: var(--accent);
}

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

.consent__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.8px;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.consent__text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

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

.consent__cats {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.25rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.consent__cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.consent__cat-info strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.consent__cat-info span {
  font-size: 12px;
  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 i {
  display: block;
  width: 44px;
  height: 24px;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}

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

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

.consent__switch input:checked + i::after {
  transform: translateX(20px);
  background: var(--on-accent);
}

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

.consent__switch input:focus-visible + i {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

.consent__actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
}

.consent__actions button {
  padding: 0.7rem 0.4rem;
  border-radius: var(--radius-btn);
  border: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  background: transparent;
  color: var(--text);
  line-height: 1.3;
}

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

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

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

.consent__manage {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-align: center;
}

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

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

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

  .category-grid {
    gap: 1.5rem;
  }

  .photo-strip {
    gap: 2rem;
  }

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

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

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

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

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

  .catalog-grid,
  .masonry-grid {
    gap: 2.5rem 1.5rem;
  }
}

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

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

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

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

  .look-item,
  .look-item:nth-child(odd),
  .look-item:nth-child(-n + 2) {
    border: 1px solid var(--border);
    border-top: none;
  }

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

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

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

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

  .regions-type {
    gap: 1.5rem 2rem;
  }
}

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

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

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

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

  .brand__name {
    font-size: 12px;
    letter-spacing: 0.12em;
  }

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

  .contact-form,
  .contact-confirm {
    padding: 1.5rem;
  }

  .footer-bottom__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .venue-card--tall .venue-card__media img {
    aspect-ratio: 4 / 5;
  }
}
