/* ============================================================
   FONTS
   ============================================================ */
@font-face {
  font-family: 'Factor A';
  src: url('assets/fonts/FactorA-ExtraBold.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: 'Factor A';
  src: url('assets/fonts/FactorA-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: 'Factor A';
  src: url('assets/fonts/FactorA-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --bg:      #E6AA37;   /* YELLOW — main bg */
  --deep:    #042436;   /* dark navy for text sections */
  --blue:    #0A558C;
  --teal:    #37787D;
  --orange:  #EB4623;
  --yellow:  #E6AA37;
  --white:   #FFFFFF;
  --silver:  #AAB4B9;
  --dim:     rgba(4,36,54,0.45);

  --font:    'Factor A', 'Arial Black', Arial, sans-serif;
  --nav-h:   60px;
  --max:     1140px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--yellow);
  color: var(--deep);
  font-family: var(--font);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, iframe, svg { display: block; max-width: 100%; }
ul { list-style: none; }
section[id] { scroll-margin-top: var(--nav-h); }

/* ============================================================
   DARK-SECTION OVERRIDES — white text on dark/vivid backgrounds
   ============================================================ */
.team p,
.coming-place p,
.merch p,
.events p,
.footer p,
.pcard p,
.pmenu p,
.concept__block p { color: rgba(255,255,255,0.75); }

/* ============================================================
   SHARED
   ============================================================ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }

.eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--orange);
  margin-bottom: 16px;
}

.sub-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--teal);
  margin-bottom: 12px;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(4,36,54,0.65);
  margin-bottom: 12px;
}
p:last-child { margin-bottom: 0; }

.btn {
  display: inline-block;
  padding: 14px 30px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover { background: #cc3b1c; transform: translateY(-2px); }

.btn--white {
  background: var(--white);
  color: var(--orange);
}
.btn--white:hover { background: var(--yellow); color: var(--bg); }

.btn--outline {
  background: transparent;
  border: 2px solid currentColor;
  color: var(--yellow);
}
.btn--outline:hover { background: var(--yellow); color: var(--bg); transform: translateY(-2px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 calc(clamp(40px, 5vw, 80px) + 40px) 0 40px;
  background: transparent;
  transition: background 0.3s;
}
/* once nav is solid (past hero), restore normal right padding */
.nav--solid { padding-right: 40px; }
.nav--solid { background: var(--deep); border-bottom: 2px solid var(--orange); }
.nav--solid .nav__links a { color: rgba(255,255,255,0.7); }
.nav--solid .nav__links a:hover { color: var(--white); }

.nav__logo { height: 30px; }
/* hide white nav logo when on bright yellow hero — show nothing (logo.svg is used in hero itself) */
/* nav logo (logo-white.svg) gets a dark tint on yellow, full white when solid */
.nav:not(.nav--solid) .nav__logo { filter: brightness(0); }

.nav__links { display: flex; gap: 32px; }
.nav__links a {
  font-weight: 800;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(4,36,54,0.7);
  transition: color 0.2s;
  position: relative;
}
.nav__links a:hover { color: var(--deep); }
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width 0.2s;
}
.nav__links a:hover::after { width: 100%; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--deep); transition: transform 0.2s, opacity 0.2s; }
.nav--solid .nav__burger span { background: var(--white); }
.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 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--yellow);
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* bold teal rectangle floating top-left — constructivist accent */
.hero::before {
  content: '';
  position: absolute;
  top: -40px; left: -40px;
  width: clamp(120px, 20vw, 260px);
  height: clamp(120px, 20vw, 260px);
  background: var(--teal);
  opacity: 0.55;
  transform: rotate(12deg);
  pointer-events: none;
}

/* blue rectangle bottom-left */
.hero::after {
  content: '';
  position: absolute;
  bottom: 10%; left: -20px;
  width: clamp(60px, 8vw, 120px);
  height: clamp(200px, 30vh, 380px);
  background: var(--blue);
  opacity: 0.45;
  pointer-events: none;
}

