:root {
  --bg: #faf6f3;
  --surface: #ffffff;
  --surface-alt: #f2e9e4;
  --text: #241417;
  --text-muted: #63494e;
  --border: rgba(36, 20, 23, 0.12);
  --accent: #7b2233;
  --accent-2: #b8860b;
  --secondary: #3d1f26;
  --on-accent: #ffffff;
  --dark: #2b1219;
  --radius: 10px;
  --font-heading: 'Times New Roman', Times, serif;
  --font-body: Verdana, Geneva, sans-serif;
  --max: 1140px;
  --header-h: 72px;
  --notice-h: 36px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  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(--secondary);
}

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

h1 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.12;
}

h2 {
  font-size: clamp(26px, 4vw, 40px);
}

h3 {
  font-size: clamp(20px, 2.5vw, 26px);
}

p {
  margin: 0 0 1.1em;
}

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

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

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 0;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--on-accent);
  box-shadow: 0 6px 18px rgba(36, 20, 23, 0.12);
}

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

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

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

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

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

.independence-notice p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-muted);
  text-align: center;
}

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

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
  padding: 10px 0;
}

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

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

.brand__name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 1.1;
}

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

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  font-variant: small-caps;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

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

.hero {
  position: relative;
  min-height: max(420px, 62vh);
  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(43, 18, 25, 0.55) 0%, rgba(43, 18, 25, 0.72) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 72px 24px;
  max-width: 820px;
}

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

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

.hero__lead {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

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

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

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

.section--dark .kicker {
  color: rgba(255, 255, 255, 0.6);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.78);
}

.section--dark .accordion {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.section--dark .accordion__item {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.section--dark .accordion__btn {
  color: var(--on-accent);
}

.section--dark .accordion__btn::after {
  border-color: var(--accent-2);
}

.section--dark .accordion__panel {
  color: rgba(255, 255, 255, 0.72);
}

.venue-stars--after {
  margin-top: 24px;
}

.section__intro {
  max-width: 640px;
  margin-bottom: 48px;
}

.section__intro h2 {
  margin-bottom: 16px;
}

.page-hero {
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--border);
}

.page-hero__inner {
  max-width: 720px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.category-card:hover {
  box-shadow: 0 10px 28px rgba(36, 20, 23, 0.1);
}

.category-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.category-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card__body {
  padding: 28px 28px 32px;
}

.category-card__body h3 {
  margin-bottom: 12px;
}

.category-card__body p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 18px;
}

.category-card__link {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

.category-card__link:hover {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

.accordion {
  border-top: 1px solid var(--border);
}

.accordion__item {
  border-bottom: 1px solid var(--border);
}

.accordion__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.4px;
  color: var(--text);
}

.accordion__btn::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.25s;
  flex-shrink: 0;
  margin-top: -4px;
}

.accordion__btn[aria-expanded="true"]::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.accordion__panel {
  display: none;
  padding: 0 0 24px;
  color: var(--text-muted);
  max-width: 720px;
}

.accordion__item.is-open .accordion__panel {
  display: block;
}

.region-list {
  border-top: 1px solid var(--border);
}

.region-row {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.region-row__name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.region-row__note {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative;
}

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

.mission-grid__left h2 {
  margin-bottom: 20px;
}

.mission-grid__right {
  color: var(--text-muted);
}

.photo-strip__frame {
  margin-bottom: 36px;
  max-width: 560px;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.1fr;
  grid-template-rows: 220px 280px;
  gap: 16px;
}

.mosaic__cell {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.mosaic__cell:nth-child(1) {
  grid-row: 1 / 3;
}

.mosaic__cell:nth-child(2) {
  grid-row: 1;
}

.mosaic__cell:nth-child(3) {
  grid-row: 1;
}

.mosaic__cell:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.mosaic__cell:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}

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

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

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

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

.venue-band__photo {
  margin-bottom: 32px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.venue-band__photo--square {
  aspect-ratio: 1 / 1;
  max-width: 640px;
  margin-inline: auto 0;
  margin-left: auto;
  margin-right: auto;
}

.venue-band__photo--square img,
.venue-band__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-band__photo--wide {
  aspect-ratio: 16 / 9;
  position: relative;
}

.venue-band__overlay-name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 24px;
  background: rgba(43, 18, 25, 0.72);
  color: var(--on-accent);
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.4px;
  text-align: left;
  margin: 0;
}

.venue-meta {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: -0.4px;
  margin: 0 0 8px;
  color: var(--text);
}

.venue-meta span {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.72em;
}

.venue-stars {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  margin-bottom: 16px;
}

.venue-desc {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 28px;
  font-size: 15px;
}

.catalog-close {
  padding: 64px 0 96px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-muted);
}

.method-band {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

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

.method-band:nth-child(3n) {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.method-band:nth-child(3n) h2,
.method-band:nth-child(3n) .kicker {
  color: var(--on-accent);
}

.method-band:nth-child(3n) .kicker {
  color: rgba(255, 255, 255, 0.55);
}

.method-band:nth-child(3n) p {
  color: rgba(255, 255, 255, 0.78);
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.method-band:nth-child(even) .method-grid {
  direction: rtl;
}

.method-band:nth-child(even) .method-grid > * {
  direction: ltr;
}

.method-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}

.method-band:nth-child(3n) .method-photo {
  border-color: rgba(255, 255, 255, 0.14);
}

.method-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.notes-section:nth-child(3n) {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.notes-section:nth-child(3n) h2,
.notes-section:nth-child(3n) .kicker {
  color: var(--on-accent);
}

.notes-section:nth-child(3n) .kicker {
  color: rgba(255, 255, 255, 0.55);
}

.notes-section:nth-child(3n) p {
  color: rgba(255, 255, 255, 0.78);
}

.notes-section .wrap {
  max-width: 760px;
}

.notes-num {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.notes-section:nth-child(3n) .notes-num {
  color: var(--accent-2);
}

.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 72px 0 96px;
}

.contact-wrap .page-intro {
  margin-bottom: 36px;
}

.contact-email {
  margin: 0 0 36px;
  font-size: 15px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  line-height: 1.4;
}

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

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

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

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

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

.form-error {
  display: none;
  color: var(--accent);
  font-size: 13px;
  margin-top: 8px;
}

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

.form-status {
  display: none;
  margin-top: 16px;
  color: var(--accent);
  font-size: 14px;
}

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

.confirm-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
}

.confirm-panel h2 {
  margin-bottom: 12px;
}

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

.confirm-ref {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--accent);
  margin: 20px 0 28px;
}

.legal-body {
  padding: 72px 0 96px;
}

.legal-body .wrap {
  max-width: 760px;
}

.legal-body h1 {
  margin-bottom: 8px;
}

.legal-body .updated {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 36px;
}

.legal-body h2 {
  margin-top: 40px;
  margin-bottom: 14px;
  font-size: clamp(22px, 3vw, 28px);
}

.legal-body h3 {
  margin-top: 28px;
  margin-bottom: 10px;
}

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

.legal-body ul {
  padding-left: 1.2em;
  margin: 0 0 1.1em;
}

.sitemap-body {
  padding: 72px 0 96px;
}

.sitemap-body .wrap {
  max-width: 900px;
}

.sitemap-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  align-items: center;
  font-size: 16px;
  line-height: 1.9;
}

.sitemap-list a {
  text-decoration: none;
  color: var(--accent);
  padding: 0 4px;
}

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

.sitemap-list .sep {
  color: var(--text-muted);
  padding: 0 10px;
  user-select: none;
}

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

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px 48px;
  margin-bottom: 28px;
}

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

