/* ============================================================
   БЛЮЗ МИНУЗ — студия звукозаписи и аранжировки
   Дизайн-система: тёплая премиальная тёмная тема + янтарный акцент
   ============================================================ */

:root {
  /* --- Тёплый near-black фон + поверхности --- */
  --ink-900: #14110d;   /* основной фон */
  --ink-860: #1a1611;
  --ink-820: #211b15;   /* приподнятые поверхности / карточки */
  --ink-780: #2a231b;   /* hover-поверхности */
  --line:    #352c22;   /* границы */
  --line-2:  #463a2d;

  /* --- Текст (тёплый off-white) --- */
  --paper:     #f3ece0;
  --paper-dim: #cabfae;
  --muted:     #968b7c;
  --faint:     #6c6256;

  /* --- Акцент: янтарь (аналоговое тепло, лампы, винил) --- */
  --accent:      #f0a73c;
  --accent-hi:   #ffc572;
  --accent-deep: #c97c1c;
  --accent-soft: rgba(240, 167, 60, 0.14);
  --accent-line: rgba(240, 167, 60, 0.30);

  /* --- Типографика --- */
  --display: "Unbounded", system-ui, sans-serif;
  --sans: "Manrope", system-ui, -apple-system, sans-serif;

  /* --- Радиусы / тени --- */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow: 0 24px 60px -24px rgba(0,0,0,0.7);
  --shadow-accent: 0 18px 50px -18px rgba(240,167,60,0.45);

  /* --- Сетка / ритм --- */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(72px, 11vw, 150px);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--sans);
  background: var(--ink-900);
  color: var(--paper);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; }
::selection { background: var(--accent); color: #1a1207; }

/* ============================================================
   ТИПОГРАФИКА — ШКАЛА
   ============================================================ */
.display {
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
h1.display { font-size: clamp(2.6rem, 7.4vw, 6rem); }
h2.display { font-size: clamp(2rem, 4.6vw, 3.6rem); line-height: 1.02; }
h3 { font-family: var(--sans); font-weight: 700; letter-spacing: -0.01em; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--accent);
  display: inline-block;
}
.lede { font-size: clamp(1.05rem, 1.5vw, 1.32rem); color: var(--paper-dim); line-height: 1.55; text-wrap: pretty; }

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(48px, 7vw, 90px); }
.stack { display: flex; flex-direction: column; }
.section-head { max-width: 720px; display: flex; flex-direction: column; gap: 20px; margin-bottom: clamp(36px, 5vw, 64px); }

