:root {
  --bg: #faf5ef;
  --surface: #ffffff;
  --surface-alt: #f0e6da;
  --text: #241c14;
  --text-muted: #645648;
  --border: rgba(36, 28, 20, 0.12);
  --accent: #a8533a;
  --accent-2: #4f6b52;
  --secondary: #3a2c20;
  --on-accent: #ffffff;
  --dark: #2a2017;
  --radius: 20px;
  --radius-btn: 6px;
  --font-heading: 'Trebuchet MS', 'Segoe UI', sans-serif;
  --font-body: 'Palatino Linotype', Palatino, serif;
  --max-width: 1400px;
  --section-pad: 136px;
  --header-h: 88px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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: 300;
  letter-spacing: -1.4px;
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(46px, 8vw, 90px);
  line-height: 1.0;
}

h2 {
  font-size: clamp(30px, 5.2vw, 52px);
}

h3 {
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.8px;
}

p {
  margin: 0 0 1.1em;
}

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

.kicker {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  text-decoration: none;
  background: var(--accent);
  color: var(--on-accent);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  color: var(--on-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(36, 28, 20, 0.14);
}

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

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

.btn--ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--border);
}

.text-link {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.text-link:hover {
  color: var(--secondary);
}

.site-header {
  position: relative;
  z-index: 100;
  background: transparent;
  min-height: var(--header-h);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  width: min(100% - 48px, var(--max-width));
  margin-inline: auto;
  min-height: var(--header-h);
  padding: 1rem 0;
  position: relative;
}

.nav__panel {
  display: contents;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.nav__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.nav__contact {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
  white-space: nowrap;
  justify-self: end;
}

.nav__contact[aria-current="page"],
.nav__contact:hover {
  color: var(--secondary);
}

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

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

.hero {
  padding-bottom: 4rem;
}

.hero__letterbox {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 21 / 9;
}

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

.hero__copy {
  width: min(100% - 48px, 920px);
  margin: 3.5rem auto 0;
  text-align: center;
}

.hero__copy p {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 42rem;
  margin-inline: auto;
}

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

.independence-inline {
  margin-top: 1.75rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 36rem;
  margin-inline: auto;
}

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

.category-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(36, 28, 20, 0.1);
}

.category-card__media {
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  aspect-ratio: 4 / 3;
}

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

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

.category-card__body {
  padding: 1.5rem 0.25rem 0.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
}

.category-card h3 {
  margin: 0;
}

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

.regions {
  background: var(--dark);
  color: #e8dfd4;
  padding: var(--section-pad) 0;
}

.regions .kicker {
  color: #c48a72;
}

.regions h2 {
  color: #faf5ef;
}

.regions__frame {
  max-width: 40rem;
  color: rgba(250, 245, 239, 0.72);
  margin-bottom: 3.5rem;
}

.regions__names {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3.5rem;
  align-items: baseline;
  border-top: 1px solid rgba(250, 245, 239, 0.16);
  border-bottom: 1px solid rgba(250, 245, 239, 0.16);
  padding: 2.5rem 0;
}

.regions__names span {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(28px, 4.5vw, 56px);
  letter-spacing: -1.4px;
  line-height: 1;
  color: #faf5ef;
}

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

.quote-card {
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
}

.quote-card blockquote {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  color: var(--text);
}

.quote-card cite {
  font-style: normal;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

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

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: -0.6px;
  color: var(--text);
}

.accordion__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  position: relative;
}

.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
}

.accordion__icon::before {
  width: 12px;
  height: 1.5px;
}

.accordion__icon::after {
  width: 1.5px;
  height: 12px;
  transition: opacity 0.2s ease;
}

.accordion__item.is-open .accordion__icon::after {
  opacity: 0;
}

.accordion__panel {
  display: none;
  padding: 0 0 1.5rem;
  color: var(--text-muted);
  max-width: 42rem;
}

.accordion__item.is-open .accordion__panel {
  display: block;
}

.timeline {
  position: relative;
  max-width: 820px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 1px;
  background: var(--border);
}

.timeline__item {
  position: relative;
  padding: 0 0 2.5rem 2.75rem;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
}

.timeline__item h3 {
  margin-bottom: 0.4rem;
}

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

.page-hero {
  padding: 4.5rem 0 3rem;
}

.page-hero__inner {
  max-width: 780px;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: var(--section-pad);
}

.venue-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.venue-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(36, 28, 20, 0.1);
}

.venue-card__media {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius) var(--radius) 0 0;
}

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

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

.venue-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem 0.15rem 0;
  gap: 0.85rem;
}

.venue-card__title {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: -0.6px;
}

.venue-card__meta {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.venue-card__desc {
  color: var(--text-muted);
  flex: 1;
  margin: 0;
}

.venue-card__body .btn {
  margin-top: auto;
}

.premier-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding-bottom: var(--section-pad);
}

.premier-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 2.5rem;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-radius: var(--radius);
}

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

.premier-row--flip {
  grid-template-columns: 1fr 40%;
}

.premier-row--flip .premier-row__media {
  order: 2;
}

.premier-row--flip .premier-row__body {
  order: 1;
}

.premier-row__media {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
}

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

.premier-row:hover .premier-row__media img {
  transform: scale(1.02);
}

.premier-row__body {
  padding: 0.5rem 0;
}

.premier-row__body .kicker {
  margin-bottom: 0.65rem;
}

.premier-row__body p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.masonry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: var(--section-pad);
  align-items: start;
}

