:root {
  --bg: #fbfbf9;
  --surface: #ffffff;
  --surface-alt: #f0f0ec;
  --text: #1b1b1a;
  --text-muted: #585856;
  --border: rgba(27, 27, 26, 0.12);
  --accent: #2e2e2c;
  --accent-2: #9a7b4f;
  --secondary: #3d3d3a;
  --on-accent: #fbfbf9;
  --ink: #1b1b1a;
  --radius: 4px;
  --radius-btn: 2px;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: 'Helvetica Neue', Arial, sans-serif;
  --content-w: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: clamp(-0.6px, -0.056vw, -0.2px);
  line-height: 1.15;
  margin: 0 0 16px;
}

h1 { font-size: clamp(36px, 5.5vw, 58px); }
h2 { font-size: clamp(24px, 3.6vw, 36px); }
h3 { font-size: 20px; letter-spacing: -0.3px; }

p { margin: 0 0 14px; }

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

:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

.container {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 24px;
}

.kicker {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0 0 14px;
}

.section {
  padding: 76px 0;
}

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

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

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

.section--dark p { color: rgba(251, 251, 249, 0.82); }

.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--text-muted); margin: 0; }

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

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

.site-header__bar {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: padding 200ms ease;
}

.site-header.is-scrolled .site-header__bar {
  padding-top: 10px;
  padding-bottom: 10px;
}

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

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

.brand__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 26px;
}

.site-nav a {
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

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

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

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

.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.independence-notice {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 10px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.independence-notice p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-muted);
}

.hero {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 620px;
}

.hero__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 66.6667%;
  overflow: hidden;
}

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

.hero__panel {
  position: relative;
  z-index: 2;
  width: 79%;
  background: var(--surface);
  padding: 88px clamp(28px, 5vw, 76px) 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
}

.hero__panel h1 { margin-bottom: 20px; }

.hero__panel .kicker { margin-bottom: 18px; }

.hero__lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0;
}

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

.cat-row {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr auto;
  gap: 28px;
  align-items: baseline;
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}

.cat-row h3 { font-size: 24px; margin: 0; }

.cat-row p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15.5px;
}

.cat-row__link {
  justify-self: end;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  white-space: nowrap;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--accent-2);
}

.cat-row__link:hover { color: var(--accent-2); }

.blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  background: var(--surface);
}

.block {
  padding: 34px 34px 38px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.block:nth-child(2n) { border-right: 0; }
.block:nth-last-child(-n+2) { border-bottom: 0; }

.block__num {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent-2);
  display: block;
  margin-bottom: 14px;
}

.block h3 { margin-bottom: 10px; }

.block p { margin: 0; color: var(--text-muted); font-size: 15.5px; }

.split {
  display: grid;
  grid-template-columns: minmax(280px, 46%) 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.split__media {
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface);
}

.split__media img { width: 100%; height: auto; }

.split h2 { margin-bottom: 18px; }
.split p { color: var(--text-muted); }
.split p:last-child { margin-bottom: 0; }

.band { text-align: center; }

.band .container { max-width: 760px; }

.band h2 { margin-bottom: 18px; }

.band p {
  font-size: 16.5px;
  margin-bottom: 14px;
}

.band__link {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-accent);
  text-decoration: none;
  border-bottom: 2px solid var(--accent-2);
  padding-bottom: 3px;
}

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

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

.region-row {
  display: grid;
  grid-template-columns: minmax(160px, 280px) 1fr;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.region-row h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.2px;
}

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

.page-head { padding: 64px 0 40px; }
.catalog-section { padding-bottom: 76px; }
.contact-head { text-align: center; }
.page-head h1 { margin-bottom: 16px; }
.page-head .kicker { margin-bottom: 14px; }
.page-head__intro {
  max-width: 68ch;
  color: var(--text-muted);
  font-size: 17px;
  margin: 0;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

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

.venue-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

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

.venue-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 20px;
}

.venue-card__name {
  font-size: 20px;
  margin: 0 0 10px;
  letter-spacing: -0.3px;
}

.venue-card__rule {
  width: 44px;
  height: 2px;
  background: var(--accent-2);
  border: 0;
  margin: 0 0 12px;
}

.venue-card__loc {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0 0 10px;
}

.venue-card__desc {
  color: var(--text-muted);
  font-size: 14.5px;
  margin: 0 0 18px;
}