/* ============================================================
   КНОПКИ
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-weight: 700; font-size: 0.98rem; letter-spacing: -0.01em;
  padding: 0.95em 1.5em; border-radius: 100px;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), background .25s, box-shadow .25s, color .25s, border-color .25s;
  white-space: nowrap; position: relative;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn--primary { background: var(--accent); color: #1a1207; box-shadow: var(--shadow-accent); }
.btn--primary:hover { background: var(--accent-hi); transform: translateY(-2px); }
.btn--ghost { border: 1.5px solid var(--line-2); color: var(--paper); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-hi); transform: translateY(-2px); }
.btn--lg { padding: 1.1em 1.9em; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn svg { width: 1.1em; height: 1.1em; }

/* ============================================================
   ХЕДЕР
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 80;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(15, 12, 9, 0.78);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -0.02em; }
.brand__mark {
  width: 40px; height: 40px; border-radius: 13px; flex: none;
  background: linear-gradient(150deg, var(--accent-hi), var(--accent-deep));
  display: grid; place-items: center; color: #1a1207;
  box-shadow: 0 6px 18px -6px rgba(240,167,60,.6),
              inset 0 1px 0 rgba(255,255,255,.45),
              inset 0 0 0 1px rgba(255,255,255,.10);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s;
}
.brand:hover .brand__mark {
  transform: translateY(-1px) rotate(-3deg);
  box-shadow: 0 10px 24px -8px rgba(240,167,60,.75),
              inset 0 1px 0 rgba(255,255,255,.45),
              inset 0 0 0 1px rgba(255,255,255,.10);
}
.brand__mark svg { width: 24px; height: 24px; }
.brand__mark .eq__bar { transform-box: fill-box; transform-origin: bottom; }
.brand:hover .brand__mark .eq__bar { animation: eqPulse 1.1s ease-in-out infinite; }
.brand:hover .brand__mark .eq__bar:nth-child(2) { animation-delay: .12s; }
.brand:hover .brand__mark .eq__bar:nth-child(3) { animation-delay: .24s; }
.brand:hover .brand__mark .eq__bar:nth-child(4) { animation-delay: .12s; }
.brand:hover .brand__mark .eq__bar:nth-child(5) { animation-delay: 0s; }
@keyframes eqPulse {
  0%, 100% { transform: scaleY(1); }
  50%      { transform: scaleY(0.5); }
}
@media (prefers-reduced-motion: reduce) {
  .brand:hover .brand__mark .eq__bar { animation: none; }
}
.brand__name { font-size: 1.06rem; line-height: 1; }
.brand__name small { display: block; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; color: var(--muted); margin-top: 4px; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-size: 0.92rem; font-weight: 600; color: var(--paper-dim);
  padding: 8px 14px; border-radius: 100px; transition: color .2s, background .2s;
}
.nav a:hover { color: var(--paper); background: var(--ink-820); }
.header__actions { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line-2); place-items: center; }
.menu-toggle svg { width: 22px; height: 22px; }

@media (max-width: 1000px) {
  .nav { display: none; }
  .header__actions .btn--ghost { display: none; }
  .menu-toggle { display: grid; }
}

/* Мобильное меню */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90; background: rgba(13,10,7,0.97);
  backdrop-filter: blur(8px); display: flex; flex-direction: column;
  padding: 24px var(--gutter); gap: 8px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.mobile-menu a { font-family: var(--display); font-weight: 600; font-size: 1.5rem; padding: 14px 0; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 24px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(36px, 6vw, 70px); padding-bottom: var(--section-y); overflow: hidden; }
.hero__glow {
  position: absolute; inset: -20% -10% auto -10%; height: 70%;
  background: radial-gradient(60% 80% at 70% 0%, rgba(240,167,60,0.16), transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero__inner { position: relative; z-index: 1; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 8px;
  border: 1px solid var(--line-2); border-radius: 100px; font-size: 0.85rem; color: var(--paper-dim);
  margin-bottom: 28px;
}
.hero__badge b { color: var(--paper); font-weight: 700; }
.hero__badge .pill { background: var(--accent-soft); color: var(--accent-hi); font-weight: 700; padding: 4px 10px; border-radius: 100px; font-size: 0.76rem; white-space: nowrap; }
.hero__badge > span:last-child { text-wrap: balance; }
.hero h1 { margin-bottom: 26px; }
.hero h1 .amber { color: var(--accent); }
.hero__sub { max-width: 600px; margin-bottom: 38px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__note { font-size: 0.86rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero__note svg { width: 16px; height: 16px; color: var(--accent); }

/* 4 преимущества */
.advantages { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 1.6vw, 22px); margin-top: clamp(48px, 7vw, 84px); }
.adv {
  border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px;
  background: linear-gradient(180deg, var(--ink-860), var(--ink-900));
  display: flex; flex-direction: column; gap: 14px; min-height: 168px;
  transition: border-color .3s, transform .3s, background .3s;
}
.adv:hover { border-color: var(--accent-line); transform: translateY(-4px); background: linear-gradient(180deg, var(--ink-820), var(--ink-860)); }
.adv__ico { width: 42px; height: 42px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
.adv__ico svg { width: 22px; height: 22px; }
.adv h3 { font-size: 1.12rem; margin-top: auto; }
.adv p { font-size: 0.88rem; color: var(--muted); }

@media (max-width: 760px) { .advantages { grid-template-columns: 1fr 1fr; } }
@media (max-width: 440px) { .advantages { grid-template-columns: 1fr; } }

/* ============================================================
   MARQUEE — звёзды
   ============================================================ */
.stars { border-block: 1px solid var(--line); padding-block: clamp(28px, 4vw, 44px); background: var(--ink-860); }
.stars__label { text-align: center; font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px; }
.stars__label b { color: var(--paper-dim); font-weight: 700; }
.marquee { display: flex; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 18px; padding-right: 18px; flex: none; animation: scroll-x 42s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.star-chip {
  display: inline-flex; align-items: center; gap: 12px; padding: 12px 22px;
  border: 1px solid var(--line); border-radius: 100px; white-space: nowrap;
  font-weight: 600; font-size: 1.05rem; color: var(--paper-dim); flex: none;
}
.star-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; }
.star-card {
  position: relative; flex: none; width: 248px; aspect-ratio: 3 / 2;
  border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line);
}
.star-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(0.35) contrast(1.02); transition: filter 0.4s, transform 0.5s;
}
.star-card:hover img { filter: grayscale(0) contrast(1.05); transform: scale(1.04); }
.star-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 14px 11px;
  font-weight: 600; font-size: 0.96rem; color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,0.82));
}