.masonry-card {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-radius: var(--radius);
}

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

.masonry-card__media {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 5 / 4;
}

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

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

.masonry-card--bottom .masonry-card__media {
  order: 2;
}

.masonry-card--bottom .masonry-card__copy {
  order: 1;
}

.masonry-card--bottom .btn {
  order: 3;
}

.masonry-card__copy .kicker {
  margin-bottom: 0.5rem;
}

.masonry-card__copy p {
  color: var(--text-muted);
  margin: 0.75rem 0 0;
}

.catalog-close {
  padding: 0 0 var(--section-pad);
  max-width: 40rem;
  color: var(--text-muted);
}

.editorial-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3.5rem;
  align-items: start;
  padding-bottom: var(--section-pad);
}

.editorial-index {
  position: sticky;
  top: 1.5rem;
  padding: 1.25rem 0;
}

.editorial-index h2 {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.editorial-index ol {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid var(--border);
}

.editorial-index a {
  display: block;
  padding: 0.55rem 0 0.55rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--text-muted);
  border-left: 2px solid transparent;
  margin-left: -1px;
}

.editorial-index a:hover,
.editorial-index a:focus {
  color: var(--accent);
  border-left-color: var(--accent);
}

.editorial-prose section {
  padding: 0 0 3.5rem;
  scroll-margin-top: 1.5rem;
}

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

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

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

.band-stack {
  padding-bottom: var(--section-pad);
}

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

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

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

.band--flip .band__rule {
  order: 1;
}

.band__rule {
  height: 1px;
  background: var(--border);
  margin: 0;
  align-self: stretch;
  width: 100%;
  min-height: 120px;
  background:
    linear-gradient(180deg, transparent, var(--border) 12%, var(--border) 88%, transparent);
  background-size: 1px 100%;
  background-repeat: no-repeat;
  background-position: center;
}

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

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  padding-bottom: var(--section-pad);
  align-items: start;
}

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

.contact-email {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
}

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

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

.form-field label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  color: var(--secondary);
}

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

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

.form-agree {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

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

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

.form-error {
  display: none;
  color: var(--accent);
  font-size: 0.9rem;
  margin: 0.35rem 0 0.75rem;
}

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

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

.form-success h2 {
  font-size: clamp(28px, 4vw, 40px);
}

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

.legal-content {
  max-width: 820px;
  padding-top: 3rem;
  padding-bottom: var(--section-pad);
}

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

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.85rem;
  font-size: clamp(24px, 3.2vw, 34px);
}

.legal-content h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.65rem;
}

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

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

.sitemap-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: var(--section-pad);
  border-top: 1px solid var(--border);
}

.sitemap-row {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

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

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

.sitemap-row p {
  margin: 0;
  color: var(--text-muted);
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}

.footer-independence {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 52rem;
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.footer-pills span {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.footer-about {
  max-width: 48rem;
  color: var(--text-muted);
  margin-bottom: 2.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.75rem;
}

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

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

.footer-group h3 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-variant: small-caps;
  margin: 0 0 0.75rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
  color: var(--secondary);
}

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

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

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

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

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

.footer-bottom__copy {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-requisites {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.footer-consent {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

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

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

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

.consent-modal {
  width: min(100%, 520px);
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  padding: 1.75rem 1.75rem 1.5rem;
  max-height: calc(100vh - 2.5rem);
  overflow: auto;
}

.consent-modal h2 {
  font-size: clamp(24px, 4vw, 32px);
  margin-bottom: 0.65rem;
}

.consent-modal > p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 0.98rem;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin-bottom: 1rem;
}

.consent-actions .btn {
  margin-right: 0.25rem;
}

.consent-link {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.consent-policy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

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

.consent-manage__panel {
  width: min(100%, 420px);
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
  padding: 1.5rem;
}

.consent-manage__panel h3 {
  margin-bottom: 1rem;
}

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

.consent-cat:last-of-type {
  border-bottom: none;
  margin-bottom: 1rem;
}

.consent-cat p {
  margin: 0.2rem 0 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.consent-cat label {
  font-family: var(--font-heading);
  font-weight: 600;
}

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

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

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

@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav__panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    transform: none;
    background: var(--surface);
    padding: 1.25rem 24px 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 32px rgba(36, 28, 20, 0.08);
    z-index: 120;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

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

  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .nav.is-open .nav__contact {
    display: inline-block;
  }

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

  .editorial-layout {
    grid-template-columns: 1fr;
  }

  .editorial-index {
    position: static;
  }

  .editorial-index ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    border: none;
  }

  .editorial-index a {
    border: none;
    padding: 0.25rem 0;
    margin: 0;
  }

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

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

  .premier-row,
  .premier-row--flip {
    grid-template-columns: 1fr;
  }

  .premier-row--flip .premier-row__media,
  .premier-row--flip .premier-row__body {
    order: initial;
  }

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

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

  .band--flip .band__text,
  .band--flip .band__rule {
    order: initial;
  }

  .band__rule {
    min-height: 1px;
    height: 1px;
    background: var(--border);
  }

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

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

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

@media (max-width: 560px) {
  .container,
  .nav,
  .hero__copy {
    width: min(100% - 32px, var(--max-width));
  }

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

  .regions__names {
    gap: 1.25rem 2rem;
  }

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

@media (max-width: 480px) {
  :root {
    --section-pad: 64px;
    --header-h: 72px;
  }

  .page-hero {
    padding-top: 3rem;
  }

  .form-card {
    padding: 1.35rem;
  }
}
