: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;
  --dark: #1b1b1a;
  --on-dark: #fbfbf9;
  --on-dark-muted: rgba(251, 251, 249, 0.68);
  --radius: 2px;
  --radius-btn: 6px;
  --font-heading: 'Times New Roman', Times, serif;
  --font-body: Verdana, Geneva, sans-serif;
  --maxw: 1160px;
  --pad-x: 24px;
  --section-pad: 112px;
  --h1: clamp(38px, 6vw, 66px);
  --h2: clamp(24px, 4vw, 38px);
  --h3: clamp(19px, 2.4vw, 26px);
}

* { 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: 15px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.4px;
  line-height: 1.2;
}

h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }

a { color: inherit; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.kicker {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

.kicker--rule {
  padding-top: 18px;
  border-top: 1px solid var(--accent-2);
  width: 72px;
  display: block;
}

.section { padding: var(--section-pad) 0; }
.section--alt { background: var(--surface-alt); }
.section--dark { background: var(--dark); color: var(--on-dark); }
.section--dark .kicker { color: var(--on-dark-muted); }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head .kicker { display: block; margin-bottom: 16px; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { color: var(--text-muted); }
.section--dark .section-head p { color: var(--on-dark-muted); }

.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(--surface);
  padding: 10px 16px;
  z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.header-top {
  display: flex;
  justify-content: center;
  padding: 28px var(--pad-x) 22px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-lockup img {
  width: 42px;
  height: 43px;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 24px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

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

.nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 34px;
  padding: 14px var(--pad-x);
}

.nav-list a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  padding: 6px 2px;
  display: inline-block;
}

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

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

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  width: 44px;
  height: 40px;
  cursor: pointer;
  position: absolute;
  right: var(--pad-x);
  top: 26px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--text);
  transition: transform 200ms ease, opacity 200ms ease;
}

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

.hero {
  background: var(--surface-alt);
  padding: calc(var(--section-pad) + 24px) 0;
}

.hero-inner { max-width: 880px; }

.hero h1 {
  line-height: 1.14;
  margin: 22px 0 30px;
}

.hero p {
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 16px;
}

.notice-independence {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 16px 20px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
  border-radius: var(--radius);
}

.notice-wrap { margin-top: 40px; }
.notice-wrap--under-title { margin-top: 4px; margin-bottom: 30px; }

.page-title {
  background: var(--bg);
  padding: 88px 0 0;
}

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

.page-title h1 { margin: 20px 0 24px; max-width: 20ch; }
.page-title .intro { max-width: 62ch; color: var(--text-muted); font-size: 16px; }

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

.venue-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 48px;
  align-items: start;
}

.venue-row--flip .venue-row__media { order: 2; }
.venue-row--flip .venue-row__body { order: 1; }

.venue-row__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
}

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

.venue-row__body { padding-top: 8px; }

.venue-row__body .kicker {
  display: block;
  margin-bottom: 14px;
}

.venue-row__body h3 {
  margin-bottom: 6px;
}

.venue-row__loc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.venue-row__body .desc {
  color: var(--text);
  margin-bottom: 26px;
  max-width: 52ch;
}

.overlay-name {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.92);
  padding: 14px 18px 12px;
  border-radius: var(--radius);
}

.overlay-name h3 {
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.25;
}

.overlay-name .overlay-loc {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.venue-row__below .desc { margin-bottom: 26px; max-width: 52ch; }
.venue-row__below { padding-top: 24px; }

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 26px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-btn);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background 200ms ease, color 200ms 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); }

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

.link-arrow .arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform 200ms ease;
}

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

.band-list {
  display: flex;
  flex-direction: column;
}

