:root {
  --bg: #f5f7f3;
  --surface: #ffffff;
  --surface-alt: #e9eee5;
  --text: #1a221a;
  --text-muted: #525d51;
  --border: rgba(26, 34, 26, 0.12);
  --accent: #5c7350;
  --accent-2: #9c6f3c;
  --secondary: #2c3a2a;
  --on-accent: #ffffff;
  --deep: #161f16;
  --radius: 20px;
  --radius-sm: 8px;
  --font-heading: 'Book Antiqua', Palatino, Georgia, serif;
  --font-body: Tahoma, Verdana, sans-serif;
  --content: 1180px;
  --section-pad: 108px;
  --header-h: 0px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.78;
  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.18em;
}

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

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

h1 {
  font-size: clamp(40px, 6.5vw, 72px);
  line-height: 1.08;
}

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

h3 {
  font-size: clamp(20px, 2.4vw, 28px);
}

p {
  margin: 0 0 1.1em;
}

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.85em 1.5em;
  border: 1px solid var(--accent);
  border-radius: 0;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--on-accent);
  box-shadow: 0 10px 28px rgba(22, 31, 22, 0.16);
}

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

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

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
  box-shadow: none;
}

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

.independence p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
}

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

.header-brand-row {
  border-bottom: 1px solid var(--border);
}

.header-brand-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--secondary);
}

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: -0.2px;
  font-weight: 500;
}

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

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

.header-nav-row {
  background: var(--surface);
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.15rem 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0.7rem 0;
}

.nav-list a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 0.2rem 0;
  border-bottom: 2px solid transparent;
}

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

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

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

.section {
  padding: var(--section-pad) 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

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

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

.section--deep {
  background: var(--deep);
  color: #d7ddd4;
}

.section--deep h2,
.section--deep h3 {
  color: #f3f6f1;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  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;
  }
}

.hero {
  position: relative;
  min-height: max(62vh, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5f7f3;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.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(22, 31, 22, 0.55) 0%, rgba(22, 31, 22, 0.72) 55%, rgba(22, 31, 22, 0.82) 100%);
}

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

.hero__content .kicker {
  color: #d4b48a;
}

.hero__content h1 {
  color: #f7f9f5;
  margin-bottom: 0.7em;
}

.hero__content p {
  font-size: 1.08rem;
  color: rgba(245, 247, 243, 0.88);
  max-width: 38em;
  margin-inline: auto;
}

.category-rows {
  display: flex;
  flex-direction: column;
}

.category-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.9fr) 1.6fr auto;
  gap: 1.5rem 2rem;
  align-items: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}

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

.category-row h3 {
  margin: 0;
  color: var(--secondary);
}

.category-row p {
  margin: 0;
  color: var(--text-muted);
}

.category-row .row-link {
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.category-row:hover .row-link {
  border-bottom-color: var(--accent);
  box-shadow: none;
}

.category-row:hover {
  box-shadow: none;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
  align-items: start;
}

.mission-grid__left {
  padding-right: 2.5rem;
  border-right: 1px solid var(--border);
}

.arrival-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.arrival-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.35rem 1.6rem;
}

.arrival-note h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75em;
  padding-top: 0.65rem;
  border-top: 1px solid var(--border);
}

.arrival-note p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.photo-strip__intro {
  max-width: 40em;
  margin-bottom: 2.5rem;
}

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

.mosaic figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

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

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

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

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

.mosaic figure:nth-child(4) {
  grid-column: 2 / 4;
  grid-row: 2;
}

.mosaic figure:nth-child(5) {
  grid-column: 4;
  grid-row: 2;
}

.page-hero {
  padding: calc(var(--section-pad) * 0.72) 0 2.5rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

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

.page-hero .lede {
  max-width: 42em;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.catalog-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: var(--section-pad) 0;
}

.venue-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1.5rem 2rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.15rem;
}

.venue-row__thumb {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

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

.venue-row__body {
  text-align: center;
  min-width: 0;
}

.venue-row__body h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  margin: 0 0 0.35em;
  padding-top: 0.55rem;
  border-top: 1px solid var(--border);
  display: inline-block;
}

.venue-row__meta {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.65em;
}

.venue-row__body p {
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 38em;
}

.venue-row__action {
  align-self: stretch;
  display: flex;
  align-items: center;
  border-left: 1px solid var(--border);
  padding-left: 1.5rem;
  margin-left: 0.25rem;
}

