:root {
  --ink: #1d1f24;
  --muted: #666b75;
  --line: #e8e9ee;
  --paper: #fbfbfc;
  --white: #ffffff;
  --accent: #e01b86;
  --accent-dark: #a90f62;
  --cyan: #0d8ea2;
  --charcoal: #30343b;
  --soft: #f2f5f6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 251, 252, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  width: clamp(170px, 22vw, 250px);
  height: auto;
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

nav a {
  text-decoration: none;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 70px);
  padding: clamp(30px, 5vw, 72px) clamp(18px, 4vw, 56px) 44px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-word {
  margin: 0 0 18px;
  color: var(--accent);
  font-family: Arial Black, Arial, Helvetica, sans-serif;
  font-size: clamp(56px, 7vw, 92px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 6px;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.lead {
  max-width: 620px;
  color: var(--charcoal);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: var(--accent);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.button.full {
  width: 100%;
}

.hero-photo {
  margin: 0;
}

.hero-photo img {
  width: 100%;
  height: min(68vh, 640px);
  min-height: 380px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(29, 31, 36, 0.18);
}

.intro,
.band,
.prices,
.equipment,
.contacts {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 4vw, 56px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 36px;
  align-items: start;
  background: var(--white);
}

.intro p,
.section-head p,
.equipment p,
.contacts p {
  color: var(--muted);
  font-size: 17px;
}

.quick-facts {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-facts li {
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quick-facts strong,
.quick-facts span {
  display: block;
}

.quick-facts span {
  color: var(--muted);
}

.band {
  background: var(--charcoal);
  color: var(--white);
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.band .section-head p,
.band article p {
  color: #d9dde3;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-grid article {
  min-height: 210px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
}

.gallery img {
  width: 100%;
  height: clamp(280px, 40vw, 560px);
  object-fit: cover;
}

.prices {
  background: var(--white);
}

.price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 18px;
  background: var(--white);
}

.price-list span {
  color: var(--charcoal);
}

.price-list strong {
  flex: 0 0 auto;
  color: var(--accent);
  white-space: nowrap;
}

.equipment {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 36px;
  align-items: center;
  background: var(--soft);
}

.equipment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.equipment-tags span {
  padding: 10px 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--charcoal);
}

.contacts {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 36px;
  align-items: start;
  background: var(--white);
}

.contact-panel {
  padding: 24px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 8px;
}

.contact-panel p {
  margin-bottom: 18px;
  color: var(--white);
}

.contact-panel strong,
.contact-panel span {
  display: block;
}

.contact-panel span {
  color: #d9dde3;
}

.phone-link {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.phone-link:hover {
  color: #ffd6ec;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

@media (max-width: 900px) {
  .hero,
  .intro,
  .equipment,
  .contacts {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .service-grid,
  .price-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .brand-logo {
    width: min(82vw, 280px);
  }

  .hero {
    padding-top: 26px;
  }

  .hero-photo img {
    height: 330px;
    min-height: 330px;
  }

  .service-grid,
  .price-list,
  .gallery {
    grid-template-columns: 1fr;
  }

  .price-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  footer {
    flex-direction: column;
  }
}
