: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;
  --radius: 10px;
  --radius-btn: 6px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: Constantia, Georgia, serif;
  --font-body: 'Trebuchet MS', 'Segoe UI', sans-serif;
  --max: 1120px;
  --section-pad: 88px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.68;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

h1 {
  font-size: clamp(34px, 5.4vw, 56px);
  line-height: 1.16;
}

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

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

p {
  margin: 0 0 1em;
}

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

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

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--on-accent);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius-btn);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

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

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

.btn--light {
  background: var(--on-accent);
  color: var(--dark);
  border-color: var(--on-accent);
}

.btn--light:hover {
  background: var(--surface-alt);
  color: var(--dark);
}

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

.site-header__inner {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

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

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

.brand__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

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

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

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

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

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

.site-nav {
  display: flex;
  align-items: center;
}

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

.site-nav a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-variant: small-caps;
  text-decoration: none;
  color: var(--text-muted);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

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

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

.independence {
  margin: 1.5rem auto 0;
  width: min(100% - 40px, var(--max));
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.independence--home {
  margin-top: 2rem;
}

.page-hero {
  padding: 3.5rem 0 1rem;
  background: linear-gradient(180deg, var(--bg), var(--surface-alt));
}

.page-hero .container {
  max-width: var(--max);
}

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

.page-hero__intro {
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero {
  padding: 4.5rem 0 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface-alt) 100%);
}

.hero__copy {
  width: min(100% - 40px, 720px);
  margin: 0 auto 2.75rem;
}

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

.hero-frames {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 1.25rem;
  align-items: end;
}

.hero-frames figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-frames figure:nth-child(1) img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.hero-frames figure:nth-child(2) img {
  height: 280px;
  width: 100%;
  object-fit: cover;
}

.hero-frames figure:nth-child(3) img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.hero-frames figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: left;
}

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

.section--alt {
  background: linear-gradient(180deg, var(--surface-alt), var(--bg));
}

.section--dark {
  background: var(--dark);
  color: var(--on-accent);
}

.section--dark h2,
.section--dark h3 {
  color: var(--on-accent);
}

.section--dark p {
  color: rgba(251, 251, 249, 0.82);
}

.section--dark a {
  color: #d4b896;
}

.section--dark a:hover {
  color: var(--on-accent);
}

.band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.band + .band {
  margin-top: 4.5rem;
}

.band--reverse {
  direction: rtl;
}

.band--reverse > * {
  direction: ltr;
}

.band__media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.band__media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.band:hover .band__media img {
  transform: scale(1.02);
}

.band__body .kicker {
  color: var(--accent-2);
}

.band__body p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

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

.mission::before {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent-2);
  margin: 0 auto 1.5rem;
}

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

.regions {
  text-align: center;
}

.regions__frame {
  max-width: 52ch;
  margin: 0 auto 2.5rem;
  color: rgba(251, 251, 249, 0.78);
}

.regions__names {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2.75rem;
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1.35;
  color: var(--on-accent);
}

.closing-cta {
  text-align: center;
  max-width: 58ch;
  margin: 0 auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.about-approach {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 3rem;
  align-items: start;
}

.about-approach__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease;
}

.card:hover {
  transform: translateY(-2px);
}

.card img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.card:hover img {
  transform: scale(1.02);
}

.card__body {
  padding: 1.35rem 1.4rem 1.5rem;
}

.card__body h2,
.card__body h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  margin-bottom: 0.55rem;
}

.card__meta {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
}

.card__body p {
  color: var(--text-muted);
  margin-bottom: 1.15rem;
  font-size: 0.98rem;
}

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

.masonry .card:nth-child(even) {
  margin-top: 2.5rem;
}

.card--flip {
  display: flex;
  flex-direction: column;
}

.card--flip .card__media {
  order: 2;
}

.card--flip .card__body {
  order: 1;
}

.card--flip .card__cta {
  order: 3;
  padding: 0 1.4rem 1.5rem;
}

.card--flip .card__body .btn {
  display: none;
}

.card:not(.card--flip) .card__cta {
  display: none;
}

.card__media img {
  height: 240px;
}

.city-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.city-row {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.35rem 0;
  border-top: 1px solid var(--border);
}

.city-row:last-child {
  border-bottom: 1px solid var(--border);
}

.city-row__thumb {
  width: 96px;
  height: 96px;
  overflow: hidden;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.city-row__thumb img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.city-row:hover .city-row__thumb img {
  transform: scale(1.02);
}

.city-row__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.city-row__text h2 {
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: 0.25rem;
}

.city-row__text .card__meta {
  margin-bottom: 0.55rem;
}

.city-row__text p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.98rem;
}

.city-row__action {
  flex-shrink: 0;
}

.past-band {
  padding: 0 0 3.5rem;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
}

.past-band:last-of-type {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.past-band__media {
  overflow: hidden;
  margin-bottom: 1.75rem;
}

.past-band__media img {
  width: 100%;
  height: clamp(240px, 42vw, 420px);
  object-fit: cover;
  transition: transform 0.35s ease;
}

.past-band:hover .past-band__media img {
  transform: scale(1.02);
}

.past-band__body {
  background: var(--surface);
  padding: 2rem 1.5rem 2.25rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.past-band__body .kicker {
  margin-bottom: 0.5rem;
}

.past-band__body p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

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

.prose {
  max-width: 70ch;
  margin: 0 auto;
}

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

.prose section:last-child {
  border-bottom: 0;
}

.prose h2 {
  margin-bottom: 1rem;
}

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

.alt-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.alt-band:last-child {
  border-bottom: 0;
}

.alt-band--flip .alt-band__text {
  order: 2;
}

.alt-band__rule {
  width: 40px;
  height: 2px;
  background: var(--accent-2);
  margin-bottom: 1.25rem;
}

.alt-band__aside {
  padding: 2rem;
  background: var(--surface-alt);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.45;
  letter-spacing: -0.2px;
}

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

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

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

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
}

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

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

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

.agree-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 1.5rem 0;
}