/* giant ghosted letter behind everything */
.hero__bg-letter {
  position: absolute;
  font-size: clamp(400px, 60vw, 900px);
  font-weight: 900;
  line-height: 1;
  color: rgba(4,36,54,0.06);
  right: -8vw;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
}

/* vertical orange slab far right */
.hero__slab {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: clamp(40px, 5vw, 80px);
  background: var(--orange);
}

/* floating elements */
@keyframes float-a {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  40% { transform: translateY(-14px) rotate(3deg); }
  70% { transform: translateY(8px) rotate(-2deg); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  35% { transform: translateY(12px) rotate(-4deg); }
  65% { transform: translateY(-8px) rotate(2deg); }
}

.hero__el { position: absolute; pointer-events: none; }
.hero__el--1 { width: clamp(80px, 10vw, 160px); top: 10%; left: 4%; opacity: 0.7; animation: float-a 8s ease-in-out infinite; }
.hero__el--2 { width: clamp(60px, 8vw, 130px); bottom: 12%; left: 12%; opacity: 0.65; animation: float-b 10s ease-in-out infinite 1.2s; }
.hero__el--3 { width: clamp(50px, 6vw, 100px); top: 15%; right: 10%; opacity: 0.55; animation: float-a 7s ease-in-out infinite 2.4s; }
.hero__el--4 { width: clamp(100px, 14vw, 220px); bottom: 0; right: 6%; opacity: 0.9; filter: drop-shadow(0 16px 32px rgba(0,0,0,0.35)); animation: float-b 9s ease-in-out infinite 0.6s; }

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 720px;
}

.hero__logo { width: clamp(240px, 44vw, 560px); }

.hero__tagline {
  font-size: clamp(1.1rem, 2.6vw, 1.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: var(--deep);
}

.hero__loc {
  font-size: 1rem;
  font-weight: 800;
  color: rgba(4,36,54,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: -16px 0 0;
}

.hero__cta {
  align-self: flex-start;
  display: inline-block;
  padding: 14px 32px;
  background: var(--deep);
  color: var(--white);
  font-family: var(--font);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: background 0.2s, transform 0.15s;
}
.hero__cta:hover { background: var(--orange); transform: translateY(-2px); }

.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  color: rgba(4,36,54,0.35);
  animation: bounce 2.2s ease-in-out infinite;
  transition: color 0.2s;
}
.hero__scroll:hover { color: var(--deep); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* ============================================================
   О НАС
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.about__photo-wrap {
  position: relative;
  overflow: hidden;
}
.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4,36,54,0.3) 0%, rgba(235,70,35,0.15) 100%);
}
.about__photo-el {
  position: absolute;
  width: 160px;
  bottom: -20px; right: -20px;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.5));
}

.about__body {
  background: var(--white);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.about__title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin-bottom: 40px;
  color: var(--deep);
}

.about__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* ============================================================
   КОНЦЕПЦИЯ
   ============================================================ */
.concept { background: var(--orange); }

.concept__quote {
  position: relative;
  padding: 80px 40px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.concept__quote blockquote {
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.05;
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.concept__el {
  position: absolute;
  width: clamp(80px, 12vw, 180px);
  left: 4%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.4;
}
.concept__el--right {
  left: auto;
  right: 4%;
  opacity: 0.4;
}

.concept__grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 2px;
  background: rgba(0,0,0,0.15);
  padding: 2px;
}

.concept__block {
  background: rgba(0,0,0,0.2);
  padding: 48px 40px;
}
.concept__block h3 {
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  color: var(--white);
}
.concept__block p { color: rgba(255,255,255,0.85); }

.concept__3d {
  width: 200px;
  object-fit: contain;
  padding: 24px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}

/* ============================================================
   КОМАНДА
   ============================================================ */
.team {
  background: var(--blue);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

/* yellow horizontal bar — constructivist accent */
.team::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--yellow);
}

/* bold orange rectangle — top right */
.team::after {
  content: '';
  position: absolute;
  top: 40px; right: -20px;
  width: clamp(80px, 12vw, 180px);
  height: clamp(80px, 12vw, 180px);
  background: var(--orange);
  opacity: 0.22;
  transform: rotate(15deg);
}

.team__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-top: 24px;
}