/* ---------- Витрина студии и оборудования ---------- */
.studio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr;
  gap: 14px; margin-top: 46px;
}
.sg {
  position: relative; margin: 0; overflow: hidden;
  border-radius: var(--r-md); border: 1px solid var(--line); aspect-ratio: 4 / 3;
}
.sg--lg { grid-column: span 2; grid-row: span 2; }
.sg img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.sg:hover img { transform: scale(1.05); }
.sg figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 24px 14px 10px;
  font-weight: 600; font-size: 0.85rem; letter-spacing: 0.01em; color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
}
.sg--lg figcaption { font-size: 1rem; padding: 30px 18px 14px; }
@media (max-width: 760px) {
  .studio-grid { grid-template-columns: repeat(2, 1fr); }
  .sg--lg { grid-column: span 2; grid-row: span 1; aspect-ratio: 16 / 9; }
}
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ============================================================
   УСЛУГИ
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 22px); }
.svc {
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 2.6vw, 34px);
  background: var(--ink-860); display: flex; flex-direction: column; gap: 16px;
  transition: border-color .3s, transform .3s, background .3s; position: relative; overflow: hidden;
}
.svc::after { content: ""; position: absolute; inset: auto -40% -60% auto; width: 220px; height: 220px; background: radial-gradient(circle, var(--accent-soft), transparent 70%); opacity: 0; transition: opacity .4s; }
.svc:hover { border-color: var(--accent-line); transform: translateY(-5px); }
.svc:hover::after { opacity: 1; }
.svc__ico { width: 52px; height: 52px; border-radius: 14px; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--accent); background: var(--ink-820); }
.svc__ico svg { width: 26px; height: 26px; }
.svc h3 { font-size: 1.32rem; }
.svc p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.svc__meta { display: flex; align-items: baseline; gap: 10px; padding-top: 14px; border-top: 1px solid var(--line); }
.svc__price { font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--paper); }
.svc__unit { font-size: 0.8rem; color: var(--faint); }
.svc--feature { background: linear-gradient(170deg, rgba(240,167,60,0.10), var(--ink-820)); border-color: var(--accent-line); }
.svc__tag { position: absolute; top: 22px; right: 22px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-hi); background: var(--accent-soft); padding: 5px 11px; border-radius: 100px; }

