:root {
  --bg: #faf5ef;
  --surface: #ffffff;
  --surface-alt: #f0e6da;
  --text: #241c14;
  --text-muted: #645648;
  --border: rgba(36, 28, 20, 0.12);
  --accent: #a8533a;
  --accent-2: #4f6b52;
  --secondary: #3a2c20;
  --on-accent: #ffffff;
  --dark: #2a2017;
  --radius: 0px;
  --btn-radius: 0px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: Rockwell, "Courier Bold", Georgia, serif;
  --font-body: "Segoe UI", Arial, sans-serif;
  --max: 1040px;
  --section-pad: 68px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.58;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

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

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

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

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

h1 {
  font-size: clamp(32px, 4.8vw, 50px);
}

h2 {
  font-size: clamp(22px, 3.2vw, 32px);
}

h3 {
  font-size: clamp(18px, 2.4vw, 22px);
}

.kicker {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

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

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 52px;
  width: min(100% - 1.5rem, 1200px);
  margin-inline: auto;
}

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

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

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

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

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

.nav-contact {
  justify-self: end;
}

.nav-contact a {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--border);
  background: var(--surface-alt);
}

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

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

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

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

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

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7rem 1.15rem;
  border: 1px solid var(--accent);
  border-radius: var(--btn-radius);
  background: var(--accent);
  color: var(--on-accent);
  cursor: pointer;
  line-height: 1.2;
}

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

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

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

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

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 32, 23, 0.55) 0%, rgba(42, 32, 23, 0.78) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: min(100% - 2rem, 720px);
  padding: 3rem 0;
}

.hero__content .kicker {
  color: rgba(250, 245, 239, 0.75);
}

.hero__content h1 {
  color: var(--on-accent);
  margin-bottom: 1rem;
}

.hero__content p {
  color: rgba(250, 245, 239, 0.9);
  font-size: 1.05rem;
  max-width: 38rem;
  margin-inline: auto;
}

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

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

.section--dark {
  background: var(--dark);
  color: rgba(250, 245, 239, 0.88);
}

.section--tight-top {
  padding-top: 0;
}

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

.section--dark .kicker {
  color: rgba(250, 245, 239, 0.55);
}

.cat-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 320px;
}

.cat-band:nth-child(even) .cat-band__media {
  order: 2;
}

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

.cat-band__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 2.75rem;
  background: var(--bg);
}

.cat-band:nth-child(even) .cat-band__body {
  background: var(--surface-alt);
}

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

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

.about-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) 1.4fr;
  gap: 2.5rem;
  align-items: start;
}

.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.about-cols p + p {
  margin-top: 1rem;
}

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

.regions-comp p {
  max-width: 48ch;
  margin: 0 auto 2.5rem;
  color: rgba(250, 245, 239, 0.75);
}

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

.regions-names li {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--on-accent);
  line-height: 1.15;
}

.photo-strip__intro {
  max-width: 52ch;
  margin-bottom: 1.75rem;
  color: var(--text-muted);
}

.mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr 0.95fr;
  grid-template-rows: 180px 220px;
  gap: 0.65rem;
}

.mosaic img:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.mosaic img:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.mosaic img:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.mosaic img:nth-child(4) {
  grid-column: 3;
  grid-row: 1 / 3;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.mosaic img:nth-child(5) {
  grid-column: 4;
  grid-row: 1 / 3;
  height: 100%;
  width: 100%;
  object-fit: cover;
  margin-top: 2rem;
  max-height: calc(100% - 2rem);
}

.amenities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2.5rem;
  list-style: none;
}

.amenities-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.amenities-list strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.25rem;
  letter-spacing: -0.3px;
}

.amenities-list span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.page-title {
  padding: 2.75rem 0 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface-alt);
}

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

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

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

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

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

.venue-card--band {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 1rem;
  max-width: 780px;
  margin-inline: auto;
}

.venue-card--band img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  margin-bottom: 1.25rem;
}

.venue-card--band .venue-body {
  text-align: center;
  padding: 0 0.5rem 0.25rem;
}

.venue-card--band h2 {
  font-size: clamp(20px, 2.8vw, 26px);
  margin-bottom: 0.35rem;
}

.venue-meta {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.venue-card--band .venue-body h2,
.venue-card--edge .venue-body h2 {
  display: block;
}

.venue-card--band .venue-body,
.venue-card--edge .venue-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

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

.venue-card--band .venue-actions {
  border-top: 1px solid var(--border);
  padding-top: 1.1rem;
  margin-top: 0.25rem;
}

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

.venue-card--edge {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.venue-card--edge img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.venue-card--edge .venue-body {
  padding: 1.75rem 1.5rem 0.5rem;
  background: var(--surface);
  flex: 1;
}

.venue-card--edge h2 {
  font-size: clamp(18px, 2.4vw, 22px);
  margin-bottom: 0.3rem;
}

.venue-card--edge .venue-body p {
  color: var(--text-muted);
}

.venue-card--edge .venue-meta {
  margin-bottom: 0.85rem;
}

.venue-card--edge > .btn {
  align-self: flex-start;
  margin: 0 1.5rem 1.5rem;
}

.catalog-close {
  padding: 0 0 var(--section-pad);
  color: var(--text-muted);
  max-width: 58ch;
  margin-inline: auto;
  text-align: center;
}

.editorial {
  padding: var(--section-pad) 0 calc(var(--section-pad) + 1rem);
}

.editorial-col {
  max-width: 70ch;
  margin-inline: auto;
}

.editorial-col section {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.editorial-col section:last-child {
  border-bottom: none;
}

.editorial-col h2 {
  margin-bottom: 1rem;
}

.editorial-col p {
  margin-bottom: 1rem;
  color: var(--text);
}

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

.resp-lead {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.45;
  max-width: none;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-heading);
  letter-spacing: -0.3px;
}

.resp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
}

.resp-grid section h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(18px, 2.2vw, 22px);
}