.team__big-text {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  color: rgba(255,255,255,0.18);
}

.team__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.team__el { width: 120px; opacity: 0.7; }

.team__founder {
  display: flex;
  align-items: flex-start;
  gap: 36px;
}

.team__photo-wrap {
  position: relative;
  flex-shrink: 0;
}
.team__photo {
  width: clamp(140px, 16vw, 220px);
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: grayscale(20%);
}
.team__photo-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--yellow);
  color: var(--deep);
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-align: center;
  padding: 6px 0;
}

.team__person {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
  text-align: right;
}
.team__role {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--yellow);
}
.team__bio {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.team__quote {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.6;
  color: var(--white);
  border-right: 3px solid var(--yellow);
  padding-right: 20px;
  font-style: normal;
  text-align: right;
}

/* ============================================================
   МОНЧЕГОРСК
   ============================================================ */
.place { background: var(--deep); }

.place__header {
  padding: 80px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.place__title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--white);
}
.place__sub { font-size: 0.85rem; color: var(--silver); letter-spacing: 0.06em; }

.place__row { display: grid; gap: 2px; background: rgba(0,0,0,0.3); }
.place__row--two { grid-template-columns: 1fr 1fr; }

.pcard {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
.pcard--teal  { background: var(--teal); }
.pcard--orange { background: var(--orange); }

.pcard__tag {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
}
.pcard__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.pcard p { color: rgba(255,255,255,0.85); }
.pcard__link {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  margin-top: auto;
  transition: color 0.2s;
}
.pcard__link:hover { color: var(--white); }
.pcard__el {
  position: absolute;
  width: 120px;
  bottom: -16px; right: 24px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
  opacity: 0.9;
}

/* MENU */
.place__menu { padding: 0; }

.pmenu {
  background: #031e30;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

/* constructivist corner accent */
.pmenu::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 160px 160px 0;
  border-color: transparent var(--orange) transparent transparent;
  opacity: 0.18;
}

.pmenu__head {
  margin-bottom: 36px;
  display: flex;
  align-items: flex-end;
  gap: 24px;
}
.pmenu__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--white);
}
.pmenu__accent {
  width: 6px;
  height: clamp(40px, 5vw, 60px);
  background: var(--orange);
  flex-shrink: 0;
  margin-bottom: 4px;
}

/* TABS — bold underline style */
.menu__tabs {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 36px;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}
.menu__tab {
  padding: 12px 24px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  color: rgba(255,255,255,0.45);
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 0.18s;
}
.menu__tab:hover { color: var(--white); border-bottom-color: var(--yellow); }
.menu__tab--active { color: var(--yellow); border-bottom-color: var(--yellow); }

.menu__panel--hidden { display: none; }

.menu__note {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--yellow);
  margin-bottom: 20px;
  padding: 8px 14px;
  background: rgba(230,170,55,0.1);
  display: inline-block;
}

.menu__list { display: flex; flex-direction: column; }

.menu__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s, padding-left 0.15s;
}
.menu__item:hover { padding-left: 8px; }
.menu__item:last-child { border-bottom: none; }
.menu__item b {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
}
.menu__item span { font-size: 0.78rem; color: var(--silver); margin-top: 3px; line-height: 1.4; }
.menu__item em {
  font-style: normal;
  font-weight: 900;
  font-size: 1rem;
  color: var(--white);
  background: var(--orange);
  padding: 4px 12px;
  white-space: nowrap;
  flex-shrink: 0;
}
.menu__item--star { background: rgba(230,170,55,0.06); padding-left: 12px; }
.menu__item--star b { color: var(--yellow); }
.menu__item--star em { background: var(--yellow); color: var(--deep); }

.menu__callout {
  margin-top: 24px;
  padding: 16px 20px;
  border-left: 4px solid var(--teal);
  background: rgba(55,120,125,0.12);
  font-size: 0.88rem;
  font-weight: 800;
  color: rgba(255,255,255,0.7);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* MAP */
.place__map { position: relative; }
.place__map iframe { width: 100%; height: 400px; border: none; filter: brightness(0.8) saturate(0.8); }
.place__map-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(2,24,41,0.95));
  padding: 48px 40px 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.place__map-label span { font-size: 0.9rem; color: var(--white); font-weight: 800; }

