:root {
  --bg: #f2f6f7;
  --surface: #ffffff;
  --surface-alt: #e4edef;
  --text: #10222a;
  --text-muted: #48606a;
  --border: rgba(16, 34, 42, 0.12);
  --accent: #125e6e;
  --accent-2: #c2803d;
  --secondary: #1a3a45;
  --on-accent: #ffffff;
  --dark-band: #0c1c23;
  --dark-text: #d7e4e8;
  --dark-muted: #93aab4;
  --dark-border: rgba(215, 228, 232, 0.18);
  --radius: 6px;
  --btn-radius: 0px;
  --font-heading: 'Palatino Linotype', Palatino, Georgia, serif;
  --font-body: 'Segoe UI', Roboto, Arial, sans-serif;
  --content-width: 1180px;
  --section-pad: 108px;
  --h1: clamp(40px, 6.5vw, 72px);
  --h2: clamp(28px, 4.4vw, 44px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
}

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

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

h1 {
  font-size: var(--h1);
  line-height: 1.08;
}

h2 {
  font-size: var(--h2);
  line-height: 1.12;
}

h3 {
  font-size: 22px;
}

p {
  margin-bottom: 1em;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--secondary);
  color: #ffffff;
  padding: 10px 18px;
  z-index: 100;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.wrap {
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
}

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

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

.section:first-of-type {
  border-top: none;
}

.section-head {
  max-width: 720px;
  margin-bottom: 52px;
}

.section-head p {
  color: var(--text-muted);
  margin-top: 18px;
}

.rule-accent {
  width: 56px;
  height: 2px;
  background: var(--accent-2);
  border: none;
  margin-bottom: 22px;
}

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

.independence-strip {
  background: var(--surface-alt);
  color: var(--text-muted);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  padding: 9px 16px;
  text-align: center;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 30;
}

.brand-row {
  display: flex;
  justify-content: center;
  padding: 22px 28px 18px;
}

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

.brand:hover {
  text-decoration: none;
}

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--secondary);
  white-space: nowrap;
}

.brand-name span {
  color: var(--accent);
}

.nav-row {
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--border);
  padding-top: 4px;
}

.nav-row ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  padding: 0;
}

.nav-row a {
  display: block;
  padding: 14px 20px 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  text-decoration: none;
}

.nav-row a:hover {
  color: var(--accent);
  text-decoration: none;
}

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

.nav-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 26px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 42px;
  height: 38px;
  cursor: pointer;
}

.nav-toggle .bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--secondary);
  margin: 4px auto;
  transition: transform 200ms ease, opacity 200ms ease;
}

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

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

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

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .brand-row {
    justify-content: center;
    padding: 18px 64px 16px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-row {
    display: none;
    border-top: none;
  }

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

  .nav-row ul {
    flex-direction: column;
    gap: 0;
  }

  .nav-row a {
    padding: 13px 28px;
    border-bottom: 1px solid var(--border);
    font-size: 12.5px;
  }

  .nav-row a[aria-current="page"] {
    border-bottom: 1px solid var(--border);
    background: var(--surface-alt);
  }
}

.hero-letterbox {
  border-bottom: 1px solid var(--border);
  line-height: 0;
}

.hero-letterbox img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.hero-text {
  padding-top: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.hero-text .kicker {
  margin-bottom: 22px;
}

.hero-text h1 {
  max-width: 900px;
  margin: 0 auto;
}

.hero-text .hero-intro {
  max-width: 660px;
  margin: 26px auto 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border);
}

.page-title {
  padding-top: 84px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}

.page-title h1 {
  max-width: 820px;
}

