/* =============================================
   CAT MUSEUM BUDAPEST — Design System
   Colors: #F5C400 (yellow) · #0BA89A (teal)
   Dark warm background
   ============================================= */

:root {
  --yellow:     #F5C400;
  --yellow-d:   #C9A100;
  --teal:       #0BA89A;
  --teal-d:     #098F82;
  --bg:         #0E0D0C;
  --surface:    #171614;
  --surface-2:  #1F1D1C;
  --surface-3:  #272422;
  --text:       #FFFFFF;
  --muted:      rgba(255,255,255,.52);
  --border:     rgba(255,255,255,.08);
  --nav-h:      72px;
  --max:        1300px;
  --font:       'Plus Jakarta Sans', 'Space Grotesk', sans-serif;
  --radius:     16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── CONTAINER ── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SECTION ── */
.section { padding: 100px 0; }
.section--surface { background: var(--surface); }
.section--surface2 { background: var(--surface-2); }

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.section-tag--yellow { color: var(--yellow); }

.section-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--yellow {
  background: var(--yellow);
  color: #000;
  box-shadow: 0 4px 24px rgba(245,196,0,.28);
}
.btn--yellow:hover { background: #FFD200; box-shadow: 0 8px 32px rgba(245,196,0,.42); }

.btn--teal {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 4px 24px rgba(11,168,154,.28);
}
.btn--teal:hover { background: #0DBDAE; box-shadow: 0 8px 32px rgba(11,168,154,.42); }

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--outline:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.04); }

.btn--lg { padding: 18px 38px; font-size: 15px; }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 32px;
  transition: background .3s ease, backdrop-filter .3s ease, box-shadow .3s ease;
}
.nav.scrolled {
  background: rgba(14,13,12,.88);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(245,196,0,.3));
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin-left: auto;
}
.nav__links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .03em;
  transition: color .15s ease;
}
.nav__links a:hover { color: var(--text); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
}

.nav__lang {
  display: flex;
  gap: 6px;
  margin-right: 8px;
}
.nav__lang button {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  padding: 4px 8px;
  border-radius: 6px;
  transition: color .15s, background .15s;
  letter-spacing: .06em;
}
.nav__lang button.active,
.nav__lang button:hover { color: var(--yellow); background: rgba(245,196,0,.1); }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 40px) 24px 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 50%, rgba(11,168,154,.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 80% 30%, rgba(245,196,0,.10) 0%, transparent 60%),
    var(--bg);
}

/* Animated paw prints background */
.hero__paws {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.paw {
  position: absolute;
  font-size: 24px;
  opacity: 0;
  animation: pawFloat var(--dur, 8s) var(--delay, 0s) infinite ease-in-out;
}
@keyframes pawFloat {
  0%   { opacity: 0; transform: translateY(0) rotate(var(--rot,15deg)) scale(.8); }
  15%  { opacity: .12; }
  85%  { opacity: .08; }
  100% { opacity: 0; transform: translateY(-120px) rotate(calc(var(--rot,15deg) + 20deg)) scale(1.2); }
}

.hero__logo {
  margin: 0 auto 32px;
  max-width: 180px;
  filter: drop-shadow(0 0 40px rgba(245,196,0,.4));
  animation: logoBreathe 4s ease-in-out infinite;
}
@keyframes logoBreathe {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 40px rgba(245,196,0,.4)); }
  50%       { transform: scale(1.04); filter: drop-shadow(0 0 60px rgba(245,196,0,.6)); }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(11,168,154,.1);
  border: 1px solid rgba(11,168,154,.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero__eyebrow span { width:6px; height:6px; border-radius:50%; background:var(--teal); }

.hero__title {
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.0;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: normal;
  color: var(--yellow);
}

.hero__sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

.hero__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}
.hero__badge-icon {
  width: 28px; height: 28px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{opacity:.3} 50%{opacity:1} }

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--border);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item__num {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--yellow);
  margin-bottom: 6px;
}
.stat-item__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .04em;
}

/* =============================================
   ABOUT
   ============================================= */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__visual {
  position: relative;
}
.about__img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
}
.about__img-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 48%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid var(--bg);
}
.about__quote {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text);
  border-left: 3px solid var(--teal);
  padding-left: 20px;
  margin: 32px 0;
}
.about__rules {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.about__rule {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}
.about__rule-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(11,168,154,.12);
  display: grid;
  place-items: center;
  font-size: 15px;
  flex-shrink: 0;
}

/* =============================================
   CATS SECTION
   ============================================= */
.cats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.cat-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.cat-card__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--surface-3);
  font-size: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-card__img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--surface-3), var(--surface-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
}
.cat-card__body { padding: 16px; }
.cat-card__name {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 2px;
  color: var(--text);
}
.cat-card__breed {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: .04em;
}
.cat-card__gender {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
}
.cat-card--adopt {
  border-color: rgba(245,196,0,.3);
}
.cat-card--adopt .cat-card__body { background: rgba(245,196,0,.04); }
.adopt-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(245,196,0,.12);
  padding: 2px 8px;
  border-radius: 100px;
  margin-top: 6px;
}

/* =============================================
   EXHIBITION
   ============================================= */
.exhibition__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
  border-radius: var(--radius);
  overflow: hidden;
}
.exh-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--surface-3);
}
.exh-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.exh-card:hover .exh-card__img { transform: scale(1.06); }
.exh-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.exh-card__title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}
.exh-card__desc {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}
.exh-card__tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  width: fit-content;
}
.exh-card__tag--yellow { background: rgba(245,196,0,.2); color: var(--yellow); }
.exh-card__tag--teal   { background: rgba(11,168,154,.2); color: var(--teal); }

/* =============================================
   TICKETS
   ============================================= */
