:root {
  color-scheme: dark;
  --bg: #09090b;
  --panel: #121216;
  --text: #f5f1e8;
  --muted: #a7a29a;
  --line: rgba(245, 241, 232, .14);
  --accent: #d9b16f;
  --accent-strong: #f1c978;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px clamp(16px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(9, 9, 11, .82), rgba(9, 9, 11, 0));
  color: rgba(245, 241, 232, .86);
}

.site-header__brand {
  font-weight: 900;
}

.site-header nav {
  display: flex;
  gap: 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.mobile-menu-toggle {
  display: none;
}

.site-header a {
  transition: color .2s ease;
}

.site-header a:hover {
  color: var(--accent-strong);
}

.site-header__phone {
  justify-self: end;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 56px 20px;
  background:
    linear-gradient(90deg, rgba(9, 9, 11, .98) 0%, rgba(9, 9, 11, .72) 50%, rgba(9, 9, 11, .28) 100%),
    url("contetn/0cde7c7e3399848cfe9387d31b5f1709_5e1c5d27_b4c5_45ab_90d0_359e93ddfb0e.jpg?v=20260620-1129") center / cover,
    radial-gradient(circle at 75% 25%, #3a3128 0, #09090b 48%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, var(--bg));
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 4px);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  padding-top: 5vh;
}

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

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(68px, 15vw, 176px);
  line-height: .86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 7vw, 86px);
  line-height: .95;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(245, 241, 232, .86);
  font-size: clamp(20px, 2.6vw, 34px);
  font-weight: 500;
  line-height: 1.18;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  padding: 16px 20px;
  background: var(--accent);
  color: #111;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: transform .2s ease, filter .2s ease, border-color .2s ease;
}

.button--ghost {
  border: 1px solid var(--line);
  background: rgba(9, 9, 11, .42);
  color: var(--text);
  backdrop-filter: blur(14px);
}

.button:hover,
button:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 680px;
}

.contacts a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(9, 9, 11, .56);
  color: var(--text);
  backdrop-filter: blur(14px);
  transition: border-color .2s ease, transform .2s ease;
}

.contacts a:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.shoots,
.services,
.showreel,
.process,
.cost,
.faq,
.request {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  scroll-margin-top: 86px;
}

.shoots {
  position: relative;
  display: grid;
  grid-template-columns: .68fr .9fr .72fr;
  gap: 34px;
  align-items: center;
  overflow: hidden;
  padding: 104px 0 116px;
}

.shoots__label {
  color: var(--accent-strong);
  font-size: clamp(34px, 6vw, 72px);
  font-weight: 900;
  line-height: .96;
}

.shoots__list {
  position: relative;
  z-index: 1;
}

.shoot-word {
  display: block;
  width: fit-content;
  margin-bottom: 6px;
  color: var(--text);
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 900;
  line-height: .9;
  transition: color .25s ease, transform .25s ease;
}

.shoot-word span {
  color: var(--accent);
}

.shoot-word:hover {
  color: var(--accent-strong);
  transform: translateX(10px);
}

.shoots__visual {
  position: relative;
  align-self: stretch;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(217, 177, 111, .26), transparent 38%),
    linear-gradient(135deg, #171316, #08080a 58%);
  transition: background .35s ease, border-color .35s ease, transform .35s ease;
}

.shoots__visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(245, 241, 232, .12);
}

.shoots__visual::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -38px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(217, 177, 111, .36);
  border-radius: 50%;
}

.shoots__frame {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  padding: 30px;
}

.shoots__frame span {
  position: absolute;
  top: 28px;
  left: 30px;
  color: var(--accent);
  font-weight: 900;
}

.frame-title {
  grid-area: 1 / 1;
  color: var(--text);
  font-size: clamp(28px, 4vw, 52px);
  line-height: .92;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .28s ease, transform .28s ease;
}

.frame-title--people {
  opacity: 1;
  transform: translateY(0);
}