@media (max-width: 920px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .services-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ПОРТФОЛИО — АУДИОПЛЕЕР
   ============================================================ */
.works { background: var(--ink-860); border-block: 1px solid var(--line); }
.player {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(20px, 3vw, 40px);
  border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden;
  background: var(--ink-820); box-shadow: var(--shadow);
}
/* Левая панель — текущий трек + волна */
.player__now { padding: clamp(26px, 3vw, 44px); display: flex; flex-direction: column; gap: 24px; background: linear-gradient(165deg, var(--ink-780), var(--ink-820)); position: relative; }
.player__cover {
  aspect-ratio: 1 / 1; border-radius: var(--r-lg); position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 12px, transparent 12px 24px),
    linear-gradient(150deg, var(--accent-deep), #3a2410 70%);
  display: grid; place-items: center; max-width: 220px;
}
.player__cover .disc {
  width: 56%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #2a2018 0 22%, #15100b 22% 24%, #221913 24% 48%, #15100b 48% 50%, #221913 50%);
  border: 1px solid rgba(255,255,255,0.06); position: relative;
  animation: spin 7s linear infinite; animation-play-state: paused;
}
.player__cover .disc::after { content:""; position:absolute; inset:42%; border-radius:50%; background: var(--accent); }
.player.is-playing .player__cover .disc { animation-play-state: running; }
@keyframes spin { to { transform: rotate(360deg); } }

.player__track-meta { display: flex; flex-direction: column; gap: 6px; }
.player__genre { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.player__title { font-family: var(--display); font-weight: 600; font-size: clamp(1.3rem, 2.4vw, 1.85rem); line-height: 1.05; }
.player__artist { color: var(--paper-dim); font-size: 0.95rem; }

/* Волна */
.wave { display: flex; align-items: center; gap: 3px; height: 64px; cursor: pointer; }
.wave__bar { flex: 1; min-width: 2px; border-radius: 3px; background: var(--line-2); transition: background .15s; }
.wave__bar.played { background: var(--accent); }
.player.is-playing .wave__bar.active { background: var(--accent-hi); }

.player__controls { display: flex; align-items: center; gap: 18px; }
.player__time { font-variant-numeric: tabular-nums; font-size: 0.82rem; color: var(--muted); min-width: 84px; }
.play-btn {
  width: 60px; height: 60px; flex: none; border-radius: 50%; background: var(--accent); color: #1a1207;
  display: grid; place-items: center; box-shadow: var(--shadow-accent); transition: transform .2s, background .2s;
}
.play-btn:hover { background: var(--accent-hi); transform: scale(1.06); }
.play-btn svg { width: 24px; height: 24px; }
.player__skip { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--paper-dim); transition: color .2s, border-color .2s; }
.player__skip:hover { color: var(--accent); border-color: var(--accent-line); }
.player__skip svg { width: 18px; height: 18px; }

/* Правая панель — плейлист + фильтр */
.player__list { padding: clamp(20px, 2.4vw, 30px); display: flex; flex-direction: column; min-height: 0; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.chip {
  font-size: 0.82rem; font-weight: 600; padding: 7px 14px; border-radius: 100px;
  border: 1px solid var(--line-2); color: var(--paper-dim); transition: all .2s;
}
.chip:hover { border-color: var(--accent-line); color: var(--paper); }
.chip.active { background: var(--accent); color: #1a1207; border-color: var(--accent); }

.playlist { display: flex; flex-direction: column; gap: 2px; overflow-y: auto; max-height: 360px; margin-right: -8px; padding-right: 8px; }
.playlist::-webkit-scrollbar { width: 6px; }
.playlist::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 100px; }
.track {
  display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 14px;
  padding: 12px 12px; border-radius: 12px; transition: background .2s; text-align: left; width: 100%;
}
.track:hover { background: var(--ink-780); }
.track.active { background: var(--accent-soft); }
.track__idx { font-variant-numeric: tabular-nums; font-size: 0.85rem; color: var(--faint); display: grid; place-items: center; }
.track.active .track__idx { color: var(--accent); }
.track__eq { display: none; gap: 2px; align-items: flex-end; height: 16px; justify-content: center; }
.track.active .track__idx { display: none; }
.track.active .track__eq { display: flex; }
.track__eq span { width: 3px; background: var(--accent); border-radius: 2px; height: 40%; }
.player.is-playing .track.active .track__eq span { animation: eq 0.9s ease-in-out infinite; }
.track__eq span:nth-child(2){ animation-delay: .2s; } .track__eq span:nth-child(3){ animation-delay: .4s; }
@keyframes eq { 0%,100%{height:30%;} 50%{height:95%;} }
.track__info { min-width: 0; }
.track__name { font-weight: 600; font-size: 0.96rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.track__artist { font-size: 0.8rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.track__genre { font-size: 0.72rem; color: var(--faint); border: 1px solid var(--line); padding: 3px 9px; border-radius: 100px; white-space: nowrap; }

@media (max-width: 880px) { .player { grid-template-columns: 1fr; } .player__cover { max-width: 160px; } }

/* ============================================================
   ЭТАПЫ
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(12px, 1.4vw, 20px); counter-reset: step; }
.step { position: relative; padding-top: 26px; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: var(--accent);
  display: block; margin-bottom: 14px;
}
.step::after { content: ""; position: absolute; top: 8px; left: 0; right: 0; height: 1px; background: var(--line); }
.step__line { position: absolute; top: 8px; left: 0; width: 34px; height: 1px; background: var(--accent); }
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--muted); }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; gap: 28px 24px; } }
@media (max-width: 460px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   О СТУДИИ
   ============================================================ */
.about { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.about__media { position: relative; }
.ph {
  border-radius: var(--r-lg); border: 1px solid var(--line); overflow: hidden; position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.022) 0 14px, transparent 14px 28px),
    var(--ink-820);
  display: grid; place-items: center; color: var(--faint);
}
.ph__label { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 0.78rem; letter-spacing: 0.04em; padding: 8px 12px; border: 1px dashed var(--line-2); border-radius: 8px; }
.ph--filled { background: var(--ink-820); }
.ph--filled img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ph--cap { margin: 0; }
/* Виктор сидит в левой части кадра — фокусируем кроп на нём, чтобы не срезать */
.ph--cap img { object-position: 24% center; }
.ph__cap {
  position: absolute; left: 0; right: 0; bottom: 0; display: flex; flex-direction: column; gap: 2px;
  padding: 30px 18px 16px; color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,0.78));
}
.ph__cap b { font-weight: 700; font-size: 1rem; }
.ph__cap span { font-size: 0.82rem; color: rgba(255,255,255,0.78); }
.about__media .ph--main { aspect-ratio: 4/5; }
.about__media .ph--sub { aspect-ratio: 1; position: absolute; bottom: -28px; right: -28px; width: 46%; box-shadow: var(--shadow); }
@media (max-width: 820px) { .about { grid-template-columns: 1fr; } .about__media .ph--sub { width: 40%; right: 0; } }

.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 36px; }
.stat { border-top: 2px solid var(--accent-line); padding-top: 14px; }
.stat__num { font-family: var(--display); font-weight: 700; font-size: clamp(1.7rem, 3vw, 2.4rem); letter-spacing: -0.02em; }
.stat__num .amber { color: var(--accent); }
.stat__cap { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }
.about__list { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; }
.about__list li { display: flex; gap: 13px; align-items: flex-start; color: var(--paper-dim); font-size: 0.98rem; }
.about__list svg { width: 20px; height: 20px; color: var(--accent); flex: none; margin-top: 2px; }

