:root {
  --bg: #0d0d0f;
  --surface: #151517;
  --surface-alt: #1d1d20;
  --text: #f0f0f2;
  --text-muted: #a8a8ae;
  --border: rgba(240, 240, 242, 0.15);
  --accent: #c7ccd4;
  --accent-2: #a08c64;
  --secondary: #222226;
  --on-accent: #111113;
  --deep: #08080a;
  --radius: 0px;
  --radius-btn: 6px;
  --font-heading: Didot, "Bodoni MT", Georgia, serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max-w: 1080px;
  --section-pad: 76px;
  --header-h: 64px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1 0 auto;
}

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

a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

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

h1 {
  font-size: clamp(36px, 5.5vw, 58px);
}

h2 {
  font-size: clamp(24px, 3.6vw, 36px);
}

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

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

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

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

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

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

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

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

.brand-lockup:hover {
  color: var(--accent);
}

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.4px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px 18px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}

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

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

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

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

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

.independence-notice {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.independence-notice p {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 10px 24px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--on-accent);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius-btn);
  padding: 12px 20px;
  cursor: pointer;
  transition: box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  background: var(--text);
  border-color: var(--text);
  color: var(--on-accent);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

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

.btn-ghost:hover {
  background: var(--surface-alt);
  color: var(--text);
  border-color: var(--accent);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
}

.btn-text:hover {
  color: var(--accent-2);
  box-shadow: none;
  background: none;
}

.page-hero {
  padding-top: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.page-hero .intro {
  max-width: 62ch;
  color: var(--text-muted);
  margin-top: 16px;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.hero-copy p {
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 42ch;
}

.hero-frame {
  position: relative;
  margin-left: 12px;
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 10px -10px -10px 10px;
  border: 1px solid var(--border);
  z-index: 0;
}

.hero-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid var(--border);
}

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

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

.category-row:hover {
  background: transparent;
}

.category-row h3 {
  font-size: clamp(20px, 2.5vw, 28px);
}

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

.category-row .row-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent-2);
  white-space: nowrap;
}

.category-row:hover .row-link {
  color: var(--accent);
}

.timeline {
  position: relative;
  padding-left: 28px;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.timeline-spaced {
  margin-top: 36px;
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 8px;
  width: 9px;
  height: 9px;
  background: var(--accent-2);
  border-radius: 0;
}

.timeline-item h3 {
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--text-muted);
  max-width: 62ch;
}

.mission-block {
  max-width: 68ch;
  margin: 0 auto;
  text-align: left;
}

.mission-block::before {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  background: var(--accent-2);
  margin-bottom: 24px;
}

.mission-block p {
  color: var(--text-muted);
  margin-top: 16px;
}

.photo-strip-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: end;
}

.photo-strip-spaced {
  margin-top: 28px;
}

.photo-strip-grid p {
  color: var(--text-muted);
}

.photo-strip-media figcaption {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.photo-strip-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--border);
}

.testimonials-band {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonial {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.testimonial:last-child {
  border-bottom: none;
}

.testimonial blockquote {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.4px;
  font-weight: 400;
}

.testimonial cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.venue-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  height: 100%;
}

.venue-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 16px;
}

.venue-card h2,
.venue-card h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  margin-bottom: 8px;
}

.venue-meta {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.venue-card p {
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 16px;
}

.venue-card .card-foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.band-stack {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.band-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 16px;
}

.band-card img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  margin-bottom: 24px;
}

.band-body {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.band-body h2 {
  margin-bottom: 8px;
}

.band-body .venue-meta {
  margin-bottom: 14px;
}

.band-body p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.band-body .card-foot {
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.row-stack {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.row-card {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 32px;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.row-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.row-card.is-flip {
  grid-template-columns: 1fr 40%;
}

.row-card.is-flip .row-photo {
  order: 2;
}

.row-card.is-flip .row-copy {
  order: 1;
}

.row-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--border);
}

.row-copy h2 {
  margin-bottom: 10px;
}

.row-copy .name-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent-2);
  margin-bottom: 14px;
}

.row-copy p {
  color: var(--text-muted);
  margin-bottom: 18px;
}

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

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

.section-index {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 20px;
}

.section-index ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-index a {
  font-size: 13px;
  text-decoration: none;
  color: var(--text-muted);
  line-height: 1.35;
}

.section-index a:hover {
  color: var(--text);
}