.footer-brand .brand {
  margin-bottom: 14px;
}

.footer-blurb {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  align-items: center;
  max-width: 640px;
  justify-content: flex-end;
}

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

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

.footer-links .sep {
  color: var(--border);
  padding: 0 10px;
  font-size: 13px;
}

.footer-rule {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 0 0 24px;
}

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

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 10px;
  line-height: 1.55;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 0;
  margin-bottom: 12px;
}

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

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

.footer-legal .sep {
  color: var(--border);
  padding: 0 10px;
  font-size: 12px;
}

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

.consent {
  position: fixed;
  z-index: 1000;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-bottom: 0;
  padding: 24px 20px 20px;
  transform: translateY(110%);
  transition: transform 0.32s ease;
  max-height: 92vh;
  overflow-y: auto;
}

.consent.is-open {
  transform: translateY(0);
}

.consent__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.4px;
  margin: 0 0 10px;
}

.consent__text {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 18px;
  line-height: 1.6;
}

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

.consent__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 20px;
}

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

.consent__cat input {
  width: 16px;
  height: 16px;
}

.consent__cat input:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.consent__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.consent__actions .btn {
  order: 2;
}

.consent__actions .btn--accept {
  order: 1;
}

.consent__actions .btn--ghost {
  order: 3;
}

@media (min-width: 600px) {
  .consent__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .consent__actions .btn {
    flex: 1 1 auto;
    min-width: 140px;
  }
}

@media (min-width: 900px) {
  .consent {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: 420px;
    border-bottom: 1px solid var(--border);
    border-radius: var(--radius);
  }
}

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

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

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

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

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

  .mosaic__cell:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
  }
}

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

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 24px;
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

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

  .site-nav a {
    display: block;
    padding: 12px 0;
    font-size: 13px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .method-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .method-band:nth-child(even) .method-grid {
    direction: ltr;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .wrap {
    width: min(100% - 32px, var(--max));
  }

  .region-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .venue-band {
    padding: 48px 0;
  }
}

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

@media (max-width: 480px) {
  .hero {
    min-height: 420px;
  }

  .hero__content {
    padding: 56px 16px;
  }

  .brand__name {
    font-size: 17px;
  }

  .mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
  }

  .mosaic__cell,
  .mosaic__cell:nth-child(n) {
    grid-column: 1;
    grid-row: auto;
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .accordion__btn {
    font-size: 18px;
  }

  .consent {
    padding: 20px 16px 16px;
  }
}