/* Оборудование — теги */
.gear { margin-top: 40px; }
.gear__title { font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.gear__tags { display: flex; flex-wrap: wrap; gap: 9px; }
.gear__tag { font-size: 0.86rem; color: var(--paper-dim); border: 1px solid var(--line); padding: 8px 14px; border-radius: 100px; transition: border-color .2s, color .2s; }
.gear__tag:hover { border-color: var(--accent-line); color: var(--paper); }

/* ============================================================
   ЦЕНЫ
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); align-items: stretch; }
.price-card {
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px, 2.8vw, 36px);
  background: var(--ink-860); display: flex; flex-direction: column; gap: 22px;
  transition: border-color .3s, transform .3s;
}
.price-card:hover { transform: translateY(-5px); border-color: var(--accent-line); }
.price-card--hot { background: linear-gradient(175deg, rgba(240,167,60,0.12), var(--ink-820)); border-color: var(--accent-line); box-shadow: var(--shadow); }
.price-card__head { display: flex; flex-direction: column; gap: 8px; }
.price-card__name { font-size: 1.2rem; font-weight: 700; }
.price-card__desc { font-size: 0.88rem; color: var(--muted); }
.price-card__amount { font-family: var(--display); font-weight: 700; font-size: clamp(2rem, 3.4vw, 2.7rem); letter-spacing: -0.02em; line-height: 1; }
.price-card__amount span { font-family: var(--sans); font-size: 0.9rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.price-card__from { font-size: 0.78rem; color: var(--faint); text-transform: uppercase; letter-spacing: 0.1em; }
.price-card ul { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.price-card li { display: flex; gap: 11px; font-size: 0.92rem; color: var(--paper-dim); }
.price-card li svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 2px; }
.price-card .badge-hot { align-self: flex-start; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #1a1207; background: var(--accent); padding: 5px 12px; border-radius: 100px; }

/* Доп. услуги — компактный список */
.price-extra { margin-top: clamp(24px, 3vw, 40px); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.price-extra__row { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 18px clamp(20px, 2.4vw, 30px); border-bottom: 1px solid var(--line); transition: background .2s; }
.price-extra__row:last-child { border-bottom: none; }
.price-extra__row:hover { background: var(--ink-860); }
.price-extra__name { font-weight: 600; font-size: 0.98rem; }
.price-extra__val { font-family: var(--display); font-weight: 600; font-size: 1rem; color: var(--accent-hi); white-space: nowrap; }
.price-extra__val span { font-family: var(--sans); font-weight: 500; font-size: 0.8rem; color: var(--muted); }

@media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ОТЗЫВЫ
   ============================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.review { border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 2.6vw, 32px); background: var(--ink-860); display: flex; flex-direction: column; gap: 20px; }
.review__stars { display: flex; gap: 3px; color: var(--accent); }
.review__stars svg { width: 17px; height: 17px; }
.review__text { font-size: 1rem; color: var(--paper); line-height: 1.6; flex: 1; text-wrap: pretty; }
.review__author { display: flex; align-items: center; gap: 13px; }
.review__ava { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(150deg, var(--accent-deep), #3a2410); display: grid; place-items: center; font-weight: 700; color: var(--accent-hi); flex: none; }
.review__meta b { display: block; font-size: 0.95rem; }
.review__meta span { font-size: 0.82rem; color: var(--muted); }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
.reviews-note { margin-top: 20px; font-size: 0.82rem; color: var(--faint); text-align: center; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { display: flex; justify-content: space-between; align-items: center; gap: 20px; width: 100%; text-align: left; padding: 24px 4px; font-size: clamp(1.02rem, 1.5vw, 1.18rem); font-weight: 700; letter-spacing: -0.01em; transition: color .2s; }
.faq__q:hover { color: var(--accent-hi); }
.faq__icon { width: 30px; height: 30px; flex: none; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; transition: transform .3s, background .3s, border-color .3s; }
.faq__icon svg { width: 16px; height: 16px; transition: transform .3s; }
.faq__item.open .faq__icon { background: var(--accent); border-color: var(--accent); color: #1a1207; }
.faq__item.open .faq__icon svg { transform: rotate(45deg); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .4s cubic-bezier(.4,0,.2,1); }
.faq__a-inner { padding: 0 4px 26px; color: var(--paper-dim); font-size: 0.98rem; line-height: 1.65; max-width: 60ch; text-wrap: pretty; }
@media (max-width: 820px) { .faq { grid-template-columns: 1fr; } }

/* ============================================================
   CTA / ФОРМА
   ============================================================ */
.contact { background: var(--ink-860); border-top: 1px solid var(--line); }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 70px); align-items: start; }
.contact__left h2 { margin-bottom: 22px; }
.contact__channels { display: flex; flex-direction: column; gap: 12px; margin-top: 34px; }
.channel { display: flex; align-items: center; gap: 16px; padding: 16px 20px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--ink-820); transition: border-color .25s, transform .25s, background .25s; }
.channel:hover { border-color: var(--accent-line); transform: translateX(4px); }
.channel__ico { width: 44px; height: 44px; flex: none; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
.channel__ico svg { width: 22px; height: 22px; }
.channel__txt b { display: block; font-size: 0.98rem; }
.channel__txt span { font-size: 0.85rem; color: var(--muted); }
.contact__hours { margin-top: 26px; font-size: 0.88rem; color: var(--muted); display: flex; align-items: center; gap: 10px; }
.contact__hours svg { width: 18px; height: 18px; color: var(--accent); }

/* Форма */
.form { border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(26px, 3vw, 40px); background: linear-gradient(175deg, var(--ink-820), var(--ink-860)); display: flex; flex-direction: column; gap: 18px; box-shadow: var(--shadow); }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--paper-dim); }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 0.98rem; color: var(--paper);
  background: var(--ink-900); border: 1px solid var(--line-2); border-radius: 12px; padding: 14px 16px;
  transition: border-color .2s, background .2s; width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: var(--ink-860); }
