: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: #0c1c23;
  --radius: 2px;
  --radius-btn: 0px;
  --font-heading: 'Trebuchet MS', 'Segoe UI', sans-serif;
  --font-body: 'Palatino Linotype', Palatino, serif;
  --content: 1180px;
  --section-pad: 108px;
  --header-h: 112px;
  --header-h-shrunk: 84px;
  --consent-h: 0px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: var(--consent-h);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  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(--secondary);
}

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

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, 26px);
}

p {
  margin: 0 0 1.1em;
}

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.3;
  padding: 0.85rem 1.35rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius-btn);
  background: var(--accent);
  color: var(--on-accent);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

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

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

.text-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
}

.text-link:hover {
  color: var(--accent-2);
  border-bottom-color: var(--accent-2);
}

.site-header {
  position: sticky;
  top: var(--consent-h);
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  transition: padding 0.25s ease;
}

.site-header.is-shrunk .header-inner {
  padding-block: 0.45rem;
}

.site-header.is-shrunk .brand-name {
  font-size: 1.05rem;
}

.site-header.is-shrunk .brand-logo {
  width: 28px;
  height: 35px;
}

.header-inner {
  width: min(100% - 2.5rem, var(--content));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.45rem;
  padding-block: 0.85rem;
  transition: padding 0.25s ease;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand-logo {
  width: 36px;
  height: 45px;
  object-fit: contain;
  transition: width 0.25s ease, height 0.25s ease;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.2px;
  transition: font-size 0.25s ease;
}

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

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

.site-nav {
  width: 100%;
}

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

.site-nav a {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
}

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

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

.independence {
  margin: 1.5rem 0 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.page-hero {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

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

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

.home-hero {
  border-bottom: 1px solid var(--border);
}

.home-hero__strip {
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
}

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

.home-hero__copy {
  text-align: center;
  padding: 3.25rem 0 3.5rem;
  width: min(100% - 2.5rem, 780px);
  margin-inline: auto;
}

.home-hero__copy .kicker {
  margin-bottom: 1rem;
}

.home-hero__copy h1 {
  margin-bottom: 1rem;
}

.home-hero__copy .intro {
  color: var(--text-muted);
  font-size: 1.12rem;
  margin-bottom: 1.75rem;
}

.home-hero__rule {
  width: 4.5rem;
  height: 1px;
  margin: 0 auto;
  background: var(--border);
  border: 0;
}

section {
  border-bottom: 1px solid var(--border);
}

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

.section-intro {
  max-width: 40rem;
  color: var(--text-muted);
}

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

.section--dark {
  background: var(--dark);
  color: #d8e4e8;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

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

.section--dark .kicker {
  color: rgba(232, 240, 243, 0.65);
}

.section--dark p {
  color: rgba(232, 240, 243, 0.82);
}

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

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

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

.category-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 1.15rem;
}

.category-card h3 {
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  margin-bottom: 0.65rem;
}

.category-card p {
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.25rem;
}

.approach-lead {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.approach-block {
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--border);
}

.approach-block h3 {
  margin-bottom: 0.75rem;
}

.approach-block p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.notes-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.note-item {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.note-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}

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

.steps-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

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

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

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

.step h3 {
  margin-bottom: 0.65rem;
}

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

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

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

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

.regions-band {
  text-align: center;
}

.regions-names {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2.75rem;
  margin: 2.5rem 0 2rem;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.2vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #eef5f7;
  line-height: 1.25;
}

.regions-band .frame {
  max-width: 38rem;
  margin: 0 auto;
  color: rgba(232, 240, 243, 0.78);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.75rem;
}

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

.venue-card__photo {
  margin-bottom: 1rem;
}

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

.venue-card__meta {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
}

.venue-card__stars {
  font-size: 0.85rem;
  color: var(--accent-2);
  letter-spacing: 0.08em;
  margin-bottom: 0.45rem;
}

.venue-card h2 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  margin-bottom: 0.75rem;
}

.venue-card__desc {
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.15rem;
  font-size: 0.98rem;
}

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

.venue-card__action .btn {
  width: 100%;
}

.catalog-rows {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.75rem;
}

.venue-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 0;
  background: #faf7f2;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.venue-row:nth-child(even) {
  grid-template-columns: 1fr 40%;
}

.venue-row:nth-child(even) .venue-row__photo {
  order: 2;
}

.venue-row:nth-child(even) .venue-row__body {
  order: 1;
}

.venue-row__photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.venue-row__body {
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
}

.venue-row__kicker {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.venue-row h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  margin-bottom: 0.35rem;
}

.venue-row__stars {
  color: var(--accent-2);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}

.venue-row__desc {
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.35rem;
}

.catalog-close {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  max-width: 44rem;
}

.editorial-lead {
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  line-height: 1.65;
  color: var(--text);
  max-width: none;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

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

.editorial-block h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  margin-bottom: 1rem;
}

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

.story-stack {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  margin-top: 1rem;
}

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

.story-block h2 {
  margin-bottom: 1.15rem;
}

.story-block p {
  color: var(--text-muted);
  max-width: 44rem;
}

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

.contact-intro {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

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

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

.form-field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text);
}

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

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

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