.resp-grid section p {
  margin-bottom: 0.9rem;
  color: var(--text);
}

.contact-intro {
  max-width: 52ch;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--text-muted);
}

.contact-panel {
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 2rem 1.75rem;
}

.form-row {
  margin-bottom: 1.15rem;
}

.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--secondary);
}

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

.form-row textarea {
  min-height: 140px;
  resize: vertical;
}

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

.agree-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

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

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

.field-error {
  display: block;
  color: var(--accent);
  font-size: 13px;
  margin-top: 0.4rem;
}

.form-status[aria-live] {
  margin-top: 0.75rem;
  color: var(--accent);
  font-size: 14px;
}

.contact-email-line {
  text-align: center;
  margin-top: 1.75rem;
  color: var(--text-muted);
  font-size: 14px;
}

.confirm-panel {
  text-align: center;
  padding: 1rem 0.5rem;
}

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

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

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

.legal-body {
  padding: var(--section-pad) 0;
  max-width: 70ch;
  margin-inline: auto;
}

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

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

.legal-body h2 {
  margin: 1.75rem 0 0.65rem;
  font-size: clamp(18px, 2.4vw, 22px);
}

.legal-body h3 {
  margin: 1.25rem 0 0.5rem;
}

.legal-body p {
  margin-bottom: 0.85rem;
}

.legal-body ul {
  margin: 0.5rem 0 1rem 1.25rem;
}

.legal-body li {
  margin-bottom: 0.35rem;
}

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

.sitemap-grid h2 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.sitemap-grid ul {
  list-style: none;
}

.sitemap-grid li {
  margin-bottom: 0.55rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--border);
}

.sitemap-grid a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

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

.site-footer {
  background: var(--dark);
  color: rgba(250, 245, 239, 0.82);
  margin-top: auto;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(160px, 240px) 1fr;
  gap: 2.5rem;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding: 2.75rem 0 2rem;
}

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

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: rgba(250, 245, 239, 0.78);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

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

.footer-brand .brand {
  color: var(--on-accent);
  margin-bottom: 1rem;
}

.footer-brand .brand img {
  filter: brightness(1.1);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 1rem;
  max-width: 48ch;
  color: rgba(250, 245, 239, 0.7);
}

.footer-brand .mailto {
  display: inline-block;
  margin-bottom: 1rem;
  color: rgba(250, 245, 239, 0.9);
  font-size: 14px;
}

.footer-independence {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(250, 245, 239, 0.5);
  border-top: 1px solid rgba(250, 245, 239, 0.12);
  padding-top: 1rem;
  max-width: 56ch;
}

.footer-bar {
  border-top: 1px solid rgba(250, 245, 239, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem 1.5rem;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding: 0.85rem 0 1.15rem;
  font-size: 12px;
}

.footer-bar span {
  color: rgba(250, 245, 239, 0.55);
}

.footer-bar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: center;
}

.footer-bar-links a,
.footer-bar-links button {
  color: rgba(250, 245, 239, 0.7);
  text-decoration: none;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 12px;
  cursor: pointer;
  padding: 0;
}

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

.consent {
  position: fixed;
  z-index: 1000;
  bottom: 1.25rem;
  left: 1.25rem;
  width: min(400px, calc(100vw - 2rem));
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  box-shadow: var(--shadow);
  padding: 1.15rem 1.15rem 1rem;
}

.consent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
  background: var(--accent);
}

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

.consent__copy {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

.consent__actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}

.consent__actions button {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  padding: 0.55rem 0.35rem;
  border: 1px solid var(--border);
  border-radius: var(--btn-radius);
  background: var(--surface-alt);
  color: var(--text);
  cursor: pointer;
}

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

.consent__manage-link {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.consent__copy--tight {
  margin: 0.75rem 0 0;
}

.consent__cats {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.consent__cat {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 13px;
  color: var(--text);
}

.consent__cat input:disabled {
  opacity: 0.7;
}

.consent__back {
  background: none;
  border: none;
  font-size: 12px;
  color: var(--accent);
  cursor: pointer;
  margin-bottom: 0.75rem;
  padding: 0;
  font-family: var(--font-body);
}

@media (max-width: 1024px) {
  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 180px 200px;
  }

  .mosaic img:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .mosaic img:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .mosaic img:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .mosaic img:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
  }

  .mosaic img:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
    margin-top: 0;
    max-height: none;
  }

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

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

  .nav-toggle {
    display: flex;
    justify-self: end;
    grid-column: 3;
  }

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

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

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

  .nav-contact {
    display: none;
  }

  .nav-links .nav-contact-mobile {
    display: block;
  }

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

  .cat-band:nth-child(even) .cat-band__media {
    order: 0;
  }

  .about-cols {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

  .venue-card--band img {
    height: 220px;
  }

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

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

  .consent::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .wrap {
    width: min(100% - 1.25rem, var(--max));
  }

  .hero {
    min-height: 420px;
  }

  .cat-band__body {
    padding: 1.75rem 1.25rem;
  }

  .regions-names {
    gap: 1rem 1.5rem;
    flex-direction: column;
  }

  .mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 0.5rem;
  }

  .mosaic img:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    height: 200px;
    margin-top: 0;
    max-height: none;
  }

  .contact-panel {
    padding: 1.5rem 1.15rem;
  }

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

.nav-contact-mobile {
  display: none;
}

@media (max-width: 900px) {
  .nav-links .nav-contact-mobile {
    display: list-item;
  }
}