.field textarea { resize: vertical; min-height: 84px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23968b7c' stroke-width='2'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dropzone {
  border: 1.5px dashed var(--line-2); border-radius: 14px; padding: 22px; text-align: center; cursor: pointer;
  transition: border-color .25s, background .25s; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.dropzone:hover, .dropzone.drag { border-color: var(--accent); background: var(--accent-soft); }
.dropzone svg { width: 28px; height: 28px; color: var(--accent); }
.dropzone b { font-size: 0.95rem; }
.dropzone span { font-size: 0.82rem; color: var(--muted); }
.dropzone .fname { color: var(--accent-hi); font-weight: 600; }
.form__consent { font-size: 0.78rem; color: var(--faint); text-align: center; }
.form__consent a { color: var(--paper-dim); text-decoration: underline; }
.form__ok { display: none; flex-direction: column; align-items: center; gap: 14px; text-align: center; padding: 20px 0; }
.form.sent .form__body { display: none; }
.form.sent .form__ok { display: flex; }
.form__ok-ico { width: 64px; height: 64px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
.form__ok-ico svg { width: 32px; height: 32px; }
.form__ok h3 { font-size: 1.3rem; }
.form__ok p { color: var(--muted); font-size: 0.92rem; }
@media (max-width: 820px) { .contact__inner { grid-template-columns: 1fr; } }
@media (max-width: 420px) { .field--row { grid-template-columns: 1fr; } }

/* ============================================================
   ФУТЕР
   ============================================================ */
.footer { padding-block: clamp(50px, 7vw, 80px) 36px; border-top: 1px solid var(--line); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line); }
.footer__about { max-width: 320px; }
.footer__about p { color: var(--muted); font-size: 0.9rem; margin-top: 18px; }
.footer__col h4 { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.footer__col a { display: block; color: var(--paper-dim); font-size: 0.94rem; padding: 7px 0; transition: color .2s; }
.footer__col a:hover { color: var(--accent-hi); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 28px; flex-wrap: wrap; }
.footer__bottom p { font-size: 0.84rem; color: var(--faint); }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--paper-dim); transition: all .2s; }
.footer__social a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.footer__social svg { width: 19px; height: 19px; }
@media (max-width: 760px) { .footer__top { grid-template-columns: 1fr 1fr; } .footer__about { grid-column: 1 / -1; } }
@media (max-width: 460px) { .footer__top { grid-template-columns: 1fr; } }

/* ============================================================
   УТИЛИТЫ АНИМАЦИИ ПОЯВЛЕНИЯ
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