.venue-card {
  background: #fbf8f2;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.venue-card__photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.venue-card__kicker {
  margin: 0;
}

.venue-card h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  margin: 0 0 0.35em;
  padding-top: 0.55rem;
  border-top: 1px solid var(--border);
}

.venue-card__meta {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.65em;
}

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

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

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

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

.editorial-lead {
  padding: calc(var(--section-pad) * 0.72) 0 2rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.editorial-lead .lead {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.45;
  color: var(--secondary);
  max-width: 100%;
  margin: 0;
}

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

.editorial-block h2 {
  margin-bottom: 0.7em;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  display: inline-block;
}

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

.legal-body {
  padding: calc(var(--section-pad) * 0.72) 0 var(--section-pad);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

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

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

.legal-body h2 {
  margin-top: 2.2em;
  font-size: clamp(22px, 2.8vw, 30px);
}

.legal-body h3 {
  margin-top: 1.4em;
  font-size: 1.15rem;
}

.sitemap-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: var(--section-pad) 0;
}

.sitemap-item {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) 1.4fr;
  gap: 1rem 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}

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

.sitemap-item strong {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--secondary);
}

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

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

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

.contact-panel {
  width: min(100%, 640px);
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 2rem 1.75rem;
}

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

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

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  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;
}

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

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

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

.form-error {
  display: none;
  color: #8a2f2f;
  font-size: 0.86rem;
  margin-top: 0.4rem;
}

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

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

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

.confirm-panel {
  text-align: center;
}

.confirm-panel h2 {
  margin-bottom: 0.6em;
}

.site-footer {
  background: var(--surface);
  border-top: 2px solid var(--accent);
  color: var(--text);
}

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

.footer-band:last-child {
  border-bottom: none;
}

.footer-brand-band {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand-band .brand {
  margin-bottom: 0.5rem;
}

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

.footer-links-band {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 2rem 1.5rem;
  align-items: start;
}

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

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

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

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

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

.footer-top {
  text-align: right;
  justify-self: end;
  align-self: start;
}

.footer-notices {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
}

.footer-notices .independence-foot {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 52em;
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
}

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

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

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

.footer-adult {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.consent-banner {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 80;
  width: min(380px, calc(100vw - 2rem));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem 1.15rem;
  box-shadow: 0 16px 40px rgba(22, 31, 22, 0.18);
}

.consent-banner[hidden],
.consent-dialog[hidden] {
  display: none !important;
}

.consent-banner h2 {
  font-size: 1.2rem;
  margin: 0 0 0.65em;
}

.consent-banner p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 0.75em;
}

.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.1rem;
  margin-top: 1rem;
}

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

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

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

.consent-dialog {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(22, 31, 22, 0.45);
}

.consent-dialog__panel {
  width: min(420px, 100%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
  max-height: calc(100vh - 2.5rem);
  overflow: auto;
}

.consent-dialog__panel h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75em;
}

.consent-cat {
  border-top: 1px solid var(--border);
  padding: 0.9rem 0;
}

.consent-cat:last-of-type {
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

.consent-cat label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
}

.consent-cat input:disabled {
  cursor: not-allowed;
}

.consent-cat strong {
  display: block;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 0.2em;
}

.consent-cat span {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.consent-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  align-items: center;
}

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

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

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

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

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

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

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

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

  .footer-top {
    grid-column: 1 / -1;
    text-align: left;
    justify-self: start;
  }
}

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

  .header-nav-row {
    display: none;
    border-top: 1px solid var(--border);
  }

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

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.35rem 0 1rem;
  }

  .nav-list a {
    display: block;
    padding: 0.7rem 0;
    width: 100%;
  }

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

  .mission-grid__left {
    padding-right: 0;
    border-right: none;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

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

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

  .category-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

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

  .venue-row {
    grid-template-columns: 96px 1fr;
    gap: 1rem;
  }

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

  .venue-row__body {
    text-align: left;
  }

  .venue-row .venue-row__action {
    grid-column: 1 / -1;
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-left: 0;
  }

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

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

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

@media (max-width: 480px) {
  :root {
    --section-pad: 56px;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .venue-row {
    grid-template-columns: 1fr;
  }

  .venue-row__thumb {
    width: 100%;
    height: 200px;
  }

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

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

  .mosaic figure {
    min-height: 200px;
  }

  .mosaic figure:nth-child(n) {
    grid-column: 1;
    grid-row: auto;
  }
}