/* ============================================================
   ПОЛЯРНЫЕ ЗОРИ
   ============================================================ */
.coming-place {
  background: var(--teal);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
/* bold yellow top stripe */
.coming-place::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: var(--yellow);
}
/* dark rectangle bottom-left */
.coming-place::after {
  content: '';
  position: absolute;
  bottom: -30px; left: 8%;
  width: clamp(60px, 10vw, 140px);
  height: clamp(120px, 20vw, 280px);
  background: var(--deep);
  opacity: 0.25;
  transform: rotate(-6deg);
}

.coming-place__el {
  position: absolute;
  width: clamp(100px, 18vw, 280px);
  top: 50%; left: -4%;
  transform: translateY(-50%);
  opacity: 0.5;
}
.coming-place__el--right { left: auto; right: -4%; opacity: 0.45; }

.coming-place__title {
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  color: var(--white);
}
.coming-place__sub {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
/* yellow dot before sub */
.coming-place__sub::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--yellow);
  flex-shrink: 0;
}

/* ============================================================
   МЕРЧ
   ============================================================ */
.merch {
  background: var(--blue);
  padding: 80px 0 0;
}
.merch__title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 48px;
  color: var(--white);
}
.merch__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 0;
}
.merch__cell {
  background: rgba(0,0,0,0.2);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px;
}
.merch__cell img { width: 60%; object-fit: contain; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3)); }
.merch__cell span {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 12px;
}

/* ============================================================
   ПАРТНЁРАМ
   ============================================================ */
.partners {
  background: var(--yellow);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.partners::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 400px;
  height: 400px;
  background: var(--orange);
  opacity: 0.18;
  transform: rotate(30deg);
  pointer-events: none;
}
.partners__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.partners__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--deep);
  margin-top: 12px;
}
.partners .eyebrow { color: rgba(4,36,54,0.5); }
.partners__right { display: flex; flex-direction: column; gap: 24px; max-width: 360px; }
.partners__right p { color: rgba(4,36,54,0.7); font-weight: 500; }

.partners__el {
  position: absolute;
  width: clamp(100px, 15vw, 220px);
  right: 0; bottom: -20px;
  opacity: 0.2;
}

/* ============================================================
   СОБЫТИЯ
   ============================================================ */
.events {
  background: var(--deep);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.events__title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 48px;
  color: var(--white);
}

.events__intro {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 500;
}

.events__list { display: flex; flex-direction: column; margin-bottom: 40px; }

.event-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  transition: padding-left 0.2s, border-color 0.2s;
}
.event-item:hover { padding-left: 12px; border-bottom-color: rgba(255,255,255,0.18); }
.event-item:last-child { border-bottom: none; }

.event-item__num {
  font-size: 0.8rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 0.12em;
  flex-shrink: 0;
  min-width: 28px;
}
/* color-code each number */
.event-item:nth-child(2) .event-item__num { color: var(--teal); }
.event-item:nth-child(3) .event-item__num { color: var(--yellow); }

.event-item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.event-item__name {
  display: block;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.event-item:hover .event-item__name { color: var(--white); }
.event-item__desc {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.2s;
}
.event-item:hover .event-item__desc { color: rgba(255,255,255,0.6); }
.event-item__arrow {
  font-size: 1.4rem;
  color: var(--orange);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.event-item:nth-child(2):hover .event-item__arrow { color: var(--teal); }
.event-item:nth-child(3):hover .event-item__arrow { color: var(--yellow); }
.event-item:hover .event-item__arrow { opacity: 1; transform: translateX(4px); }

.events__el {
  position: absolute;
  width: clamp(120px, 18vw, 260px);
  right: 40px; bottom: 60px;
  opacity: 0.55;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.2));
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--deep); border-top: 3px solid var(--orange); }

.footer__top {
  padding: 56px 40px 40px;
  display: flex;
  justify-content: center;
}
.footer__logo { height: 44px; }