.venue-band {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.venue-band:first-child { padding-top: 56px; }
.venue-band:last-child { border-bottom: none; padding-bottom: 56px; }

.venue-band__media {
  aspect-ratio: 21 / 8;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 44px;
}

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

.venue-band__body {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.venue-band__body .kicker { display: block; margin-bottom: 14px; }

.venue-band__body h3 {
  font-size: var(--h3);
}

.band-rule {
  width: 56px;
  height: 2px;
  background: var(--accent-2);
  margin: 18px auto 22px;
}

.venue-band__body .desc {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.catalog-closing {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  max-width: 640px;
}

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

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

.cat-card { text-decoration: none; display: block; }

.cat-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 22px;
}

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

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

.cat-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.dark-center {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.dark-center h2 { margin: 18px 0 26px; }
.dark-center p { color: var(--on-dark-muted); margin-bottom: 18px; }
.dark-center .link-arrow {
  color: var(--on-dark);
  border-bottom-color: var(--accent-2);
}
.dark-center .link-arrow .arrow { color: var(--accent-2); }

.regions-comp {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 18px 0;
  margin: 40px 0 44px;
}

.regions-comp span {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4.6vw, 54px);
  letter-spacing: 0.06em;
  padding: 0 36px;
  border-left: 1px solid rgba(251, 251, 249, 0.25);
}

.regions-comp span:first-child { border-left: none; padding-left: 0; }
.regions-comp span:last-child { padding-right: 0; }

.regions-frame {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  color: var(--on-dark-muted);
}

.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.testi-grid .section-head { margin-bottom: 0; }

.quote-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.quote-block {
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-2);
  background: var(--surface);
  padding: 26px 30px;
  border-radius: var(--radius);
}

.quote-block blockquote p {
  font-family: var(--font-heading);
  font-size: 19px;
  line-height: 1.6;
  letter-spacing: 0.2px;
  margin-bottom: 14px;
}

.quote-block cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.mission-grid .mission-left {
  border-right: 1px solid var(--border);
  padding-right: 64px;
}

.mission-grid .mission-left h2 { margin-bottom: 20px; }
.mission-left p { color: var(--text-muted); }
.mission-right p { margin-bottom: 1.3em; }
.mission-right p:last-child { margin-bottom: 0; }
.mission-right .kicker { display: block; margin-bottom: 18px; }

.accordion {
  border-top: 1px solid var(--border);
  max-width: 820px;
}

.acc-item { border-bottom: 1px solid var(--border); }

.acc-head {
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.2vw, 22px);
  letter-spacing: 0.4px;
  text-align: left;
  padding: 24px 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--text);
}

.acc-head .acc-mark {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--accent-2);
  flex-shrink: 0;
}

.acc-panel {
  padding: 0 8px 26px;
  color: var(--text-muted);
  max-width: 62ch;
}

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

.insights-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: start;
}

.insights-index {
  position: sticky;
  top: 48px;
}

.insights-index .kicker { display: block; margin-bottom: 18px; }

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

.insights-index a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border-left: 2px solid transparent;
  padding-left: 14px;
  line-height: 1.5;
  display: block;
}

.insights-index a:hover {
  color: var(--text);
  border-left-color: var(--accent-2);
}

.insight-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 48px;
}

.insight-section:first-child { padding-top: 8px; }
.insight-section:last-child { border-bottom: none; }

.insight-section h2 { margin-bottom: 24px; }
.insight-section .kicker { display: block; margin-bottom: 12px; }
.insight-section p { margin-bottom: 1.2em; color: var(--text-muted); }
.insight-section p.lead { color: var(--text); }
.insight-section p:last-child { margin-bottom: 0; }

.about-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.about-section:first-of-type { padding-top: 72px; }
.about-section:last-of-type { border-bottom: none; }

.about-section .num-kicker {
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--accent-2);
  display: block;
  margin-bottom: 14px;
}

.about-section h2 { margin-bottom: 26px; max-width: 28ch; }
.about-section p { color: var(--text-muted); margin-bottom: 1.2em; max-width: 66ch; }
.about-section p.lead { color: var(--text); }
.about-section p:last-child { margin-bottom: 0; }

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

.contact-wrap .kicker { display: block; margin-bottom: 16px; }
.contact-wrap h1 { margin-bottom: 22px; }
.contact-wrap .intro { color: var(--text-muted); margin-bottom: 48px; }

.contact-form { text-align: left; }

.form-row { margin-bottom: 26px; }

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

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

.form-row textarea { min-height: 150px; resize: vertical; }

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

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

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

.consent-row label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.consent-row a {
  color: var(--text);
  border-bottom: 1px solid var(--accent-2);
}

.field-error {
  color: #8a3b2e;
  font-size: 13px;
  margin: 8px 0 0;
}

.form-status {
  margin-top: 16px;
  font-size: 13px;
  color: #8a3b2e;
}

.form-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 26px;
}

.contact-mailto {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-2);
}

.confirm-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-2);
  border-radius: var(--radius);
  padding: 36px 34px;
  text-align: left;
}

.confirm-panel h2 { margin-bottom: 16px; font-size: 26px; }
.confirm-panel p { color: var(--text-muted); margin-bottom: 14px; }
.confirm-panel .ref {
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--text);
}

.legal-body {
  max-width: 780px;
}

.legal-body h2 {
  font-size: 24px;
  margin: 52px 0 18px;
}

.legal-body h2:first-of-type { margin-top: 48px; }

.legal-body h3 {
  font-size: 19px;
  margin: 32px 0 12px;
}

.legal-body p { color: var(--text-muted); margin-bottom: 1.2em; }
.legal-body a { border-bottom: 1px solid var(--accent-2); text-decoration: none; color: var(--text); }
.legal-body .updated { color: var(--text-muted); font-size: 13px; letter-spacing: 0.06em; margin-bottom: 28px; }

.cookie-settings-inline {
  margin: 48px 0 0;
  padding: 22px 24px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.sitemap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
}

.sitemap-item {
  display: grid;
  grid-template-columns: minmax(170px, 250px) 1fr;
  gap: 8px 28px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.sitemap-item a {
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: 0.3px;
  text-decoration: none;
}

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

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

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

.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 56px;
  padding: 72px 0 40px;
  align-items: start;
}