.page-title .intro {
  max-width: 680px;
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 17px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

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

.cat-card .cat-photo {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

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

.cat-card .cat-body {
  padding: 30px 30px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cat-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.cat-card p {
  color: var(--text-muted);
  flex: 1;
}

.cat-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.cat-link .arrow {
  display: inline-block;
  transition: transform 200ms ease;
}

.cat-link:hover .arrow {
  transform: translateX(5px);
}

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

  .cat-card .cat-body {
    padding: 22px 20px 20px;
  }
}

.lookfor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
}

.lookfor-item {
  border-top: 1px solid var(--border);
  padding: 28px 0 34px;
}

.lookfor-num {
  font-family: var(--font-heading);
  font-size: 40px;
  color: var(--accent-2);
  display: block;
  margin-bottom: 10px;
}

.lookfor-item h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

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

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

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

.mission-inner {
  max-width: 68ch;
  margin: 0 auto;
}

.mission h2 {
  margin-bottom: 26px;
}

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

.mission p:first-of-type {
  color: var(--text);
}

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

.closing-band h2 {
  margin-bottom: 20px;
}

.closing-band .closing-copy p {
  color: var(--text-muted);
}

.notice-panel {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 32px;
}

.notice-panel .notice-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.notice-panel p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .closing-band {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

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

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

.venue-card .venue-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 20px;
}

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

.venue-card h3 {
  font-size: 22px;
  line-height: 1.25;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.venue-loc {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 8px 0 12px;
}

.venue-card .venue-desc {
  color: var(--text-muted);
  font-size: 15px;
  flex: 1;
}

.venue-card .venue-action {
  border-top: 1px solid var(--border);
  margin-top: 18px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.listing-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--on-accent);
  border: 1px solid var(--accent);
  border-radius: var(--btn-radius);
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease;
}

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

.venue-stars {
  font-size: 13px;
  color: var(--accent-2);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .venue-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .venue-card {
    padding: 14px;
  }
}

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

.venue-row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 30px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 30px;
}

.venue-row + .venue-row {
  margin-top: 22px;
}

.venue-row .row-thumb {
  width: 160px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

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

.venue-row .row-body h3 {
  font-size: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.venue-row .row-loc {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 10px 0;
}

.venue-row .row-desc {
  color: var(--text-muted);
  font-size: 15px;
}

.venue-row .row-action {
  justify-self: end;
}

.listing-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

.listing-link .arrow {
  display: inline-block;
  transition: transform 200ms ease;
}

.listing-link:hover .arrow {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .venue-row {
    grid-template-columns: 110px 1fr;
    gap: 20px;
    padding: 22px;
  }

  .venue-row .row-thumb {
    width: 110px;
  }

  .venue-row .row-action {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .venue-row h3 {
    font-size: 21px;
  }
}

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

  .venue-row .row-thumb {
    width: 100%;
    aspect-ratio: 3 / 2;
  }
}

.cat-closing {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  max-width: 720px;
  color: var(--text-muted);
}

.cat-closing a {
  font-weight: 600;
}

.band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 84px;
  border-bottom: 1px solid var(--border);
}

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

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

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

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

.band .band-copy .kicker {
  margin-bottom: 14px;
}

.band h2 {
  margin-bottom: 20px;
  font-size: clamp(26px, 3.6vw, 36px);
}

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

.band .band-copy p:first-of-type {
  color: var(--text);
}

@media (max-width: 900px) {
  .band {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .band.flip .band-photo {
    order: 0;
  }
}

.insights-lede {
  padding-top: 84px;
  padding-bottom: 20px;
}

.insights-band {
  align-items: stretch;
}

.band-rule-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.band.flip .band-rule-col {
  background: var(--surface-alt);
}

.band-rule {
  width: 100%;
  height: 2px;
  background: var(--accent-2);
  border: none;
}

.band-rule-note {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--text);
}

.band-rule-src {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .band-rule-col {
    padding: 24px;
  }
}

.insights-lede .intro {
  max-width: 720px;
  color: var(--text-muted);
  font-size: 17px;
}

.legal-page {
  padding-top: 72px;
  padding-bottom: 96px;
}

.legal-inner {
  max-width: 760px;
}

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

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

.legal-inner h2 {
  font-size: 26px;
  margin-top: 44px;
  margin-bottom: 14px;
  border-top: 1px solid var(--border);
  padding-top: 26px;
}

.legal-inner h3 {
  font-size: 20px;
  margin-top: 28px;
  margin-bottom: 10px;
}

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

.legal-inner > p:first-of-type {
  color: var(--text);
}

.cookie-settings-inline {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin-top: 44px;
}

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

.cookie-settings-btn {
  width: auto;
  display: inline-block;
  padding: 12px 22px;
}

.contact-intro {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-top: 72px;
  padding-bottom: 48px;
}

.contact-intro .intro {
  color: var(--text-muted);
  font-size: 17px;
}

.contact-mail {
  font-weight: 600;
}

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

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.field {
  margin-bottom: 22px;
}

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

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

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

.field select {
  appearance: none;
}

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

.field input[aria-invalid="true"] {
  border-color: #a8452e;
}

.field-error {
  color: #a8452e;
  font-size: 13.5px;
  margin-top: 8px;
}

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

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

.agree-row label {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.6;
}

.agree-error {
  color: #a8452e;
  font-size: 13.5px;
  margin: -6px 0 18px 30px;
}

.submit-btn {
  width: 100%;
  background: var(--accent);
  color: var(--on-accent);
  border: 1px solid var(--accent);
  border-radius: var(--btn-radius);
  padding: 15px 24px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease;
}

.submit-btn:hover:not(:disabled) {
  background: var(--secondary);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.form-status {
  margin-top: 16px;
  font-size: 14px;
  color: #a8452e;
}

.confirm-panel {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 40px;
  text-align: center;
}

.confirm-panel.is-shown {
  display: block;
}

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

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

.confirm-ref {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--accent);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 10px 22px;
  margin: 14px 0 22px;
}

.confirm-panel .submit-btn {
  width: auto;
  display: inline-block;
}

.site-index-row {
  padding-top: 72px;
  padding-bottom: 96px;
  max-width: 900px;
}

.site-index-row .intro {
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 640px;
}

.index-links {
  font-size: 17px;
  line-height: 2.3;
  color: var(--text);
}

.index-links .dot {
  color: var(--accent-2);
  padding: 0 10px;
}

.site-footer {
  background: var(--dark-band);
  color: var(--dark-text);
}

.site-footer a {
  color: var(--dark-text);
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-band {
  padding-top: 56px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--dark-border);
}

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

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

.footer-brand-band .brand-name {
  color: #ffffff;
}

.footer-blurb {
  max-width: 560px;
  color: var(--dark-muted);
  font-size: 14.5px;
  margin-top: 18px;
}

.footer-links-band {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col {
  min-width: 150px;
}

.footer-col h3 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  font-variant: small-caps;
  letter-spacing: 0.18em;
  color: #ffffff;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--dark-border);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 9px;
  font-size: 14.5px;
}

.footer-backtop {
  margin-left: auto;
  align-self: flex-start;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--dark-muted);
}

