: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: 20px;
  --btn-radius: 0px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: 'Trebuchet MS', 'Segoe UI', sans-serif;
  --font-body: 'Palatino Linotype', Palatino, serif;
  --max: 1040px;
  --section-pad: 68px;
  --header-h: 64px;
  --header-h-shrink: 52px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.58;
  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: 700;
  letter-spacing: -0.4px;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 0.6em;
}

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

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

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 1em;
}

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

ul,
ol {
  margin: 0 0 1em;
  padding-left: 1.25em;
}

.kicker {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0 0 0.75rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  transition: height 0.2s ease, box-shadow 0.2s ease;
  height: var(--header-h);
}

.site-header.is-shrunk {
  height: var(--header-h-shrink);
  box-shadow: var(--shadow);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}

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

.site-header.is-shrunk .brand img {
  width: 24px;
  height: 27px;
}

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

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

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

.nav-list a {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-muted);
  letter-spacing: -0.1px;
  white-space: nowrap;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--accent);
}

.nav-list a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--accent);
}

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--btn-radius);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  padding: 0.7rem 1.15rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s 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);
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 520px;
  overflow: hidden;
}

.hero__media {
  grid-area: 1 / 1;
  justify-self: end;
  width: 66.666%;
  min-height: 520px;
}

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

.hero__panel {
  grid-area: 1 / 1;
  align-self: center;
  position: relative;
  z-index: 1;
  width: min(480px, calc(100% - 40px));
  margin: 2.5rem 0 2.5rem max(20px, calc((100% - var(--max)) / 2));
  background: var(--surface);
  padding: 2.25rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero__panel .independence-notice {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.independence-notice {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-muted);
  margin: 0;
}

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

.section--tight {
  padding: 48px 0;
}

.section__head {
  margin-bottom: 2rem;
}

.section__head--center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

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

.category-card__img {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

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

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

.category-card__body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.category-card__body h3 {
  margin: 0;
}

.category-card__body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  flex: 1;
}

.category-card__link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  color: var(--accent);
}

.category-card__link:hover {
  color: var(--accent-2);
}

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

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

.approach-block h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

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

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

.closing-cta h2 {
  margin-bottom: 0.75rem;
}

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

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

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

.regions p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin: 0 auto 2rem;
}

.regions__names {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.35rem, 3.5vw, 2.1rem);
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: #fff;
}

.look-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 2rem;
}

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

.look-item__num {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  margin-bottom: 0.4rem;
}

.look-item h3 {
  margin-bottom: 0.45rem;
}

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

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

.mission__left {
  padding-right: 2rem;
  border-right: 1px solid var(--border);
}

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

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

.page-hero p {
  max-width: 640px;
  color: var(--text-muted);
}

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

.venue-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.2s ease;
}

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

.venue-card__media {
  overflow: hidden;
  border-radius: calc(var(--radius) - 8px);
  aspect-ratio: 16 / 10;
}

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

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

.venue-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.venue-card__meta {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

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

.venue-card h2 {
  font-size: 1.2rem;
  margin: 0;
}

.venue-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
}

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

.venue-card--img-bottom .venue-card__media {
  order: 2;
}

.venue-card--img-bottom .venue-card__body {
  order: 1;
}

.venue-card--img-bottom .venue-card__actions {
  order: 3;
}

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

.gem-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

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

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

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

.gem-row--flip .gem-row__content {
  order: 1;
}

.gem-row__media {
  position: relative;
  min-height: 240px;
  overflow: hidden;
}

.gem-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.25s ease;
}

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

.gem-row__name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0.85rem 1rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: rgba(12, 28, 35, 0.72);
  z-index: 1;
  letter-spacing: -0.3px;
}

.gem-row__content {
  padding: 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  justify-content: center;
}

.gem-row__content .venue-card__actions {
  margin-top: 0.5rem;
}

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

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

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

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

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

.band__aside {
  border-left: 3px solid var(--accent);
  padding: 1.5rem 0 1.5rem 1.5rem;
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.band__aside .aside-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.75rem;
}

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

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

.note-section:last-of-type {
  border-bottom: 0;
}

.note-section .num-kicker {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.65rem;
}

.note-section h2 {
  margin-bottom: 1rem;
}

.note-section p {
  color: var(--text-muted);
  max-width: 720px;
}

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

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

.contact-email {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 1.25rem;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

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

.form-row label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--secondary);
}

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

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

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

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