.footer__bottom {
  padding: 0 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
}
.footer__vk {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--yellow);
  transition: color 0.2s;
  white-space: nowrap;
}
.footer__vk:hover { color: var(--white); }
.footer__credits p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  text-align: right;
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
  .about__photo-wrap { min-height: 360px; }
  .concept__grid { grid-template-columns: 1fr; }
  .concept__3d { display: none; }
  .place__row--two { grid-template-columns: 1fr; }
  .merch__grid { grid-template-columns: 1fr 1fr; }
  .partners__inner { flex-direction: column; align-items: flex-start; }
  .team__inner { flex-direction: column; gap: 32px; }
  .team__right { align-items: flex-start; }
  .team__founder { flex-direction: row; align-items: flex-start; gap: 24px; }
}

@media (max-width: 640px) {
  :root { --nav-h: 56px; }
  .container { padding: 0 20px; }

  /* NAV */
  .nav { padding: 0 20px; }
  .nav--solid { padding-right: 20px; }
  .nav__burger { display: flex; }
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--deep);
    flex-direction: column;
    align-items: center;
    padding: 32px 20px;
    gap: 24px;
    border-top: 2px solid var(--orange);
    z-index: 190;
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 0.9rem; color: var(--white); }

  /* HERO */
  .hero { align-items: flex-start; padding-top: calc(var(--nav-h) + 48px); }
  .hero__content { padding: 0 20px; padding-right: 36px; }
  .hero__slab { width: 12px; }
  .hero__el--3 { display: none; }
  .hero__el--4 { width: 100px; right: 4%; }
  .hero__bg-letter { font-size: clamp(280px, 75vw, 420px); right: -12vw; }

  /* О НАС */
  .about__body { padding: 48px 20px; }
  .about__cols { grid-template-columns: 1fr; gap: 24px; }
  .about__photo-el { display: none; }

  /* КОНЦЕПЦИЯ */
  .concept__quote { padding: 56px 20px 40px; }
  .concept__block { padding: 32px 20px; }
  .concept__el { display: none; }

  /* КОМАНДА */
  .team { padding: 64px 0; }
  .team__inner { flex-direction: column; gap: 32px; }
  .team__big-text { font-size: clamp(2.4rem, 12vw, 4rem); }
  .team__right { width: 100%; }
  .team__el { display: none; }
  .team__founder { flex-direction: column; gap: 20px; }
  .team__photo { width: 100%; aspect-ratio: 4/3; object-position: center 10%; }
  .team__person { text-align: left; }
  .team__quote { border-right: none; border-left: 3px solid var(--yellow); padding-right: 0; padding-left: 16px; text-align: left; }

  /* МОНЧЕГОРСК */
  .place__header { padding: 48px 0 28px; }
  .pmenu { padding: 32px 20px; }
  .pmenu::before { border-width: 0 80px 80px 0; opacity: 0.12; }
  .pmenu__head { flex-direction: column; gap: 12px; }
  .menu__tabs { gap: 0; }
  .menu__tab { padding: 10px 12px; font-size: 0.68rem; }
  .place__map-label { position: static; flex-direction: column; align-items: flex-start; padding: 24px 20px; background: var(--deep); }
  .pcard__el { display: none; }

  /* ПОЛЯРНЫЕ ЗОРИ */
  .coming-place { padding: 64px 0; }
  .coming-place__el { display: none; }

  /* МЕРЧ */
  .merch__grid { grid-template-columns: 1fr; }
  .merch { padding: 64px 0 0; }

  /* ПАРТНЁРАМ */
  .partners { padding: 64px 0; }
  .partners__right { width: 100%; }
  .partners__right .btn { width: 100%; text-align: center; }
  .partners__el { display: none; }

  /* СОБЫТИЯ */
  .events { padding: 64px 0; }
  .events__el { display: none; }
  .event-item { gap: 16px; padding: 20px 0; }
  .event-item__desc { display: none; } /* скрываем описание на маленьких экранах */

  /* ФУТЕР */
  .footer__bottom { flex-direction: column; align-items: center; padding: 24px 20px 40px; }
  .footer__credits p { text-align: center; }
}
