:root {
  --bg: #f7f9fa;
  --surface: #ffffff;
  --surface-alt: #eaeff2;
  --text: #15202a;
  --text-muted: #4c5c68;
  --border: rgba(21, 32, 42, 0.12);
  --accent: #2b6a8f;
  --accent-2: #93714a;
  --secondary: #1f3242;
  --on-accent: #ffffff;
  --deep: #122029;
  --radius: 0px;
  --radius-card: 28px;
  --radius-btn: 999px;
  --font-heading: Candara, Optima, 'Segoe UI', sans-serif;
  --font-body: 'Helvetica Neue', Arial, sans-serif;
  --content-max: 1320px;
  --section-pad: 120px;
  --header-h: 120px;
}

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

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

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

a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.15;
  color: var(--text);
}

h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.06;
}

h2 {
  font-size: clamp(28px, 4.6vw, 44px);
}

h3 {
  font-size: clamp(22px, 3vw, 28px);
}

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

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
}

.site-header.is-solid {
  position: sticky;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.site-header__brand-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 24px 14px;
}

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

.site-header:not(.is-solid) .brand-lockup {
  color: var(--on-accent);
}

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

.brand-lockup__name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.site-header__rule {
  height: 1px;
  background: var(--border);
  width: min(100% - 48px, var(--content-max));
  margin: 0 auto;
}

.site-header:not(.is-solid) .site-header__rule {
  background: rgba(255, 255, 255, 0.28);
}

.site-header__nav-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 24px 18px;
  position: relative;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  width: 48px;
  height: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.site-header:not(.is-solid) .nav-toggle {
  border-color: rgba(255, 255, 255, 0.4);
}

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

.site-header:not(.is-solid) .nav-toggle span {
  background: var(--on-accent);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.site-header:not(.is-solid) .nav-links a {
  color: rgba(255, 255, 255, 0.82);
}

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

.site-header:not(.is-solid) .nav-links a:hover,
.site-header:not(.is-solid) .nav-links a[aria-current="page"] {
  color: var(--on-accent);
  border-bottom-color: var(--on-accent);
}

.hero {
  position: relative;
  min-height: max(62vh, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-accent);
  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(18, 32, 41, 0.55) 0%, rgba(18, 32, 41, 0.72) 55%, rgba(18, 32, 41, 0.88) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: min(100% - 48px, 900px);
  padding: 160px 0 80px;
}

.hero .kicker {
  color: rgba(255, 255, 255, 0.7);
}

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

.hero__lead {
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  max-width: 38em;
  margin: 0 auto 1.5rem;
}

.hero__notice {
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  max-width: 42em;
  margin: 0 auto;
}

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

.section--alt {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface-alt) 100%);
}

.section--deep {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.88);
}

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

.section--deep .kicker {
  color: var(--accent-2);
}

.section__intro {
  max-width: 40em;
  margin-bottom: 3rem;
  color: var(--text-muted);
}

.section--deep .section__intro {
  color: rgba(255, 255, 255, 0.72);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.kicker--center {
  text-align: center;
  display: block;
}

.regions-heading {
  text-align: center;
  margin-bottom: 1.25rem;
}

.cookie-settings-wrap {
  margin-top: 2rem;
}

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

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

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

.band__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px clamp(32px, 5vw, 80px);
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-alt) 100%);
}

.band__copy p {
  color: var(--text-muted);
  margin: 1rem 0 1.75rem;
  max-width: 34em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  align-self: flex-start;
}

.text-link:hover {
  border-bottom-color: var(--accent);
  box-shadow: 0 8px 24px rgba(21, 32, 42, 0.08);
}

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

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

.closing-cta p {
  margin-bottom: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
}

.closing-cta .text-link {
  color: var(--on-accent);
  margin-top: 1rem;
  align-self: center;
  margin-inline: auto;
}

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

.regions-type {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3.5rem;
  margin-top: 3rem;
}

.regions-type span {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 52px);
  color: var(--on-accent);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.photo-strip__frame {
  max-width: 42em;
  margin-bottom: 3rem;
  color: var(--text-muted);
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: end;
}

.mosaic img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-card);
}