.shoots:has(.shoot-word--business:hover) .shoots__visual {
  border-color: rgba(217, 177, 111, .7);
  background:
    linear-gradient(160deg, rgba(241, 201, 120, .34), transparent 42%),
    linear-gradient(135deg, #111827, #08080a 62%);
}

.shoots:has(.shoot-word--events:hover) .shoots__visual {
  border-color: rgba(217, 177, 111, .7);
  background:
    linear-gradient(160deg, rgba(217, 177, 111, .28), transparent 40%),
    linear-gradient(135deg, #21140f, #08080a 62%);
}

.shoots:has(.shoot-word--business:hover) .frame-title,
.shoots:has(.shoot-word--events:hover) .frame-title {
  opacity: 0;
  transform: translateY(12px);
}

.shoots:has(.shoot-word--business:hover) .frame-title--business,
.shoots:has(.shoot-word--events:hover) .frame-title--events {
  opacity: 1;
  transform: translateY(0);
}

.shoots__button {
  position: relative;
  z-index: 1;
  grid-column: 2;
  width: fit-content;
  min-width: 280px;
  margin-top: 8px;
}

.camera-mark {
  position: absolute;
  left: 4%;
  bottom: 38px;
  width: 190px;
  height: 124px;
  border: 2px solid rgba(245, 241, 232, .22);
  border-radius: 8px;
  opacity: .58;
}

.camera-mark::before,
.camera-mark::after {
  content: "";
  position: absolute;
  top: -42px;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(245, 241, 232, .22);
  border-radius: 50%;
}

.camera-mark::before {
  left: 28px;
}

.camera-mark::after {
  left: 84px;
}

.camera-mark span {
  position: absolute;
  right: -46px;
  top: 28px;
  width: 44px;
  height: 54px;
  border: 2px solid rgba(245, 241, 232, .22);
  border-left: 0;
  border-radius: 0 12px 12px 0;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service {
  min-height: 360px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
}

.service:last-child {
  border-right: 0;
}

.service span {
  display: block;
  margin-bottom: 86px;
  color: var(--accent);
  font-weight: 900;
}

.service h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3.6vw, 44px);
}

.service p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.showreel {
  padding: 110px 0 106px;
}

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

.video-strip {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  gap: 26px;
}

.video-tile {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(217, 177, 111, .18), transparent 44%),
    linear-gradient(160deg, #191817, #0e0e11 58%, #050506);
  cursor: pointer;
  transition: border-color .35s ease;
}

.video-tile {
  aspect-ratio: 16 / 9;
}

.video-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(0, 0, 0, .72));
  pointer-events: none;
}

.video-tile figcaption {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 1;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.reel-video {
  width: 100%;
  height: 100%;
  min-height: 0;
  background: transparent;
  object-fit: cover;
  transition: transform .35s ease, border-color .35s ease, filter .35s ease;
}

.video-tile:hover .reel-video {
  filter: contrast(1.08);
  transform: scale(1.025);
}

.video-tile:hover {
  border-color: rgba(217, 177, 111, .8);
}

.video-tile:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

@media (min-width: 761px) {
  .video-strip {
    gap: 56px;
    justify-items: center;
  }

  .video-tile {
    width: 92%;
    max-width: 1030px;
  }
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, .86);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal__body {
  width: min(1100px, 100%);
}

.video-modal__player {
  display: block;
  width: 100%;
  max-height: 82vh;
  background: #000;
  border: 1px solid rgba(245, 241, 232, .18);
  border-radius: 8px 8px 0 0;
}

.video-modal__close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245, 241, 232, .2);
  border-radius: 50%;
  background: rgba(14, 14, 17, .78);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.video-modal__controls {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(245, 241, 232, .16);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: rgba(14, 14, 17, .78);
}

.video-modal__play,
.video-modal__mute,
.video-modal__fullscreen {
  min-width: 68px;
  border: 1px solid rgba(245, 241, 232, .2);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font: inherit;
  cursor: pointer;
}

.video-modal__progress {
  flex: 1;
  min-width: 80px;
  accent-color: var(--accent);
}

.video-modal__time {
  min-width: 46px;
  color: var(--muted);
  font-size: 13px;
}

.video-modal__volume {
  width: 110px;
  accent-color: var(--accent);
}

.process {
  padding: 0 0 104px;
}

.process ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 22px 0 0;
  padding: 0;
  background: var(--line);
  border: 1px solid var(--line);
  list-style: none;
}

