:root {
  --bg: #0b1220;
  --surface: #121b2c;
  --surface-alt: #18243a;
  --text: #eef2f8;
  --text-muted: #9fb0c6;
  --border: rgba(238, 242, 248, 0.14);
  --accent: #d9b382;
  --accent-2: #6fa3b8;
  --secondary: #1b2942;
  --on-accent: #111a29;
  --deep: #070d17;
  --radius: 14px;
  --radius-btn: 999px;
  --font-heading: 'Times New Roman', Times, serif;
  --font-body: Verdana, Geneva, sans-serif;
  --max: 1040px;
  --section-pad: 68px;
  --header-h: 64px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.58;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

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

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

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

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

h1 {
  font-size: clamp(32px, 4.8vw, 50px);
}

h2 {
  font-size: clamp(22px, 3.2vw, 32px);
}

h3 {
  font-size: clamp(18px, 2.4vw, 24px);
}

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-btn);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  color: var(--on-accent);
}

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

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

.btn--block {
  width: 100%;
}

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

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

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

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

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

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

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

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.25rem 0;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}

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

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

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

.independence__inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding: 0.55rem 0;
  font-size: 11px;
  line-height: 1.45;
  color: var(--text-muted);
}

.hero {
  position: relative;
  border-bottom: 1px solid var(--border);
  min-height: 460px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.55fr);
  align-items: stretch;
  overflow: hidden;
  background: var(--deep);
}

.hero__media {
  grid-column: 2 / -1;
  grid-row: 1;
  min-height: 460px;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 460px;
}

.hero__panel {
  grid-column: 1 / 2;
  grid-row: 1;
  position: relative;
  z-index: 2;
  background: var(--surface);
  margin: 2.75rem 0 2.75rem max(1rem, calc((100vw - var(--max)) / 2));
  margin-right: -22%;
  padding: 2.35rem 1.85rem;
  border: 1px solid var(--border);
  border-radius: 0 var(--radius) var(--radius) 0;
  align-self: center;
  max-width: 540px;
}

.hero__panel .wrap {
  width: 100%;
  margin: 0;
}

.hero__panel p {
  color: var(--text-muted);
  margin-top: 0.85rem;
  font-size: 14px;
}

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

.section__head {
  margin-bottom: 1.75rem;
}

.section__head p {
  color: var(--text-muted);
  margin-top: 0.5rem;
  max-width: 62ch;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.cat-card {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.cat-card__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--surface);
  padding: 1.15rem 1.1rem 1.25rem;
  border-top: 1px solid var(--border);
}

.cat-card__panel h3 {
  font-size: 20px;
  margin-bottom: 0.4rem;
}

.cat-card__panel p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.cat-card__panel a {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

.cat-card__panel a:hover {
  text-decoration: underline;
}

.approach {
  background: var(--deep);
  border-bottom: 1px solid var(--border);
}

.approach__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

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

.approach__cols p {
  color: var(--text-muted);
  font-size: 14px;
}

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

.regions-list__row {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 1.25rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.regions-list__row:first-child {
  border-top: 1px solid var(--border);
}

.regions-list__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
}

.regions-list__note {
  color: var(--text-muted);
  font-size: 14px;
}

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

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

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

.step__num {
  width: 36px;
  height: 36px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--accent);
}

.step h3 {
  font-size: 17px;
  margin-bottom: 0.45rem;
}

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

.testimonials {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.testimonials__intro p {
  color: var(--text-muted);
  margin-top: 0.65rem;
  font-size: 14px;
}

.quote-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.quote {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  background: var(--surface);
}

.quote p {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 0.55rem;
}

.quote cite {
  font-style: normal;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.04em;
}

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

.mission::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
}

.mission__left,
.mission__right {
  position: relative;
}

.mission__left p,
.mission__right p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 0.75rem;
}

.mission__left h2 {
  margin-bottom: 0.25rem;
}

.page-hero {
  padding: 2.5rem 0 1.75rem;
  border-bottom: 1px solid var(--border);
}

.page-hero h1,
.page-hero .kicker,
.page-hero p {
  margin-left: 0;
  margin-right: 0;
}

.page-hero p {
  color: var(--text-muted);
  margin-top: 0.75rem;
  max-width: 68ch;
  font-size: 14px;
}

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

.catalog-close {
  padding: 2rem 0 var(--section-pad);
}

.catalog-close p {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 68ch;
}

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