.agree-row input {
  margin-top: 0.3rem;
  flex-shrink: 0;
  width: auto;
}

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

.form-error {
  color: #8b2e2e;
  font-size: 0.88rem;
  margin-top: 0.4rem;
}

.form-status[hidden],
.form-error[hidden] {
  display: none;
}

.confirm-panel {
  padding: 2rem;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.confirm-panel h2 {
  margin-bottom: 0.75rem;
}

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

.legal-body {
  max-width: 72ch;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.legal-body h2 {
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

.legal-body h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

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

.legal-body ul {
  padding-left: 1.25rem;
}

.sitemap-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0;
  align-items: center;
  line-height: 2;
}

.sitemap-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

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

.sitemap-links .sep {
  color: var(--text-muted);
  margin: 0 0.65rem;
  user-select: none;
}

.site-footer {
  background: var(--surface-alt);
  margin-top: 0;
  padding: 0;
}

.footer-band {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  padding: 2.5rem 0;
}

.footer-band + .footer-band {
  border-top: 1px solid var(--border);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 58ch;
}

.footer-brand .brand {
  align-self: flex-start;
}

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

.footer-adults {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3.5rem;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.92rem;
}

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

.footer-bottom .independence-line {
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  align-items: center;
}

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

.footer-meta button {
  background: none;
  border: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: var(--text);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.consent-banner {
  position: fixed;
  z-index: 1000;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  color: var(--on-accent);
  padding: 1.25rem 1.35rem 1.4rem;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(110%);
  transition: transform 0.35s ease;
}

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

.consent-banner p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(251, 251, 249, 0.88);
}

.consent-banner a {
  color: #d4b896;
}

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

.consent-actions .btn {
  font-size: 0.85rem;
  padding: 0.6rem 1rem;
}

.consent-actions .btn--ghost {
  color: var(--on-accent);
  border-color: rgba(251, 251, 249, 0.28);
}

.consent-actions .btn--ghost:hover {
  background: rgba(251, 251, 249, 0.08);
  color: var(--on-accent);
}

.consent-manage {
  background: none;
  border: 0;
  padding: 0.6rem 0.4rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(251, 251, 249, 0.75);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.consent-dialog-backdrop[hidden] {
  display: none;
}

.consent-dialog {
  width: min(100%, 420px);
  background: var(--dark);
  color: var(--on-accent);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.consent-dialog h2 {
  color: var(--on-accent);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.consent-cat {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(251, 251, 249, 0.12);
}

.consent-cat:last-of-type {
  border-bottom: 1px solid rgba(251, 251, 249, 0.12);
  margin-bottom: 1.25rem;
}

.consent-cat strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
}

.consent-cat span {
  display: block;
  font-size: 0.8rem;
  color: rgba(251, 251, 249, 0.65);
  line-height: 1.4;
}

.consent-cat input {
  margin-top: 0.2rem;
}

.consent-dialog .btn {
  width: 100%;
}

@media (min-width: 900px) {
  .consent-banner {
    left: auto;
    right: 1.5rem;
    bottom: 1.5rem;
    width: min(420px, calc(100% - 3rem));
    border-radius: var(--radius);
  }
}

@media (max-width: 1024px) {
  .band {
    gap: 2rem;
  }

  .band__media img {
    height: 280px;
  }

  .about-approach {
    gap: 2rem;
  }
}

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

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1.25rem 1.25rem;
    display: none;
  }

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

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .site-nav a {
    font-size: 0.78rem;
    padding: 0.5rem 0;
  }
}

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

  .hero-frames {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }

  .hero-frames figure {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }

  .hero-frames figure img,
  .hero-frames figure:nth-child(1) img,
  .hero-frames figure:nth-child(2) img,
  .hero-frames figure:nth-child(3) img {
    height: 220px;
  }

  .band,
  .band--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .band__media img {
    height: 240px;
  }

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

  .masonry .card:nth-child(even) {
    margin-top: 0;
  }

  .city-row {
    grid-template-columns: 80px 1fr;
    gap: 1rem;
  }

  .city-row__action {
    grid-column: 1 / -1;
  }

  .city-row__action .btn {
    width: 100%;
  }

  .city-row__thumb,
  .city-row__thumb img {
    width: 80px;
    height: 80px;
  }

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

  .about-approach__cols {
    grid-template-columns: 1fr;
  }

  .alt-band,
  .alt-band--flip {
    grid-template-columns: 1fr;
  }

  .alt-band--flip .alt-band__text {
    order: 0;
  }

  .regions__names {
    gap: 1rem 1.75rem;
  }

  .footer-links {
    gap: 1.75rem 2.5rem;
  }
}

@media (max-width: 480px) {
  .container,
  .site-header__inner,
  .footer-band,
  .independence {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    padding-top: 3rem;
  }

  .brand__name {
    font-size: 0.95rem;
  }

  .consent-actions {
    flex-direction: column;
  }

  .consent-actions .btn {
    width: 100%;
  }

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