.mosaic__item:nth-child(1) {
  grid-column: span 2;
}

.mosaic__item:nth-child(1) img {
  height: 280px;
}

.mosaic__item:nth-child(2) {
  grid-column: span 2;
}

.mosaic__item:nth-child(2) img {
  height: 360px;
}

.mosaic__item:nth-child(3) {
  grid-column: span 2;
}

.mosaic__item:nth-child(3) img {
  height: 240px;
}

.mosaic__item:nth-child(4) {
  grid-column: span 3;
}

.mosaic__item:nth-child(4) img {
  height: 300px;
}

.mosaic__item:nth-child(5) {
  grid-column: span 3;
}

.mosaic__item:nth-child(5) img {
  height: 220px;
}

.page-hero {
  padding: calc(var(--header-h) + 80px) 0 60px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface-alt) 100%);
}

.page-hero--compact {
  padding-bottom: 40px;
}

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

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

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
  padding-bottom: var(--section-pad);
}

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

.venue-card:hover {
  box-shadow: 0 18px 48px rgba(21, 32, 42, 0.1);
}

.venue-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.venue-card__body {
  padding: 28px 28px 12px;
  display: flex;
  flex-direction: column;
}

.venue-card--img-top .venue-card__body {
  flex: 1;
}

.venue-card--img-bottom .venue-card__img {
  margin-top: auto;
}

.venue-card__title-line {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 0.85rem;
}

.venue-card__title-line span {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.venue-card__name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  margin-bottom: 0.65rem;
}

.venue-card__rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 1rem;
  border: 0;
}

.venue-card__meta {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.venue-card__desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 1.25rem;
}

.venue-card--editor .venue-card__desc {
  color: var(--text-muted);
}

.venue-card .btn {
  margin: 8px 28px 28px;
  width: calc(100% - 56px);
  text-align: center;
}

.venue-card--editor .text-link {
  margin: 4px 28px 28px;
  align-self: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  background: var(--accent);
  color: var(--on-accent);
  text-decoration: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  line-height: 1.2;
}

.btn:hover {
  background: var(--secondary);
  color: var(--on-accent);
  box-shadow: 0 12px 32px rgba(43, 106, 143, 0.28);
}

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

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

.editorial-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  padding: 40px 0 var(--section-pad);
  align-items: start;
}

.editorial-index {
  position: sticky;
  top: 140px;
  list-style: none;
  border-left: 1px solid var(--border);
  padding-left: 20px;
}

.editorial-index a {
  display: block;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0.45rem 0;
  line-height: 1.45;
}

.editorial-index a:hover,
.editorial-index a:focus {
  color: var(--accent);
}

.editorial-prose section {
  margin-bottom: 4rem;
  scroll-margin-top: 140px;
}

.editorial-prose h2 {
  margin-bottom: 1.25rem;
}

.editorial-prose p {
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  max-width: 46em;
}

.contact-shell {
  padding: 40px 0 var(--section-pad);
  max-width: 640px;
  margin: 0 auto;
}

.contact-shell > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px clamp(24px, 4vw, 48px);
}

.form-field {
  margin-bottom: 1.35rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
  color: var(--text);
}

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

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

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

.agree-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 1.5rem 0 1rem;
}

.agree-row input {
  margin-top: 0.35rem;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

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

.field-error {
  color: #8b2e2e;
  font-size: 0.88rem;
  margin-top: 0.4rem;
  display: none;
}

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

.contact-email-line {
  margin-top: 2rem;
  color: var(--text-muted);
}

.confirm-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px clamp(24px, 4vw, 48px);
}

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

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

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

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

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

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

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

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

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

.sitemap-body > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 40em;
}

.sitemap-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.15rem;
  line-height: 2;
}

.sitemap-row a {
  text-decoration: none;
  color: var(--accent);
  padding: 0 0.35rem;
}

.sitemap-row a:hover {
  text-decoration: underline;
}

.sitemap-row .sep {
  color: var(--text-muted);
  padding: 0 0.2rem;
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 28px 24px 8px;
}

.footer-pill {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 6px 14px;
}