.row-card {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 1.15rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.row-card:first-child {
  border-top: 1px solid var(--border);
}

.row-card__thumb {
  width: 88px;
  height: 88px;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

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

.row-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.row-card__body h2 {
  font-size: 20px;
  margin-bottom: 0.2rem;
}

.row-card__meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.row-card__body p {
  font-size: 13px;
  color: var(--text-muted);
}

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

.band-card {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.band-card:first-child {
  border-top: 1px solid var(--border);
  padding-top: 0;
}

.band-card__photo {
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 1.35rem;
}

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

.band-card .kicker {
  margin-bottom: 0.35rem;
}

.band-card h2 {
  margin-bottom: 0.65rem;
}

.band-card p {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 62ch;
  margin: 0 auto 1.1rem;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.split-card {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.split-card:first-child {
  border-top: 1px solid var(--border);
}

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

.split-card--flip .split-card__photo {
  order: 2;
}

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

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

.split-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.split-card__body h2 {
  font-size: 22px;
  margin-bottom: 0.25rem;
}

.split-card__meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
}

.split-card__body p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 1rem;
}

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

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

.prose-band:first-of-type {
  border-top: 1px solid var(--border);
}

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

.prose-band--flip .prose-band__aside {
  order: 1;
}

.prose-band__aside {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.5rem 1.35rem;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.prose-band__aside .aside-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.prose-band__aside p {
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.35;
  color: var(--text);
}

.prose-band__text h2 {
  margin-bottom: 0.85rem;
}

.prose-band__text p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 0.85rem;
}

.prose-band__text p:last-child {
  margin-bottom: 0;
}

.prose-narrow {
  width: min(100% - 2rem, 70ch);
  margin-inline: auto;
  padding: var(--section-pad) 0;
}

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

.prose-narrow section:first-of-type {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.prose-narrow h2 {
  margin-bottom: 0.85rem;
}

.prose-narrow p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 0.85rem;
}

.prose-narrow p:last-child {
  margin-bottom: 0;
}

.legal-body {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding: var(--section-pad) 0;
}

.legal-body h1 {
  margin-bottom: 0.5rem;
}

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

.legal-body h2 {
  margin-top: 1.75rem;
  margin-bottom: 0.65rem;
  font-size: clamp(20px, 2.8vw, 26px);
}

.legal-body h3 {
  margin-top: 1.15rem;
  margin-bottom: 0.45rem;
}

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

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

.contact-wrap {
  width: min(100% - 2rem, 640px);
  margin-inline: auto;
  padding: var(--section-pad) 0;
}

.contact-wrap > p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0.75rem 0 0.5rem;
}

.contact-email {
  display: block;
  margin-bottom: 1.75rem;
  font-size: 15px;
}

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

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
  color: var(--text);
}

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

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

.form-agree {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 1.15rem 0;
  font-size: 13px;
  color: var(--text-muted);
}

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

.form-agree label {
  line-height: 1.45;
}

.form-error {
  display: none;
  color: #e8a0a0;
  font-size: 12px;
  margin-top: 0.35rem;
}

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

.form-actions {
  margin-top: 0.5rem;
}

.confirm-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.5rem 1.35rem;
}

.confirm-panel h2 {
  font-size: 24px;
  margin-bottom: 0.65rem;
}

.confirm-panel p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 0.65rem;
}

.confirm-panel .ref {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
}

.sitemap-list {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding: var(--section-pad) 0;
  display: flex;
  flex-direction: column;
}

.sitemap-list a.sitemap-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 1.25rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  align-items: baseline;
}

.sitemap-list a.sitemap-row:first-child {
  border-top: 1px solid var(--border);
}

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

.sitemap-row__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
}

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

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

.site-footer__upper {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding: 2.5rem 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}

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

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

.footer-group h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.footer-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

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

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

.footer-mail {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding: 0 0 1.75rem;
}

.footer-mail a {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.4px;
}

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

.site-footer__lower {
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
}

.site-footer__lower-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding: 1.15rem 0 1.35rem;
}

.footer-notice {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

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

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

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

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

.reveal {
  opacity: 0;
  transition: opacity 240ms ease;
}

.reveal.is-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transition: none;
  }
}

.consent-pill {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 90;
  display: none;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-btn);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.consent-pill.is-visible {
  display: inline-flex;
}

.consent-pill:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.consent {
  display: none;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 1.35rem 0;
}

.consent.is-visible {
  display: block;
}

.consent__inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.consent__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.consent__copy {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 62ch;
}

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
}

.consent__link {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  padding: 0;
}

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

.consent__policy {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 12px;
  color: var(--text-muted);
}

.consent__cats {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.consent__cats.is-visible {
  display: flex;
}

.consent__main.is-hidden {
  display: none;
}

.consent-cat {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  background: var(--surface-alt);
}

.consent-cat label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 13px;
  cursor: pointer;
}

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

.consent-cat strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.15rem;
}

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

@media (max-width: 1024px) {
  .cat-grid {
    gap: 1rem;
  }

  .site-footer__upper {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1rem;
    gap: 0;
    z-index: 110;
  }

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

  .site-nav a {
    padding: 0.7rem 0.35rem;
    border-bottom: 1px solid var(--border);
    white-space: normal;
  }

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

  .site-header {
    position: sticky;
  }

  .site-header__inner {
    position: relative;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero__media {
    grid-column: 1;
    grid-row: 1;
    min-height: 240px;
  }

  .hero__media img {
    min-height: 240px;
  }

  .hero__panel {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    max-width: none;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    padding: 2rem 1.25rem;
  }

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

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

  .mission {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .mission::before {
    display: none;
  }

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

  .prose-band {
    grid-template-columns: 1fr;
  }

  .prose-band--flip .prose-band__text,
  .prose-band--flip .prose-band__aside {
    order: unset;
  }
}

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

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

  .cat-card {
    min-height: 360px;
  }

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

  .steps::before {
    display: none;
  }

  .regions-list__row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .row-card {
    grid-template-columns: 72px 1fr;
    gap: 0.85rem;
  }

  .row-card__thumb {
    width: 72px;
    height: 72px;
  }

  .row-card .btn {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0.25rem;
  }

  .split-card,
  .split-card--flip {
    grid-template-columns: 1fr;
  }

  .split-card--flip .split-card__photo,
  .split-card--flip .split-card__body {
    order: unset;
  }

  .site-footer__upper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .sitemap-list a.sitemap-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .band-card__photo {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 480px) {
  .brand__name {
    font-size: 15px;
  }

  .hero__panel {
    padding: 1.5rem 1.15rem;
  }

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

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

  .consent-pill {
    bottom: 0.75rem;
    right: 0.75rem;
  }
}
