:root {
  --bg: #f5f7f3;
  --surface: #ffffff;
  --surface-alt: #e9eee5;
  --text: #1a221a;
  --text-muted: #525d51;
  --border: rgba(26, 34, 26, 0.12);
  --accent: #5c7350;
  --accent-2: #9c6f3c;
  --secondary: #2c3a2a;
  --on-accent: #ffffff;
  --dark: #161f16;
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: 'Helvetica Neue', Arial, sans-serif;
  --radius: 6px;
  --btn-radius: 2px;
  --max-width: 1400px;
  --section-pad: 136px;
  --header-height: 96px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: -1.4px;
  line-height: 1.15;
}

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

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

p {
  margin-bottom: 1.2em;
}

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

.kicker {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1.2em;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.independence-notice {
  background: var(--surface-alt);
  padding: 8px 20px;
  text-align: center;
}

.independence-notice p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
  max-width: 900px;
  margin-inline: auto;
}

.site-header {
  position: relative;
  background: transparent;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 16px clamp(20px, 4vw, 48px);
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
}

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

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--btn-radius);
  padding: 10px 12px;
  cursor: pointer;
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s 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);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  list-style: none;
}

.main-nav a {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

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

main {
  min-height: 50vh;
}

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%);
}

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

.section-dark .kicker {
  color: rgba(255, 255, 255, 0.6);
}

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

.section-dark a {
  color: rgba(255, 255, 255, 0.9);
}

.hairline-h {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2em 0;
}

.hairline-v {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--accent);
  border-radius: var(--btn-radius);
  background: var(--accent);
  color: var(--on-accent);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--on-accent);
  box-shadow: 0 8px 24px rgba(26, 34, 26, 0.12);
}

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

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

.btn-listing {
  margin-top: auto;
}

.hero-letterbox {
  padding-top: 0;
  padding-bottom: var(--section-pad);
}

.hero-strip {
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  margin-bottom: clamp(48px, 8vw, 80px);
}

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

.hero-content {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.hero-content .hairline-h {
  margin-top: 2.5em;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.category-card {
  position: relative;
  text-decoration: none;
  color: var(--text);
}

.category-card:hover {
  color: var(--text);
}

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

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

.category-card:hover .category-card__image img {
  transform: scale(1.03);
}

.category-card__panel {
  position: relative;
  background: var(--surface);
  margin: -80px 20px 0;
  padding: 28px 24px;
  border-radius: var(--radius);
  z-index: 1;
}

.category-card__panel h3 {
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 0.6em;
}

.category-card__panel p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 1em;
}

.category-card__link {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.mission-left h2 {
  margin-bottom: 0.5em;
}

.about-band-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
}

.photo-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.photo-strip-wide img {
  width: 100%;
  border-radius: var(--radius);
}

.photo-caption {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  font-style: italic;
}

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

.regions-names {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 4vw, 48px);
  margin: 2em 0;
}

.regions-names span {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 300;
  letter-spacing: -1px;
  color: rgba(255, 255, 255, 0.95);
}

.regions-composition p {
  max-width: 640px;
  margin: 0 auto;
}

.page-header {
  padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 8vw, 100px);
  text-align: center;
}

.page-header.container {
  max-width: 780px;
}

.page-header p {
  color: var(--text-muted);
  font-size: 18px;
}

.catalog-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 36px);
}

.catalog-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 48px);
}

.venue-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}

.venue-card__media {
  position: relative;
  overflow: hidden;
}

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

.venue-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(22, 31, 22, 0.75));
}

.venue-card__overlay h3 {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--on-accent);
  letter-spacing: -0.5px;
}

.venue-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.venue-card__location {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.venue-card__desc {
  font-size: 15px;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 20px;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 48px);
}

.masonry-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}

.masonry-card--reverse {
  flex-direction: column-reverse;
}

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

.masonry-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.masonry-card__city {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 8px;
}

.masonry-card__body h3 {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 12px;
}

.masonry-card__location {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.masonry-card__desc {
  font-size: 15px;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 24px;
}

.catalog-grid-2-tall .venue-card__media img {
  aspect-ratio: 3 / 2;
}

.catalog-closing {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding-top: clamp(60px, 8vw, 100px);
  color: var(--text-muted);
}

.editorial-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: clamp(60px, 8vw, 100px) 0;
  border-bottom: 1px solid var(--border);
}

.editorial-band:last-child {
  border-bottom: none;
}

.editorial-band--reverse .editorial-band__text {
  order: 2;
}

.editorial-band--reverse .editorial-band__photo {
  order: 1;
}

.editorial-band__photo img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.editorial-band h2 {
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 1em;
}