.footer-regions {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  padding: 8px 24px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px 32px;
  width: min(100% - 48px, var(--content-max));
  margin: 0 auto;
  padding: 24px 0 56px;
}

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 28em;
}

.footer-group h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-variant-caps: all-small-caps;
  font-weight: 400;
  color: var(--text);
  padding-bottom: 0.65rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

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

.footer-group li {
  margin-bottom: 0.55rem;
}

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

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

.footer-bottom {
  background: var(--surface-alt);
  padding: 22px 0 28px;
}

.footer-bottom__inner {
  width: min(100% - 48px, var(--content-max));
  margin: 0 auto;
}

.independence-notice {
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  align-items: center;
}

.footer-meta p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-meta button {
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  padding: 0;
}

.footer-meta button:hover {
  color: var(--secondary);
  box-shadow: none;
}

.consent-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.consent-modal {
  background: var(--surface);
  color: var(--text);
  max-width: 520px;
  width: 100%;
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  padding: 28px 28px 24px;
  max-height: min(90vh, 720px);
  overflow-y: auto;
  box-shadow: none;
}

.consent-modal h2 {
  font-size: 1.45rem;
  margin-bottom: 0.65rem;
}

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

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

.consent-cats.is-open {
  display: flex;
}

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

.consent-cat__text strong {
  display: block;
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.consent-cat__text span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

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

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

.consent-switch__ui {
  position: absolute;
  inset: 0;
  background: var(--surface-alt);
  border-radius: 999px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s;
}

.consent-switch__ui::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--surface);
  top: 2px;
  left: 2px;
  transition: transform 0.2s;
  box-shadow: none;
}

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

.consent-switch input:checked + .consent-switch__ui::after {
  transform: translateX(20px);
}

.consent-switch input:disabled + .consent-switch__ui {
  opacity: 0.7;
  cursor: not-allowed;
  background: var(--secondary);
  border-color: var(--secondary);
}

.consent-switch input:focus-visible + .consent-switch__ui {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.consent-actions .btn {
  flex: 1 1 140px;
}

.consent-actions .btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  order: 2;
}

.consent-actions .btn--ghost:hover {
  background: var(--surface-alt);
  box-shadow: 0 8px 20px rgba(21, 32, 42, 0.08);
}

.consent-actions .btn--reject {
  order: 1;
  background: var(--secondary);
}

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

.consent-manage {
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  padding: 8px 0;
  width: 100%;
  text-align: left;
  margin-bottom: 4px;
}

.consent-policy {
  display: block;
  margin-top: 14px;
  font-size: 0.85rem;
}

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

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

  .mosaic {
    grid-template-columns: repeat(4, 1fr);
  }

  .mosaic__item:nth-child(1),
  .mosaic__item:nth-child(2) {
    grid-column: span 2;
  }

  .mosaic__item:nth-child(3) {
    grid-column: span 4;
  }

  .mosaic__item:nth-child(4),
  .mosaic__item:nth-child(5) {
    grid-column: span 2;
  }
}

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

  .site-header__nav-row {
    justify-content: flex-end;
    min-height: 56px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 0;
    z-index: 120;
  }

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

  .nav-links a {
    color: var(--text) !important;
    padding: 12px 14px;
    border-bottom: none;
    border-radius: 8px;
  }

  .nav-links a[aria-current="page"],
  .nav-links a:hover {
    background: var(--surface-alt);
    color: var(--accent) !important;
  }

  .editorial-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .editorial-index {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    border-left: none;
    padding-left: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
  }
}

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

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

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

  .band__media img {
    min-height: 280px;
  }

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

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

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

  .mosaic__item:nth-child(n) {
    grid-column: span 1;
  }

  .mosaic__item:nth-child(3) {
    grid-column: span 2;
  }

  .mosaic__item img {
    height: 200px !important;
  }

  .hero__content {
    padding-top: 140px;
  }
}

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

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

@media (max-width: 480px) {
  .wrap,
  .footer-grid,
  .footer-bottom__inner {
    width: min(100% - 32px, var(--content-max));
  }

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

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

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

  .mosaic__item:nth-child(n) {
    grid-column: span 1;
  }

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