.agree-row input {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

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

.field-error {
  display: block;
  color: #8b2e2e;
  font-size: 0.82rem;
  margin-top: 0.35rem;
  font-family: var(--font-heading);
}

.form-status[aria-live] {
  margin-top: 0.75rem;
  color: #8b2e2e;
  font-size: 0.9rem;
}

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

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

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

.legal-body {
  padding-bottom: var(--section-pad);
  max-width: 720px;
}

.legal-body h2 {
  margin-top: 2rem;
  font-size: 1.25rem;
}

.legal-body h3 {
  margin-top: 1.25rem;
  font-size: 1.05rem;
}

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

.sitemap-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.15rem;
  align-items: center;
  padding-bottom: var(--section-pad);
  font-family: var(--font-heading);
  font-size: 0.95rem;
}

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

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

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

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

.site-footer {
  margin-top: 2rem;
  background: var(--bg);
}

.site-footer__independence {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 1.25rem 0 0.5rem;
}

.site-footer__main {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 1.25rem 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  justify-content: space-between;
  align-items: flex-start;
}

.site-footer__brand {
  max-width: 320px;
}

.site-footer__brand .brand {
  margin-bottom: 0.75rem;
}

.site-footer__brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.site-footer__links {
  flex: 1;
  min-width: 240px;
}

.footer-kicker {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.65rem;
}

.footer-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.15rem;
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-family: var(--font-heading);
  font-size: 0.82rem;
}

.footer-inline li:not(:last-child)::after {
  content: "·";
  margin-left: 0.5rem;
  margin-right: 0.35rem;
  color: var(--text-muted);
}

.footer-inline a {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
}

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

.site-footer__rule {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  border: 0;
  border-top: 1px solid var(--border);
}

.site-footer__bottom {
  background: var(--surface-alt);
  padding: 0.9rem 0;
}

.site-footer__bottom-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
}

.site-footer__bottom p,
.site-footer__bottom .requisites {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.78rem;
}

.footer-legal a,
.footer-legal button {
  color: var(--text-muted);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

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

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

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

.consent {
  background: var(--surface);
  max-width: 520px;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 3px solid var(--accent);
  padding: 1.5rem 1.4rem 1.35rem;
  max-height: min(90vh, 640px);
  overflow-y: auto;
}

.consent h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

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

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}

.consent__btn {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  padding: 0.55rem 1rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.consent__btn:hover,
.consent__btn:focus-visible {
  background: var(--accent);
  color: var(--on-accent);
  outline: none;
}

.consent__btn--manage {
  border-color: var(--border);
  color: var(--text-muted);
}

.consent__btn--manage:hover {
  background: var(--surface-alt);
  color: var(--text);
  border-color: var(--border);
}

.consent__cats {
  overflow: hidden;
  transition: height 0.28s ease;
}

.consent__cats[hidden] {
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

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

.consent-cat:first-child {
  border-top: 0;
  margin-top: 0.5rem;
}

.consent-cat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

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

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

.consent__policy {
  font-size: 0.82rem;
  margin-top: 0.5rem;
}

.consent__policy a {
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .wrap {
    width: min(100% - 36px, var(--max));
  }
}

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

  .nav-list {
    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 1.25rem 1rem;
    gap: 0;
    box-shadow: var(--shadow);
  }

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

  .nav-list li {
    border-bottom: 1px solid var(--border);
  }

  .nav-list a {
    display: block;
    padding: 0.85rem 0;
    white-space: normal;
  }

  .nav-list a[aria-current="page"] {
    box-shadow: none;
    color: var(--accent);
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .hero__media {
    width: 100%;
    min-height: 280px;
    order: 1;
  }

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

  .hero__panel {
    order: 2;
    width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }

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

  .mission__left {
    padding-right: 0;
    border-right: 0;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
  }

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

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

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

@media (max-width: 768px) {
  .category-grid,
  .masonry {
    grid-template-columns: 1fr;
  }

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

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

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

  .gem-row--flip .gem-row__media,
  .gem-row--flip .gem-row__content {
    order: unset;
  }

  .gem-row__media {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .regions__names {
    gap: 1rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .wrap {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 52px 0;
  }

  .hero__panel {
    padding: 1.5rem 1.25rem;
  }

  .consent {
    padding: 1.15rem 1rem;
  }

  .consent__actions {
    flex-direction: column;
  }

  .consent__btn {
    width: 100%;
    text-align: center;
  }
}
