: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;
  --radius-pill: 999px;
  --font-heading: Didot, "Bodoni MT", Georgia, serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 1320px;
  --section-pad: 120px;
  --header-h: 120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

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);
}

p {
  margin: 0 0 1.1em;
}

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

ul,
ol {
  margin: 0 0 1.1em;
  padding-left: 1.25em;
}

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

.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;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.85em 1.6em;
  border-radius: var(--radius-pill);
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

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

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

.btn--text {
  border: none;
  background: none;
  padding: 0;
  border-radius: 0;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.06em;
}

.btn--text:hover {
  background: none;
  color: var(--secondary);
}

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

.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);
}

.header-inner {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  padding: 18px 0 14px;
}

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

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--text);
}

.nav-rule {
  height: 1px;
  background: var(--border);
  margin: 14px 0 12px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25em 0;
  border-bottom: 1px solid transparent;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 24px;
  top: 22px;
}

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

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--text);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.page-main {
  min-height: 50vh;
}

.page-main--offset {
  padding-top: 140px;
}

.hero {
  position: relative;
  padding: 160px 0 100px;
  background: var(--bg);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: end;
  min-height: 62vh;
}

.hero-copy h1 {
  margin-bottom: 0;
  max-width: 14ch;
}

.hero-intro {
  margin-top: 2.5rem;
  margin-left: clamp(40px, 12vw, 160px);
  max-width: 42ch;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-notice {
  margin-top: 2rem;
  margin-left: clamp(40px, 12vw, 160px);
  max-width: 48ch;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-muted);
  opacity: 0.85;
}

.hero-visual {
  justify-self: end;
  position: relative;
  margin-bottom: -60px;
  z-index: 2;
}

.hero-visual img {
  width: min(420px, 100%);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

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

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

.section--dark {
  background: var(--dark);
  color: #f3e8e4;
}

.section--dark h2,
.section--dark h3,
.section--dark .kicker {
  color: #faf6f3;
}

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

.section--dark p,
.section--dark .muted {
  color: rgba(250, 246, 243, 0.78);
}

.section--dark a {
  color: #e8c48a;
}

.section--dark a:hover {
  color: #fff;
}

.section-head {
  max-width: 52ch;
  margin-bottom: 3.5rem;
}

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

.band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
}

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

.band--flip .band-media {
  order: 2;
}

.band--flip .band-copy {
  order: 1;
}

.band-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius) * 2.2);
  border: 1px solid var(--border);
}

.band-copy h2 {
  margin-bottom: 0.5em;
}

.band-copy p {
  color: var(--text-muted);
  margin-bottom: 1.5em;
}

.cta-band {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.cta-panel {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  padding: 2rem;
  background: var(--surface);
}

.cta-panel p,
.section--dark .cta-panel p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

.region-tiles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.region-tile {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  background: var(--surface);
  min-height: 160px;
}

.region-tile h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6em;
}

.region-tile p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

.arrival-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.arrival-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  padding: 2.25rem 1.75rem 1.75rem;
  background: var(--surface);
  overflow: hidden;
  min-height: 200px;
}

.arrival-num {
  position: absolute;
  top: 0.4rem;
  right: 1rem;
  font-family: var(--font-heading);
  font-size: clamp(64px, 8vw, 96px);
  line-height: 1;
  color: var(--border);
  pointer-events: none;
}

.arrival-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 0.5em;
}

.arrival-card p {
  position: relative;
  z-index: 1;
  color: var(--text-muted);
  margin: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 0.25rem;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.step h3 {
  margin-bottom: 0.5em;
}

.step p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.98rem;
}

.page-hero {
  padding: 48px 0 24px;
}

.page-hero h1 {
  margin-bottom: 0.5em;
}

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

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.venue-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2.4);
  box-shadow: 0 18px 40px rgba(36, 20, 23, 0.06);
  overflow: hidden;
  height: 100%;
}

.venue-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.venue-card__title-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.15rem;
  background: rgba(43, 18, 25, 0.72);
  color: #faf6f3;
}

.venue-card__title-bar h2 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 26px);
  color: #faf6f3;
  line-height: 1.2;
}

.venue-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem 1.35rem 1.5rem;
  gap: 0.75rem;
}

.venue-meta {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.venue-card__body p {
  color: var(--text-muted);
  flex: 1;
  margin: 0;
}

.venue-card__body .btn {
  align-self: flex-start;
  margin-top: auto;
}

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

.masonry-card {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  padding: 18px;
  background: var(--surface);
  box-shadow: 0 18px 40px rgba(36, 20, 23, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.masonry-card__media {
  border-radius: var(--radius);
  overflow: hidden;
}

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

.masonry-card--img-bottom .masonry-card__media {
  order: 2;
}

.masonry-card--img-bottom .masonry-card__copy {
  order: 1;
}

.masonry-card--img-bottom .masonry-card__actions {
  order: 3;
}

.masonry-card h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  margin-bottom: 0.35em;
}

.masonry-card__copy p {
  color: var(--text-muted);
  margin: 0;
}

.masonry-card__actions {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: auto;
}

.premier-stack {
  display: flex;
  flex-direction: column;
}

.premier-band {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

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

.premier-band img {
  width: 100%;
  max-height: 520px;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: calc(var(--radius) * 2);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}

.premier-band h2 {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--accent);
}

.premier-band .venue-meta {
  margin-bottom: 1rem;
}

.premier-band p {
  max-width: 62ch;
  margin: 0 auto 1.5rem;
  color: var(--text-muted);
}

.catalog-close {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  max-width: 62ch;
  color: var(--text-muted);
}

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

.editorial-nav {
  position: sticky;
  top: 24px;
  border-left: 1px solid var(--border);
  padding-left: 1.25rem;
}

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

.editorial-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.editorial-nav li {
  margin-bottom: 0.75rem;
}

.editorial-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.4;
}

.editorial-nav a:hover {
  color: var(--accent);
}

.editorial-prose section {
  padding: 0 0 3.5rem;
  scroll-margin-top: 24px;
}

.editorial-prose section + section {
  border-top: 1px solid var(--border);
  padding-top: 3.5rem;
}

.editorial-prose p {
  color: var(--text-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: var(--section-pad);
}

.contact-panel {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  padding: 2rem;
  background: var(--surface);
}

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

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

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

.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;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 1.25rem 0 1.5rem;
}

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

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

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

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

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

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

.confirm-panel {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 2);
  padding: 2rem;
  background: var(--surface-alt);
}