.venue-card__foot { margin-top: auto; }

.venue-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--border);
}

.venue-link .arrow {
  color: var(--accent-2);
  margin-left: 6px;
}

.venue-link:hover { color: var(--accent-2); border-bottom-color: var(--accent-2); }

.venue-rows { margin-bottom: 56px; }

.venue-row {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 22px;
  margin-bottom: 22px;
}

.venue-row:last-child { margin-bottom: 0; }

.venue-row__thumb {
  width: 108px;
  height: 108px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

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

.venue-row__name { font-size: 21px; margin: 0 0 8px; }

.venue-row__meta {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0 0 10px;
}

.venue-row__desc {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
  max-width: 60ch;
}

.venue-row__foot { justify-self: end; align-self: center; }

.prose { max-width: 760px; }

.prose h1 { margin-bottom: 18px; }

.prose .page-head__intro { margin-bottom: 8px; }

.essay { margin-top: 64px; }

.essay:first-of-type { margin-top: 48px; }

.essay__num {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent-2);
  display: block;
  margin-bottom: 10px;
}

.essay h2 { margin-bottom: 20px; }

.essay p { color: var(--text-muted); margin-bottom: 16px; }
.essay p:last-child { margin-bottom: 0; }

.prose > p.lead {
  font-size: 17px;
  color: var(--text-muted);
}

.closing-note {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 15.5px;
  max-width: 68ch;
}

.closing-note a { color: var(--text); }

.closing-note a:hover { color: var(--accent-2); }

.contact-intro {
  max-width: 640px;
  margin: 0 auto 36px;
  text-align: center;
  color: var(--text-muted);
  font-size: 17px;
}

.contact-panel {
  max-width: 680px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: clamp(28px, 5vw, 52px);
}

.field { margin-bottom: 22px; }

.field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--secondary);
}

.field input[type="text"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  padding: 11px 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
}

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

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

.agree-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
}

.agree-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.agree-row label {
  font-size: 14px;
  color: var(--text);
  margin: 0;
}

.agree-row label a { color: var(--text); }

.form-error {
  margin: -10px 0 18px;
  font-size: 13.5px;
  color: #8a2f22;
}

.form-error[hidden] { display: none; }

.form-status {
  margin: 0 0 18px;
  font-size: 14px;
  color: #8a2f22;
}

.form-status[hidden] { display: none; }

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--on-accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 26px;
  cursor: pointer;
}

.btn:hover { background: var(--secondary); border-color: var(--secondary); }
.btn:disabled { opacity: 0.6; cursor: default; }

.contact-mail {
  text-align: center;
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-muted);
}

.contact-mail a { color: var(--text); }

.confirm-panel {
  max-width: 680px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: clamp(28px, 5vw, 48px);
  text-align: center;
}

.confirm-panel h2 { font-size: 26px; margin-bottom: 14px; }

.confirm-panel p { color: var(--text-muted); max-width: 48ch; margin: 0 auto 14px; }

.confirm-panel .reference {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--text);
  letter-spacing: 0.06em;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: inline-block;
  padding: 8px 18px;
  margin: 8px 0 22px;
}

.legal {
  max-width: 760px;
  padding: 56px 0 72px;
}

.legal h1 { margin-bottom: 10px; }

.legal .updated {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 30px;
}

.legal h2 {
  font-size: 24px;
  margin: 38px 0 12px;
  letter-spacing: -0.3px;
}

.legal h3 {
  font-size: 18px;
  margin: 26px 0 10px;
}

.legal p { color: var(--text-muted); margin-bottom: 14px; }
.legal p:last-child { margin-bottom: 0; }

.legal a { color: var(--text); }
.legal a:hover { color: var(--accent-2); }

.cookie-settings-inline {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}

.cookie-settings-inline p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 16px;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 56px;
}

.sitemap-group h2 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.2px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--text);
}

.sitemap-group ul { list-style: none; margin: 0; padding: 0; }

.sitemap-group li {
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}

.sitemap-group a {
  text-decoration: none;
  font-size: 15px;
  color: var(--text);
}

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

.site-footer {
  background: var(--ink);
  color: rgba(251, 251, 249, 0.78);
}

.site-footer a { color: rgba(251, 251, 249, 0.78); text-decoration: none; }
.site-footer a:hover { color: var(--on-accent); }