.process li {
  min-height: 190px;
  padding: 28px;
  background: #0d0d10;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.process li span {
  display: block;
  margin-bottom: 28px;
  color: var(--text);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.cost {
  border-top: 1px solid var(--line);
  padding: 108px 0 76px;
}

.cost .eyebrow {
  display: inline-block;
}

.cost p:not(.eyebrow) {
  max-width: 460px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.cost .cost__lead,
.cost strong {
  color: var(--text);
  font-weight: 900;
}

.request {
  max-width: 680px;
  padding: 0 0 120px;
}

.price-factors {
  display: grid;
  gap: 14px;
  max-width: 520px;
  margin: 0 0 18px;
  padding: 0;
  color: var(--muted);
  list-style: none;
  line-height: 1.55;
}

.price-factors span {
  display: block;
  color: var(--text);
  font-weight: 900;
}

.lead-form {
  display: grid;
  gap: 16px;
}

.lead-form__intro {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px 16px;
  background: #0f0f12;
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.consent input {
  width: auto;
  margin-top: 3px;
}

.consent a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

button:disabled {
  cursor: not-allowed;
  filter: grayscale(.45) brightness(.75);
  transform: none;
}

.lead-form__telegram {
  width: 100%;
}

.lead-form__status {
  min-height: 24px;
  color: var(--muted);
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  background: #151519;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-cta {
  display: none;
}

.privacy-page {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 132px 0 90px;
}

.privacy-page h1 {
  margin-bottom: 32px;
  font-size: clamp(42px, 8vw, 92px);
}

.privacy-page h2 {
  margin: 34px 0 12px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.privacy-page p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.privacy-page a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 760px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 14px 16px;
    background: rgba(9, 9, 11, .72);
    backdrop-filter: blur(18px);
  }

  .site-header nav {
    position: fixed;
    top: 58px;
    right: 16px;
    display: grid;
    gap: 4px;
    min-width: 180px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(9, 9, 11, .94);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .site-header nav a {
    padding: 11px 12px;
  }

  body.nav-open .site-header nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu-toggle {
    display: inline-flex;
    position: fixed;
    top: 12px;
    right: 16px;
    z-index: 21;
    width: 42px;
    min-height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(9, 9, 11, .86);
    color: var(--text);
    backdrop-filter: blur(18px);
  }

  .site-header__phone {
    font-size: 13px;
    margin-right: 52px;
  }

  .hero {
    align-items: end;
    padding-top: 92px;
    padding-bottom: 76px;
  }

  .contacts {
    display: grid;
  }

  .hero__actions {
    display: grid;
  }

  .shoots {
    grid-template-columns: 1fr;
    padding: 72px 0;
  }

  .shoots__visual {
    display: none;
  }

  .shoots__button {
    grid-column: auto;
    width: 100%;
  }

  .camera-mark {
    display: none;
  }

  .services,
  .process ol {
    grid-template-columns: 1fr;
  }

  .service {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service:last-child {
    border-bottom: 0;
  }

  .service span {
    margin-bottom: 54px;
  }

  .video-tile {
    aspect-ratio: 16 / 10;
  }

  .video-modal__controls {
    flex-wrap: wrap;
  }

  .video-modal__progress {
    order: 3;
    flex-basis: 100%;
  }

  .cost {
    padding: 78px 0 52px;
  }

  .request {
    padding: 0 0 90px;
  }

  .mobile-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-radius: 8px;
    background: var(--accent);
    color: #111;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .42);
  }
}

/* Price cards */
.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 22px 0 30px;
}

.price-card {
  display: grid;
  gap: 6px;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(9, 9, 11, .42);
  transition: border-color .25s ease, transform .25s ease;
}

.price-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.price-card__name {
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.price-card__price {
  color: var(--accent-strong);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 900;
}

.price-card__note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

/* FAQ */
.faq {
  border-top: 1px solid var(--line);
  padding: 88px 0 96px;
  text-align: center;
}

.faq .eyebrow {
  display: inline-block;
}

.faq__list {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin: 22px auto 0;
  text-align: center;
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(9, 9, 11, .42);
  padding: 4px 22px;
  transition: border-color .25s ease;
}

.faq__item[open] {
  border-color: var(--accent);
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  color: var(--text);
  font-size: clamp(17px, 2.4vw, 20px);
  font-weight: 700;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 900;
}

.faq__item[open] summary::after {
  content: "–";
}

.faq__item p {
  margin: 0;
  padding: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .price-cards {
    grid-template-columns: 1fr;
  }
}