.footer-brand .brand-lockup { margin-bottom: 20px; }
.footer-brand .brand-name { font-size: 22px; }

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

.footer-group-head {
  font-size: 15px;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
  display: inline-block;
}

.footer-group-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: var(--accent-2);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  align-content: flex-start;
}

.footer-links a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
}

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

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 40px;
}

.pill {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 16px;
}

.footer-email {
  padding-bottom: 44px;
}

.footer-email a {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.4vw, 34px);
  letter-spacing: 0.03em;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid var(--accent-2);
}

.footer-rule { border: none; border-top: 1px solid var(--border); }

.footer-notices {
  padding: 26px 0 30px;
}

.footer-notices p {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 88ch;
  line-height: 1.8;
}

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

.footer-bottom-inner {
  padding: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.footer-bottom-inner .consent-line {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-bottom-inner .consent-line button {
  background: none;
  border: none;
  font: inherit;
  color: var(--text);
  cursor: pointer;
  padding: 0;
  border-bottom: 1px solid var(--accent-2);
}

.consent-panel {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.consent-panel__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 56px var(--pad-x);
  border-left: 3px solid var(--accent);
}

.consent-panel__title {
  font-family: var(--font-heading);
  font-size: 26px;
  letter-spacing: 0.4px;
  margin-bottom: 12px;
}

.consent-panel__copy {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 60ch;
  margin-bottom: 26px;
}

.consent-panel__copy a { border-bottom: 1px solid var(--accent-2); text-decoration: none; }

.consent-cats {
  border-top: 1px solid var(--border);
  margin-bottom: 28px;
}

.consent-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.consent-cat__text strong {
  display: block;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.consent-cat__text small {
  font-size: 12px;
  color: var(--text-muted);
}

.consent-cat--locked .consent-cat__text strong { color: var(--text-muted); }

.switch {
  appearance: none;
  -webkit-appearance: none;
  width: 46px;
  height: 26px;
  border-radius: 999px;
  background: var(--border);
  border: 1px solid var(--border);
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 200ms ease;
}

.switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 200ms ease;
}

.switch:checked { background: var(--accent); border-color: var(--accent); }
.switch:checked::after { transform: translateX(20px); }

.switch:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.switch:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

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

.consent-actions .btn {
  text-align: center;
  padding: 14px 10px;
  font-size: 11px;
}

.consent-manage-line {
  margin-top: 18px;
}

.consent-manage-line .link-arrow {
  color: var(--text-muted);
  font-size: 12px;
}

.consent-pill {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 90;
  background: var(--surface);
  border: 1px solid var(--accent);
  border-left: 3px solid var(--accent-2);
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  padding: 11px 16px;
  cursor: pointer;
}

.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; }
  .nav-toggle span, .link-arrow .arrow, .switch, .switch::after, .btn { transition: none; }
}

@media (max-width: 1024px) {
  :root { --section-pad: 88px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .testi-grid { gap: 40px; }
  .insights-grid { gap: 48px; }
}

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

  .header-top { justify-content: center; }

  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    z-index: 80;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 8px var(--pad-x) 16px;
  }

  .nav-list li { border-bottom: 1px solid var(--border); }
  .nav-list li:last-child { border-bottom: none; }
  .nav-list a { display: block; padding: 13px 0; border-bottom: none; }
  .nav-list a[aria-current="page"] { border-bottom: none; color: var(--accent-2); }

  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .mission-grid .mission-left { border-right: none; padding-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 40px; }
  .insights-grid { grid-template-columns: 1fr; }
  .insights-index { position: static; }
  .insights-index ul { flex-direction: row; flex-wrap: wrap; gap: 8px 24px; }
  .insights-index a { border-left: none; border-bottom: 2px solid var(--accent-2); padding: 0 0 4px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px; }
  .venue-row { grid-template-columns: 1fr; gap: 28px; }
  .venue-row--flip .venue-row__media { order: 0; }
  .venue-row--flip .venue-row__body { order: 0; }
  .venue-band__media { aspect-ratio: 16 / 9; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .regions-comp span { padding: 0 18px; }
  .dark-center h2 { margin: 16px 0 20px; }
}

@media (max-width: 560px) {
  :root { --section-pad: 56px; --pad-x: 20px; }
  .cat-grid { grid-template-columns: 1fr; }
  .brand-name { font-size: 20px; }
  .nav-toggle { top: 22px; }
  .header-top { padding: 22px var(--pad-x) 18px; }
  .consent-actions { grid-template-columns: 1fr; }
  .quote-block { padding: 20px 22px; }
  .venue-band { padding: 56px 0; }
  .sitemap-item { grid-template-columns: 1fr; gap: 4px; }
  .footer-bottom-inner { align-items: flex-start; }
}