.editorial-column {
  max-width: 70ch;
  margin: 0 auto;
  padding: clamp(60px, 10vw, 120px) clamp(20px, 4vw, 48px);
}

.editorial-section {
  padding: clamp(40px, 6vw, 60px) 0;
  border-bottom: 1px solid var(--border);
}

.editorial-section:last-child {
  border-bottom: none;
}

.editorial-section h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  margin-bottom: 1em;
}

.contact-page {
  padding: clamp(80px, 12vw, 140px) 0;
}

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

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

.contact-email {
  margin-bottom: 2.5em;
  font-size: 18px;
}

.contact-form {
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  border: 1px solid var(--border);
  border-radius: var(--btn-radius);
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
}

.form-error {
  color: #8b3a3a;
  font-size: 14px;
  margin-top: 8px;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.confirmation-panel {
  text-align: center;
  padding: 48px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.confirmation-panel h2 {
  font-size: clamp(24px, 4vw, 32px);
  margin-bottom: 1em;
}

.confirmation-ref {
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin: 1em 0;
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(80px, 12vw, 140px) clamp(20px, 4vw, 48px);
}

.legal-content h1 {
  font-size: clamp(36px, 6vw, 56px);
  margin-bottom: 0.5em;
}

.legal-content h2 {
  font-size: clamp(22px, 3.5vw, 32px);
  margin: 2em 0 0.8em;
}

.legal-content h3 {
  font-size: clamp(18px, 2.5vw, 24px);
  margin: 1.5em 0 0.6em;
  font-weight: 400;
}

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

.legal-content ul {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

.cookie-settings-link {
  display: inline-block;
  margin-top: 2em;
  font-size: 14px;
}

.sitemap-list {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(80px, 12vw, 140px) clamp(20px, 4vw, 48px);
}

.sitemap-list h1 {
  font-size: clamp(36px, 6vw, 56px);
  margin-bottom: 1.5em;
  text-align: center;
}

.sitemap-list ul {
  list-style: none;
}

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

.sitemap-list a {
  display: block;
  padding: 18px 0;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.sitemap-list a:hover {
  color: var(--accent);
  padding-left: 8px;
}

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: clamp(48px, 6vw, 72px) 0 clamp(32px, 4vw, 48px);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px) clamp(32px, 4vw, 48px);
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .brand-lockup {
  margin-bottom: 16px;
}

.footer-blurb {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
  justify-content: flex-end;
  max-width: 720px;
}

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

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

.footer-rule {
  border: none;
  border-top: 1px solid var(--border);
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-bottom {
  text-align: center;
  padding: clamp(24px, 4vw, 40px) clamp(20px, 4vw, 48px) 0;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-notice {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 16px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 16px;
}

.footer-legal a,
.footer-legal button {
  font-size: 12px;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
  text-decoration: underline;
}

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

.footer-copyright {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer-requisites {
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.8;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

.consent-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
}

.consent-modal h2 {
  font-size: clamp(22px, 4vw, 28px);
  margin-bottom: 12px;
}

.consent-modal > p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

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

.consent-category:last-of-type {
  border-bottom: none;
  margin-bottom: 24px;
}

.consent-category__text strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--text);
}

.consent-category__text span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.consent-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.consent-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.consent-toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--surface-alt);
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.consent-toggle__slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--surface);
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.consent-toggle input:checked + .consent-toggle__slider {
  background: var(--accent);
}

.consent-toggle input:checked + .consent-toggle__slider::before {
  transform: translateX(20px);
}

.consent-toggle input:disabled + .consent-toggle__slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.consent-actions .btn {
  flex: 1;
  min-width: 140px;
  text-align: center;
}

.consent-actions .btn-accept {
  order: -1;
}

.consent-link {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  text-align: center;
}

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

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

  .category-grid .category-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin-inline: auto;
    width: 100%;
  }
}

@media (max-width: 900px) {
  .catalog-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--surface);
    border-left: 1px solid var(--border);
    padding: 100px 32px 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
    overflow-y: auto;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .main-nav a {
    font-size: 14px;
  }

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

  .mission-grid .hairline-v {
    display: none;
  }

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

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

  .photo-strip-grid {
    grid-template-columns: 1fr;
  }

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

  .editorial-band--reverse .editorial-band__text,
  .editorial-band--reverse .editorial-band__photo {
    order: unset;
  }

  .category-grid .category-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }
}

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

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

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

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

  .footer-top {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

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

  body {
    font-size: 16px;
  }

  .brand-name {
    font-size: 16px;
    letter-spacing: 0.08em;
  }
}

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

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

  .category-card__image img,
  .nav-toggle span {
    transition: none;
  }
}
