/* ===== Ваши Краши — базовые переменные ===== */
:root {
  --beige: #f2ede1;
  --beige-dark: #e5ddc9;
  --blue: #6f9dfb;
  --blue-dark: #4d7ce8;
  --orange: #ff5800;
  --orange-dark: #e64e00;
  --ink: #17151c;
  --ink-soft: #2b2833;
  --white: #ffffff;
  --gray: #6b6873;

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --radius: 18px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--beige);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }

.icon { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* Skip CTA for a11y / quick access */
.skip-cta {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--orange);
  color: var(--white);
  padding: 12px 18px;
  z-index: 999;
  border-radius: 0 0 10px 0;
}
.skip-cta:focus { left: 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 10px 24px rgba(255,88,0,.35); }
.btn-dark { background: var(--ink); color: var(--beige); }
.btn-dark:hover { box-shadow: 0 10px 24px rgba(0,0,0,.25); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-lg { padding: 17px 32px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-header { display: none; }

/* ===== Typography helpers ===== */
.eyebrow {
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--orange);
  margin: 0 0 10px;
}
.eyebrow-light { color: var(--blue); }

.section-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 400;
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.05;
  letter-spacing: .01em;
  margin: 0 0 20px;
}
.section-title-light { color: var(--beige); }

.section { padding: 88px 0; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--beige);
  border-bottom: 1px solid rgba(23,21,28,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.logo img { border-radius: 8px; }
.logo-text {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 19px;
  letter-spacing: .01em;
}
.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-weight: 600;
  font-size: 15px;
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--orange);
  transition: width .2s ease;
}
.main-nav a:hover::after { width: 100%; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23,21,28,.15) 0%, rgba(23,21,28,.35) 55%, rgba(23,21,28,.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 140px;
  padding-bottom: 72px;
}
.hero-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 400;
  font-size: clamp(64px, 13vw, 148px);
  line-height: .86;
  margin: 6px 0 20px;
  color: var(--white);
}
.hero-sub {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,.88);
  margin: 0 0 34px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ===== Stats strip ===== */
.stats-strip {
  background: var(--ink);
  color: var(--beige);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 36px 24px;
}
.stat { display: flex; flex-direction: column; gap: 6px; text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--orange);
  text-transform: uppercase;
}
.stat-label { font-size: 13px; color: rgba(242,237,225,.75); line-height: 1.4; }

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-media img {
  border-radius: var(--radius);
  box-shadow: 0 24px 48px rgba(23,21,28,.18);
}
.about-text p { line-height: 1.7; color: var(--ink-soft); }
.feature-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.feature-list li {
  padding-left: 26px;
  position: relative;
  line-height: 1.6;
  color: var(--ink-soft);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 3px;
  transform: rotate(45deg);
}

/* ===== CTA banners ===== */
.cta-banner { padding: 64px 0; }
.cta-banner-blue { background: var(--blue); color: var(--ink); }
.cta-banner-orange { background: var(--orange); color: var(--white); }
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.cta-banner-inner h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 400;
  font-size: clamp(24px, 3.4vw, 36px);
  margin: 0;
  max-width: 640px;
  line-height: 1.1;
}
.cta-banner-orange .cta-banner-inner p {
  width: 100%;
  max-width: 640px;
  margin: -10px 0 0;
  order: 2;
  opacity: .92;
}
.cta-banner-orange .btn { order: 3; }

/* ===== Members ===== */
.members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.member-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(23,21,28,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.member-card:hover { transform: translateY(-6px); box-shadow: 0 18px 34px rgba(23,21,28,.12); }
.member-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}
.member-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 400;
  font-size: 19px;
  margin: 0 0 6px;
}
.member-card p { margin: 0; font-size: 14px; color: var(--gray); line-height: 1.5; }

/* ===== Music card ===== */
.music-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
  background: var(--ink);
  color: var(--beige);
  border-radius: var(--radius);
  padding: 40px;
}
.music-card-art {
  background: var(--orange);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.music-card-art img { width: 72%; }
.music-card-body p { color: rgba(242,237,225,.8); line-height: 1.6; }
.music-card-body .section-title { color: var(--beige); margin-bottom: 14px; }
.music-card-body .eyebrow { color: var(--blue); }

/* ===== Gallery ===== */
.gallery-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 18px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  transition: transform .35s ease;
}
.gallery-grid a, .gallery-grid > img { overflow: hidden; border-radius: 14px; }
.gallery-grid img:hover { transform: scale(1.04); }
.gallery-grid img:nth-child(1) { grid-row: span 2; height: 100%; }

/* ===== Socials ===== */
.socials-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  padding: 22px;
  border-radius: 14px;
  background: var(--white);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(23,21,28,.06);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.social-card:hover { transform: translateY(-4px); background: var(--blue); }

/* ===== Contacts ===== */
.contacts { background: var(--ink); color: var(--beige); }
.contacts-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: center;
}
.contacts-lede { color: rgba(242,237,225,.8); line-height: 1.7; max-width: 480px; }
.contact-person {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 32px 0 28px;
  padding: 22px 26px;
  background: rgba(255,255,255,.06);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
  max-width: 380px;
}
.contact-role { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--blue); font-weight: 700; }
.contact-name { font-family: var(--font-display); text-transform: uppercase; font-size: 22px; }
.contact-phone { font-weight: 700; color: var(--orange); font-size: 17px; margin-top: 4px; }
.contact-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.contacts-note { margin-top: 22px; font-size: 13px; color: rgba(242,237,225,.5); }

.contacts-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.contacts-brand img { width: 200px; height: 200px; border-radius: 24px; }
.contacts-social-row { display: flex; gap: 14px; }
.contacts-social-row a {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  transition: background .2s ease;
}
.contacts-social-row a:hover { background: var(--orange); }

/* ===== Footer ===== */
.site-footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,.08); }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 24px;
  flex-wrap: wrap;
  color: rgba(242,237,225,.7);
  font-size: 13px;
}
.logo-footer .logo-text { color: var(--beige); font-size: 15px; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-media { order: -1; }
  .members-grid { grid-template-columns: repeat(2, 1fr); }
  .socials-grid { grid-template-columns: repeat(2, 1fr); }
  .contacts-grid { grid-template-columns: 1fr; }
  .contacts-brand { order: -1; }
  .music-card { grid-template-columns: 1fr; text-align: center; }
  .music-card-art { max-width: 200px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .btn-header { display: none; }
  .burger { display: flex; }
  .site-header.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--beige);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 18px;
    border-bottom: 1px solid rgba(23,21,28,.08);
  }
  .hero { min-height: 100vh; }
  .hero-content { padding-top: 100px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-grid img:nth-child(1) { grid-row: span 2; }
  .members-grid { grid-template-columns: 1fr; }
  .socials-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
  .cta-banner-inner { flex-direction: column; align-items: flex-start; }
}

@media (min-width: 761px) {
  .btn-header { display: inline-flex; }
}