.editorial-prose section {
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.editorial-prose section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.editorial-prose h2 {
  margin-bottom: 18px;
}

.editorial-prose p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.legal-body {
  padding-top: 48px;
  padding-bottom: var(--section-pad);
  max-width: 72ch;
}

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

.legal-body > p:first-of-type {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 28px;
}

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

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

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

.legal-body ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.contact-wrap {
  padding-top: 48px;
  padding-bottom: var(--section-pad);
  max-width: 640px;
  margin: 0 auto;
}

.contact-wrap > p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.contact-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

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

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

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

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

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

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

.agree-error {
  display: none;
  color: #d4a0a0;
  font-size: 13px;
  margin-top: 8px;
}

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

.form-status {
  display: none;
  margin-top: 14px;
  color: #d4a0a0;
  font-size: 14px;
}

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

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

.contact-email-line a {
  color: var(--accent);
}

.confirm-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
}

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

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

.sitemap-list {
  list-style: none;
  border-top: 1px solid var(--border);
  margin-top: 32px;
}

.sitemap-list li {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) 1.4fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.sitemap-list a {
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.4px;
}

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

.sitemap-list span {
  color: var(--text-muted);
  font-size: 15px;
}

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

.footer-upper {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px 36px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
}

.footer-about {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0 0 20px;
  max-width: 46ch;
}

.footer-blurb {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 46ch;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-mail {
  display: block;
  margin-top: 24px;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.5px;
  text-decoration: none;
  color: var(--text);
}

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

.footer-lower {
  background: var(--deep);
  border-top: 1px solid var(--border);
}

.footer-lower-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px;
}

.footer-notice {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
  max-width: 72ch;
}

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

.footer-consent-line {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-consent-line button {
  background: none;
  border: none;
  padding: 0;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  font: inherit;
}

.footer-consent-line button:hover {
  color: var(--accent);
}

.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--surface);
  color: var(--text);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  transform: translateY(110%);
  transition: transform 280ms ease;
}

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

.consent-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: start;
}

.consent-copy h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.consent-copy p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 8px;
}

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

.consent-cats {
  display: none;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.consent-banner.is-manage .consent-cats {
  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 p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 4px 0 0;
}

.consent-cat strong {
  font-size: 14px;
  color: var(--text);
}

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

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

.consent-switch span {
  position: absolute;
  inset: 0;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: background 160ms ease;
}

.consent-switch span::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: transform 160ms ease, background 160ms ease;
}

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

.consent-switch input:checked + span::after {
  transform: translateX(18px);
  background: var(--text);
}

.consent-switch input:disabled + span {
  opacity: 0.55;
  cursor: not-allowed;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.consent-actions [data-consent="accept"] {
  order: 1;
}

.consent-actions [data-consent="reject"] {
  order: 2;
}

.consent-actions [data-consent="save"] {
  order: 3;
}

.consent-actions [data-consent="manage"] {
  order: 4;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-upper {
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--deep);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 24px 20px;
    gap: 0;
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-links li {
    border-bottom: 1px solid var(--border);
  }
  .nav-links a {
    display: block;
    padding: 14px 0;
  }
  .hero-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-frame {
    margin-left: 0;
    max-width: 420px;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .editorial-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .section-index {
    position: static;
  }
  .section-index ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 18px;
  }
  .consent-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 56px;
  }
  .category-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .photo-strip-grid {
    grid-template-columns: 1fr;
  }
  .row-card,
  .row-card.is-flip {
    grid-template-columns: 1fr;
  }
  .row-card.is-flip .row-photo,
  .row-card.is-flip .row-copy {
    order: initial;
  }
  .footer-upper {
    grid-template-columns: 1fr;
  }
  .sitemap-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 600px) {
  .consent-actions {
    flex-direction: column;
  }
  .consent-actions .btn {
    width: 100%;
    order: initial !important;
  }
  .consent-actions [data-consent="accept"] {
    order: 1 !important;
  }
  .consent-actions [data-consent="reject"] {
    order: 2 !important;
  }
  .consent-actions [data-consent="save"] {
    order: 3 !important;
  }
  .consent-actions [data-consent="manage"] {
    order: 4 !important;
  }
}

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

@media (max-width: 480px) {
  .container,
  .nav-inner,
  .independence-notice p,
  .footer-upper,
  .footer-lower-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  .contact-panel,
  .confirm-panel {
    padding: 20px;
  }
  .brand-name {
    font-size: 16px;
  }
}