.tickets__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.ticket-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease;
}
.ticket-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,196,0,.3);
}
.ticket-card--featured {
  background: linear-gradient(135deg, rgba(245,196,0,.12), rgba(11,168,154,.08));
  border-color: rgba(245,196,0,.4);
  position: relative;
  overflow: hidden;
}
.ticket-card--featured::before {
  content: 'LEGJOBB ÉRTÉKE';
  position: absolute;
  top: 14px; right: -22px;
  background: var(--yellow);
  color: #000;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 4px 32px;
  transform: rotate(45deg);
}
.ticket-card__icon { font-size: 36px; margin-bottom: 16px; }
.ticket-card__name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.ticket-card__price {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: 4px;
}
.ticket-card__price span {
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
}
.ticket-card__duration {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
}
.ticket-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  margin-bottom: 24px;
}
.ticket-card__features li {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.ticket-card__features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 800;
  flex-shrink: 0;
}
.ticket-card .btn { width: 100%; justify-content: center; }

/* Vouchers */
.vouchers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.voucher-card {
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.voucher-card__icon { font-size: 32px; }
.voucher-card__label { font-size: 13px; color: var(--muted); margin-bottom: 4px; }
.voucher-card__price { font-size: 22px; font-weight: 800; }
.voucher-card__note { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* =============================================
   WORKSHOPS
   ============================================= */
.workshops__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.ws-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease;
}
.ws-card:hover { transform: translateY(-4px); }
.ws-card__header {
  padding: 36px 28px 28px;
  background: linear-gradient(135deg, var(--surface-3), var(--surface-2));
  position: relative;
}
.ws-card__emoji { font-size: 48px; margin-bottom: 12px; }
.ws-card__title { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.ws-card__sub { font-size: 13px; color: var(--muted); }
.ws-card__body { padding: 24px 28px; }
.ws-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.75);
  margin-bottom: 10px;
}
.ws-card__feature-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}
.ws-card__footer {
  padding: 0 28px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ws-card__price { font-size: 24px; font-weight: 900; }
.ws-card__price sub { font-size: 13px; font-weight: 500; color: var(--muted); }

/* =============================================
   FAQ
   ============================================= */
.faq__search-wrap {
  position: relative;
  max-width: 560px;
  margin: 0 auto 48px;
}
.faq__search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--muted);
  pointer-events: none;
}
#faqSearch {
  width: 100%;
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 16px 20px 16px 48px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color .2s ease;
}
#faqSearch:focus { border-color: var(--teal); }
#faqSearch::placeholder { color: var(--muted); }

.faq__cats {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.faq__cat-btn {
  font-size: 12px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 100px;
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  color: var(--muted);
  transition: all .15s ease;
}
.faq__cat-btn.active,
.faq__cat-btn:hover {
  background: rgba(11,168,154,.12);
  border-color: var(--teal);
  color: var(--teal);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item.hidden { display: none; }
.faq-item:hover { border-color: rgba(255,255,255,.15); }
.faq-item.open { border-color: var(--teal); }

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.faq-item__icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--surface-3);
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: transform .3s ease, background .2s ease;
}
.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--teal);
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 22px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-item__a {
  max-height: 300px;
  padding: 0 22px 18px;
}
.faq__empty {
  text-align: center;
  padding: 48px;
  color: var(--muted);
  display: none;
}

/* =============================================
   CONTACT
   ============================================= */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact__info { display: flex; flex-direction: column; gap: 20px; }
.contact-block {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-block__icon {
  font-size: 24px;
  width: 44px; height: 44px;
  background: rgba(11,168,154,.1);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-block__label { font-size: 11px; font-weight: 700; letter-spacing: .07em; color: var(--muted); text-transform: uppercase; margin-bottom: 4px; }
.contact-block__value { font-size: 15px; font-weight: 600; }
.contact-block__sub { font-size: 12px; color: var(--muted); margin-top: 2px; }

.contact__hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 8px;
}
.contact__hours-row {
  font-size: 13px;
  color: rgba(255,255,255,.7);
}
.contact__hours-row strong { color: var(--text); }

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 420px;
}
.contact__map iframe {
  width: 100%; height: 100%; border: none;
}
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-btn {
  width: 42px; height: 42px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  transition: background .15s, border-color .15s, transform .15s;
}
.social-btn:hover {
  background: var(--surface-3);
  border-color: rgba(255,255,255,.25);
  transform: translateY(-2px);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo img {
  height: 48px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 10px rgba(245,196,0,.25));
}
.footer__tagline { font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 260px; }
.footer__col-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  transition: color .15s;
}
.footer__links a:hover { color: var(--yellow); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: 12px; color: var(--muted); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 12px; color: var(--muted); transition: color .15s; }
.footer__legal a:hover { color: var(--text); }

/* =============================================
   MOBILE
   ============================================= */
@media (max-width: 1024px) {
  .cats__grid { grid-template-columns: repeat(3, 1fr); }
  .tickets__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 16px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav__links { display: none; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(14,13,12,.97); backdrop-filter: blur(20px); padding: 32px 24px; gap: 4px; }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 18px; font-weight: 700; color: var(--text); padding: 10px 0; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
  .nav__lang { margin-left: auto; }

  .hero__title { font-size: clamp(36px, 9vw, 56px); }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__img-float { display: none; }
  .cats__grid { grid-template-columns: repeat(2, 1fr); }
  .exhibition__grid { grid-template-columns: 1fr 1fr; }
  .tickets__grid { grid-template-columns: 1fr; }
  .vouchers__grid { grid-template-columns: 1fr; }
  .workshops__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .cats__grid { grid-template-columns: repeat(2, 1fr); }
  .exhibition__grid { grid-template-columns: 1fr; }
  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
  .hero__badges { flex-direction: column; gap: 12px; }
}