.site-footer__grid {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 64px 24px 44px;
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) 1fr 1fr;
  gap: 44px;
}

.site-footer .brand { margin-bottom: 18px; }
.site-footer .brand__name { color: var(--on-accent); }
.site-footer .brand img { width: 38px; height: 38px; }

.site-footer__blurb {
  font-size: 14px;
  line-height: 1.6;
  max-width: 40ch;
  margin-bottom: 14px;
}

.site-footer__adults {
  font-size: 12.5px;
  color: rgba(251, 251, 249, 0.5);
  margin-bottom: 14px;
}

.site-footer__notice {
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(251, 251, 249, 0.5);
  border: 1px solid rgba(251, 251, 249, 0.18);
  border-radius: var(--radius);
  padding: 12px 14px;
  margin-bottom: 16px;
}

.site-footer__mail { font-size: 13.5px; }

.site-footer__heading {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: var(--on-accent);
  margin: 0 0 16px;
}

.site-footer__group ul { list-style: none; margin: 0; padding: 0; }

.site-footer__group li { padding: 7px 0; }

.site-footer__group a {
  font-size: 14px;
  border-bottom: 1px solid transparent;
}

.site-footer__bottom {
  border-top: 1px solid rgba(251, 251, 249, 0.16);
}

.site-footer__bottom-in {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer__copy {
  margin: 0;
  font-size: 12.5px;
  color: rgba(251, 251, 249, 0.5);
}

.site-footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
}

.site-footer__bottom-links a { color: rgba(251, 251, 249, 0.6); }
.site-footer__bottom-links a:hover { color: var(--on-accent); }

.site-footer__cookie {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: rgba(251, 251, 249, 0.6);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__cookie:hover { color: var(--on-accent); }

.consent-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(27, 27, 26, 0.38);
}

.consent-overlay[hidden] { display: none; }

.consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 20px 22px 18px;
}

.consent-banner[hidden] { display: none; }

.consent-banner h2 {
  font-size: 18px;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.consent-banner p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 6px;
}

.consent-banner__copy a { color: var(--text); }

.consent-banner__controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 16px;
}

.consent-btn {
  background: var(--accent);
  color: var(--on-accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  cursor: pointer;
}

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

.consent-textlink {
  background: none;
  border: 0;
  padding: 4px 0;
  margin: 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.consent-textlink:hover { color: var(--accent-2); }

.consent-dialog {
  position: fixed;
  z-index: 110;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(460px, calc(100vw - 32px));
  background: var(--surface);
  border: 1px solid var(--text);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  padding: 26px 26px 22px;
}

.consent-dialog[hidden] { display: none; }

.consent-dialog h2 {
  font-size: 20px;
  margin-bottom: 6px;
}

.consent-dialog__lede {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0 0 18px;
}

.consent-cat {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid var(--border);
}

.consent-cat input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.consent-cat strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.consent-cat span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.consent-cat--locked input { opacity: 0.55; }

.consent-dialog__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--text);
}

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

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .nav-toggle__bar { transition: none; }
}

@media (min-width: 900px) {
  .consent-banner {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: 400px;
  }
}

@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(--text);
    display: none;
  }

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

  .site-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 18px;
  }

  .site-nav a {
    display: block;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
  }

  .site-nav a[aria-current="page"] {
    border-bottom: 1px solid var(--border);
    box-shadow: inset 0 -2px 0 var(--accent-2);
  }

  .hero { display: block; min-height: 0; }

  .hero__media {
    position: relative;
    inset: auto;
    width: 100%;
    height: 46vh;
    min-height: 280px;
  }

  .hero__panel {
    width: 100%;
    padding: 52px 24px 56px;
  }

  .venue-grid { grid-template-columns: repeat(2, 1fr); }

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

  .split__media { order: -1; }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand { grid-column: 1 / -1; }
}

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

  .cat-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cat-row__link { justify-self: start; }

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

  .block { border-right: 0; }
  .block:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .block:last-child { border-bottom: 0; }

  .venue-row {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .venue-row__thumb { width: 84px; height: 84px; }

  .venue-row__foot {
    grid-column: 1 / -1;
    justify-self: start;
    padding-left: 110px;
  }

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

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

  .site-footer__bottom-in { flex-direction: column; align-items: flex-start; }
}

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

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

  .venue-row__foot { padding-left: 0; }
}