.footer-bottom-band {
  padding-top: 26px;
  padding-bottom: 30px;
}

.footer-notice {
  color: var(--dark-muted);
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 18px;
}

.footer-misc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-legal-meta {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-legal-meta .adults-note {
  font-size: 12px;
  color: var(--dark-muted);
}

.footer-legal-meta a {
  font-size: 13px;
  color: var(--dark-muted);
}

.footer-copyright {
  font-size: 13px;
  color: var(--dark-muted);
}

@media (max-width: 768px) {
  .footer-links-band {
    flex-direction: column;
    gap: 30px;
  }

  .footer-backtop {
    margin-left: 0;
  }

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

.consent-bar {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  align-items: stretch;
}

.consent-bar.is-open {
  display: block;
}

.consent-bar-main {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.consent-copy {
  flex: 1;
  padding: 24px 28px;
  min-width: 0;
}

.consent-copy h2 {
  font-size: 19px;
  margin-bottom: 8px;
}

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

.consent-copy .consent-policy-link {
  font-size: 13.5px;
}

.consent-divider {
  width: 1px;
  background: var(--border);
}

.consent-controls {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  padding: 20px 24px;
  min-width: 250px;
}

.consent-pill {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
  text-align: center;
}

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

.consent-pill.consent-pill-ghost {
  border-color: var(--border);
  color: var(--text-muted);
}

.consent-pill.consent-pill-ghost:hover {
  background: var(--surface-alt);
  color: var(--text);
}

.consent-manage {
  border: none;
  background: none;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  align-self: flex-start;
  padding: 2px 0;
}

.consent-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.consent-bar.is-expanded .consent-panel {
  grid-template-rows: 1fr;
}

.consent-panel-inner {
  overflow: hidden;
  min-height: 0;
}

.consent-cats {
  border-top: 1px solid var(--border);
  margin: 0 28px;
  padding: 18px 0 20px;
}

.consent-cat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.consent-cat:last-child {
  border-bottom: none;
}

.consent-cat input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.consent-cat input:disabled {
  accent-color: var(--text-muted);
}

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

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

.consent-cat-text .locked {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
}

@media (max-width: 768px) {
  .consent-bar {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .consent-bar-main {
    flex-direction: column;
  }

  .consent-divider {
    width: auto;
    height: 1px;
  }

  .consent-controls {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 0;
    padding: 14px 20px 20px;
  }

  .consent-copy {
    padding: 20px 22px 10px;
  }
}

@media (max-width: 480px) {
  .consent-controls {
    flex-direction: column;
  }

  .consent-pill {
    width: 100%;
  }
}