.agree-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 1.35rem;
}

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

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

.field-error {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: #8a2a2a;
}

.form-status[aria-live] {
  margin-bottom: 1rem;
  font-size: 0.92rem;
  color: #8a2a2a;
}

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

.confirm-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  text-align: center;
}

.confirm-panel h2 {
  font-size: 1.6rem;
  margin-bottom: 0.85rem;
}

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

.confirm-panel .ref {
  font-family: var(--font-heading);
  color: var(--accent);
  letter-spacing: 0.06em;
}

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

.legal-body h1 {
  font-size: clamp(36px, 5vw, 52px);
  margin-bottom: 0.5rem;
}

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

.legal-body h2 {
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.legal-body h3 {
  font-size: 1.1rem;
  margin-top: 1.35rem;
  margin-bottom: 0.5rem;
}

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

.sitemap-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
}

.sitemap-item {
  display: grid;
  grid-template-columns: minmax(10rem, 0.4fr) 1fr;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.sitemap-item a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--accent);
}

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

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

.site-footer {
  background: var(--surface-alt);
  padding: 4rem 0 0;
  border-top: none;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(16rem, 1.35fr) minmax(0, 1.65fr);
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand .brand {
  margin-bottom: 1.15rem;
}

.footer-brand .blurb {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-brand .mailto {
  font-family: var(--font-heading);
  font-size: 0.92rem;
}

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

.footer-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.footer-group h3 {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

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

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

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

.footer-independence {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--text-muted);
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0 1.75rem;
}

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

.footer-bottom .consent-line {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom .consent-line button {
  font: inherit;
  color: var(--accent);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.consent-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--dark);
  color: #e8f0f3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  line-height: 1.45;
}

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

.consent-inner {
  width: min(100% - 1.5rem, var(--content));
  margin-inline: auto;
  padding: 0.7rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}

.consent-copy {
  flex: 1 1 240px;
  margin: 0;
  color: rgba(232, 240, 243, 0.88);
}

.consent-copy a {
  color: #d4b48a;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.consent-btn {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.45rem 0.95rem;
  border: 1px solid rgba(232, 240, 243, 0.45);
  border-radius: 999px;
  background: transparent;
  color: #e8f0f3;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.consent-btn--text {
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  padding-inline: 0.5rem;
}

.consent-btn--text:hover {
  background: transparent;
  color: #d4b48a;
  border-color: transparent;
}

.consent-manage {
  width: 100%;
  padding-top: 0.35rem;
}

.consent-manage[hidden] {
  display: none !important;
}

.consent-cats {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.consent-cat {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 0.75rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
}

.consent-cat label {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  cursor: pointer;
  color: #e8f0f3;
  font-size: 0.84rem;
}

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

.consent-cat small {
  display: block;
  margin-top: 0.25rem;
  color: rgba(232, 240, 243, 0.62);
  font-size: 0.75rem;
  font-family: var(--font-body);
}

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

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

  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .notes-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    gap: 2.25rem;
  }
}

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

  .site-nav {
    display: none;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
  }

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

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 0 0.75rem;
  }

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

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

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

  .steps-row {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .steps-row::before {
    display: none;
  }

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

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

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

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

  .consent-cats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .venue-row,
  .venue-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .venue-row:nth-child(even) .venue-row__photo,
  .venue-row:nth-child(even) .venue-row__body {
    order: initial;
  }

  .venue-row__photo img {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

  .venue-row__body {
    padding: 1.5rem;
  }

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

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

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

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

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

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

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

  .home-hero__copy {
    padding: 2.5rem 0 2.75rem;
  }

  .consent-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .consent-actions {
    width: 100%;
  }

  .consent-btn {
    flex: 1 1 auto;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 1.05rem;
  }

  .page-hero {
    padding: 2.5rem 0 1.5rem;
  }

  .contact-panel {
    padding: 1.35rem;
  }
}