.confirm-panel[hidden] {
  display: none;
}

.legal-body {
  padding-bottom: var(--section-pad);
  max-width: 78ch;
}

.legal-body h1 {
  margin-bottom: 0.35em;
}

.legal-body h2 {
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  font-size: clamp(24px, 3vw, 32px);
}

.legal-body h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

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

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: var(--section-pad);
}

.sitemap-col h2 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

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

.sitemap-col li {
  margin-bottom: 0.65rem;
}

.sitemap-col a {
  text-decoration: none;
  color: var(--text-muted);
}

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

.site-footer {
  background: var(--surface-alt);
  margin-top: 0;
}

.footer-top {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .brand {
  justify-content: flex-start;
  margin-bottom: 1rem;
}

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

.footer-regions {
  margin-top: 1.25rem;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-group h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
  padding-bottom: 0.45rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

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

.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(--dark);
  color: rgba(250, 246, 243, 0.75);
}

.footer-bottom-inner {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  padding: 28px 0 32px;
}

.footer-independence {
  font-size: 12px;
  line-height: 1.6;
  margin: 0 0 1.25rem;
  color: rgba(250, 246, 243, 0.82);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-meta button {
  background: none;
  border: none;
  color: rgba(250, 246, 243, 0.85);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  padding: 0;
}

.footer-meta button:hover {
  color: #fff;
}

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

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

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

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

.consent-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 1000;
  width: min(400px, calc(100vw - 32px));
  background: var(--dark);
  color: #f3e8e4;
  border-radius: calc(var(--radius) * 1.6);
  border: 1px solid rgba(250, 246, 243, 0.12);
  border-bottom: 3px solid var(--accent);
  padding: 1.25rem 1.35rem 1.35rem;
}

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

.consent-banner p {
  margin: 0 0 1rem;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(250, 246, 243, 0.88);
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.consent-actions button {
  font-family: var(--font-body);
  font-size: 13px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(250, 246, 243, 0.35);
  background: transparent;
  color: #faf6f3;
  padding: 0.55em 1em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.consent-actions button:hover,
.consent-actions button:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
  outline: none;
}

.consent-policy {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 12px;
  color: rgba(250, 246, 243, 0.7);
}

.consent-policy:hover {
  color: #fff;
}

.consent-dialog {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(36, 20, 23, 0.45);
}

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

.consent-dialog__panel {
  width: min(420px, 100%);
  background: var(--dark);
  color: #f3e8e4;
  border-radius: calc(var(--radius) * 1.6);
  border: 1px solid rgba(250, 246, 243, 0.12);
  padding: 1.5rem;
}

.consent-dialog__panel h2 {
  color: #faf6f3;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.consent-cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(250, 246, 243, 0.12);
}

.consent-cat:last-of-type {
  border-bottom: none;
  margin-bottom: 1rem;
}

.consent-cat p {
  margin: 0.2rem 0 0;
  font-size: 12px;
  color: rgba(250, 246, 243, 0.65);
}

.consent-cat strong {
  font-size: 14px;
  color: #faf6f3;
}

.consent-cat input {
  width: 18px;
  height: 18px;
}

.consent-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

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

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

  .region-tiles {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .header-inner {
    position: relative;
    padding-right: 56px;
  }

  .brand {
    justify-content: flex-start;
  }

  .nav-rule {
    display: none;
  }

  .nav-row {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    z-index: 120;
  }

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

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .hero-grid,
  .band,
  .band--flip,
  .cta-band,
  .contact-grid,
  .editorial {
    grid-template-columns: 1fr;
  }

  .band--flip .band-media,
  .band--flip .band-copy {
    order: initial;
  }

  .hero-intro,
  .hero-notice {
    margin-left: 0;
  }

  .hero-visual {
    justify-self: start;
    margin-bottom: -40px;
  }

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

  .editorial-nav {
    position: static;
    border-left: none;
    padding-left: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1.25rem;
  }

  .editorial-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
  }

  .editorial-nav li {
    margin: 0;
  }
}

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

  .wrap,
  .header-inner,
  .footer-top,
  .footer-bottom-inner {
    width: min(100% - 32px, var(--max));
  }

  .masonry,
  .arrival-grid,
  .steps,
  .sitemap-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .steps::before {
    display: none;
  }

  .region-tiles {
    grid-template-columns: 1fr 1fr;
  }

  .page-main--offset {
    padding-top: 120px;
  }
}

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

@media (max-width: 560px) {
  .catalog-grid,
  .region-tiles {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 130px 0 72px;
  }

  .hero-visual img {
    width: 100%;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .btn:not(.btn--text) {
    width: 100%;
  }

  .venue-card__body .btn,
  .masonry-card__actions .btn {
    width: 100%;
  }

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