:root {
  --navy: #0d2b45;
  --navy-deep: #071a2b;
  --navy-mid: #163355;
  --blue-accent: #1a6fba;
  --black: #000000;
  --white: #f7f9fc;
  --gold: #c5bc8d;
  --gold-dim: #9a9370;
  --border: rgba(255, 255, 255, 0.08);
  --font: "Montserrat", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 500;
  color: var(--white);
  background: var(--black);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Page shell + новости (колонка справа) ── */

.page-shell {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 300px);
  gap: 2rem;
  align-items: start;
}

.page-shell__main {
  min-width: 0;
}

/* Внутри колонки не используем «полный экран» section--alt (50vw) — иначе отступы ломают сетку */
.page-shell__main .section--alt {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.news-aside {
  position: sticky;
  top: 5.5rem;
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.4);
}

.news-aside__title {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}

.news-item {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.news-item:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.news-item__date {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  color: rgba(247, 249, 252, 0.5);
}

.news-item__title {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.news-item__body {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(247, 249, 252, 0.75);
  line-height: 1.45;
  white-space: pre-wrap;
}

@media (max-width: 1100px) {
  .page-shell {
    grid-template-columns: 1fr;
  }

  .news-aside {
    position: static;
  }
}

/* ── Animated background ── */

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, var(--navy-deep) 0%, var(--black) 45%, var(--black) 100%);
  pointer-events: none;
}

.bg-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 70%);
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.4;
  animation: glowDrift 18s ease-in-out infinite alternate;
}

.bg-glow--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -100px;
  background: radial-gradient(circle, var(--blue-accent), transparent 70%);
}

.bg-glow--2 {
  width: 500px;
  height: 500px;
  bottom: -200px;
  right: -150px;
  background: radial-gradient(circle, var(--navy-mid), transparent 70%);
  animation-delay: -9s;
  animation-duration: 22s;
}

@keyframes glowDrift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(40px, 30px) scale(1.1); }
  100% { transform: translate(-20px, 50px) scale(0.95); }
}

/* ── Scroll-reveal animation ── */

.anim-fade {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Staggered entrance для дочерних элементов */
.anim-stagger > .anim-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-stagger.is-visible > .anim-fade:nth-child(1) { transition-delay: 0.0s; }
.anim-stagger.is-visible > .anim-fade:nth-child(2) { transition-delay: 0.08s; }
.anim-stagger.is-visible > .anim-fade:nth-child(3) { transition-delay: 0.16s; }
.anim-stagger.is-visible > .anim-fade:nth-child(4) { transition-delay: 0.24s; }
.anim-stagger.is-visible > .anim-fade:nth-child(5) { transition-delay: 0.32s; }
.anim-stagger.is-visible > .anim-fade:nth-child(6) { transition-delay: 0.40s; }

.anim-stagger > .anim-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scale-in для карточек */
.anim-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ── Links ── */

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--white);
}

/* ── Header ── */

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 26, 43, 0.85);
  backdrop-filter: blur(12px);
}

.header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.brand:hover {
  color: var(--gold);
}

.brand__logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--black);
  box-shadow: 0 0 0 1px var(--border);
  transition: transform 0.3s;
}

.brand:hover .brand__logo {
  transform: rotate(-8deg) scale(1.08);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Hamburger toggle (mobile) */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  padding: 6px;
  transition: border-color 0.2s;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav__toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(7, 26, 43, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    gap: 0.75rem;
    z-index: 100;
  }
  .nav__links.is-open {
    display: flex;
  }
}

.nav__links a {
  color: rgba(247, 249, 252, 0.85);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.2s;
}

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

.nav__cta {
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  background: var(--gold);
  color: var(--navy-deep) !important;
  transition: background 0.2s, transform 0.2s;
}

.nav__cta:hover {
  background: var(--white);
  color: var(--navy-deep) !important;
  transform: translateY(-1px);
}

/* ── Hero ── */

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 880px) {
  .hero {
    grid-template-columns: 1fr auto;
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
}

.hero__location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(197, 188, 141, 0.12);
  border: 1px solid rgba(197, 188, 141, 0.2);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.hero__lead {
  margin: 0 0 0.75rem;
  max-width: 36rem;
  color: rgba(247, 249, 252, 0.78);
  font-size: 1.05rem;
}

.hero__tag {
  display: inline-block;
  margin: 0 0 1.5rem;
  padding: 0.25rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue-accent);
  border: 1px solid rgba(26, 111, 186, 0.3);
  border-radius: 4px;
  background: rgba(26, 111, 186, 0.08);
  letter-spacing: 0.03em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn--primary:hover {
  background: var(--white);
  color: var(--navy-deep);
  box-shadow: 0 6px 20px rgba(197, 188, 141, 0.25);
}

.btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--white);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--large {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.btn--glow {
  position: relative;
}

.btn--glow::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--gold), var(--blue-accent));
  z-index: -1;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.4s;
}

.btn--glow:hover::after {
  opacity: 0.6;
}

/* ── Hero emblem ── */

.hero__emblem {
  display: flex;
  justify-content: center;
}

.hero__emblem img {
  width: min(260px, 70vw);
  height: auto;
  border-radius: 50%;
  border: 4px solid var(--black);
  box-shadow:
    0 0 0 2px var(--gold-dim),
    0 24px 48px rgba(0, 0, 0, 0.5);
  animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* ── Sections ── */

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

.section--alt {
  background: linear-gradient(180deg, transparent, rgba(13, 43, 69, 0.35));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: none;
  padding-left: max(1.25rem, calc(50vw - 550px));
  padding-right: max(1.25rem, calc(50vw - 550px));
}

.section__title {
  margin: 0 0 2rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  display: inline-block;
}

.section__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue-accent));
}

/* ── Service cards ── */

.cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: rgba(22, 51, 85, 0.25);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 1.35rem;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.35s,
              box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 111, 186, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 188, 141, 0.2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.card:hover::before {
  opacity: 1;
}

.card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(197, 188, 141, 0.1);
  color: var(--gold);
  margin-bottom: 1rem;
  transition: background 0.3s, transform 0.3s;
}

.card:hover .card__icon {
  background: rgba(197, 188, 141, 0.18);
  transform: scale(1.08);
}

.card__title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  position: relative;
}

.card__text {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(247, 249, 252, 0.7);
  position: relative;
}

/* ── Price list ── */

.price-list {
  display: grid;
  gap: 1rem;
  max-width: 720px;
}

.price-item {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem 1.35rem;
  display: grid;
  gap: 0.35rem;
  grid-template-columns: 1fr auto;
  align-items: start;
  transition: border-color 0.3s, transform 0.3s;
}

.price-item:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateX(4px);
}

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

.price-item--featured {
  border-color: rgba(197, 188, 141, 0.35);
  background: rgba(22, 51, 85, 0.45);
}

.price-item__head {
  grid-column: 1;
}

.price-item__name {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.price-item__note {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  color: rgba(247, 249, 252, 0.55);
}

.price-item__value {
  margin: 0;
  grid-column: 2;
  text-align: right;
  align-self: center;
}

@media (max-width: 560px) {
  .price-item__value {
    grid-column: 1;
    text-align: left;
  }
}

.price-item__amount {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold);
}

.price-item__currency {
  font-size: 0.9rem;
  color: rgba(247, 249, 252, 0.8);
}

.price-item__extra {
  grid-column: 1 / -1;
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: rgba(247, 249, 252, 0.65);
}

/* ── Gallery ── */

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 720px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery__item {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--navy-deep);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s;
}

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s;
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__item:hover::after {
  opacity: 1;
}

/* ── Portfolio / works ── */

.works__lead {
  margin: -0.5rem 0 1.75rem;
  max-width: 40rem;
  font-size: 0.95rem;
  color: rgba(247, 249, 252, 0.72);
}

.works-toolbar {
  margin-bottom: 1.5rem;
}

.works-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.works-tab {
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(247, 249, 252, 0.75);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.works-tab:hover {
  border-color: rgba(197, 188, 141, 0.35);
  color: var(--white);
}

.works-tab--active {
  background: rgba(26, 111, 186, 0.35);
  border-color: rgba(26, 111, 186, 0.55);
  color: var(--white);
}

.works-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .works-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.work-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

/* [hidden] alone loses to .work-card { display:flex } — must win for filters */
.work-card[hidden] {
  display: none !important;
}

.work-card:hover {
  border-color: rgba(197, 188, 141, 0.22);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}

.work-card--current {
  border-color: rgba(26, 111, 186, 0.45);
  box-shadow: 0 0 0 1px rgba(26, 111, 186, 0.2);
}

.work-card__cover-wrap {
  aspect-ratio: 1;
  background: var(--navy-deep);
  position: relative;
}

.work-card__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-card__body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}

.work-card__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--white);
}

.work-player {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.work-player__play {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  min-width: 44px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(197, 188, 141, 0.35);
  background: rgba(22, 51, 85, 0.5);
  color: var(--gold);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}

.work-player__play:hover {
  background: rgba(197, 188, 141, 0.15);
  color: var(--white);
  border-color: var(--gold);
  transform: scale(1.05);
}

.work-card--playing .work-player__play {
  background: rgba(26, 111, 186, 0.35);
  border-color: rgba(26, 111, 186, 0.6);
  color: var(--white);
}

.work-player__icon--pause {
  display: none;
}

.work-card--playing .work-player__icon--play {
  display: none;
}

.work-card--playing .work-player__icon--pause {
  display: block;
}

.work-player__track {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.work-player__progress {
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  touch-action: none;
  position: relative;
  overflow: hidden;
}

.work-player__progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  pointer-events: none;
}

.work-card--current .work-player__progress {
  cursor: grab;
}

.work-card--current .work-player__progress:active {
  cursor: grabbing;
}

.work-card:not(.work-card--current) .work-player__progress {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.work-player__times {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(247, 249, 252, 0.55);
  font-variant-numeric: tabular-nums;
}

.work-player__sep {
  opacity: 0.5;
}

/* ── Lightbox ── */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s;
}

.lightbox.is-open .lightbox__img {
  animation: lbZoomIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes lbZoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-family: var(--font);
  transition: color 0.2s, transform 0.2s;
  z-index: 2;
}

.lightbox__close {
  top: 1rem;
  right: 1.25rem;
  font-size: 2.5rem;
  line-height: 1;
}

.lightbox__close:hover {
  color: var(--gold);
  transform: scale(1.15);
}

.lightbox__prev,
.lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  padding: 0.25rem 0.5rem;
}

.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }

.lightbox__prev:hover,
.lightbox__next:hover {
  color: var(--gold);
  transform: translateY(-50%) scale(1.15);
}

/* ── Contacts + map ── */

.contacts__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .contacts__grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }
}

.contacts__info {
  font-size: 0.95rem;
  color: rgba(247, 249, 252, 0.85);
}

.contacts__line {
  margin: 0 0 0.75rem;
  line-height: 1.45;
}

.contacts__line:last-child {
  margin-bottom: 0;
}

.contacts__map iframe {
  display: block;
  width: 100%;
  max-width: 100%;
}

/* ── Video card ── */

.video-card {
  max-width: 720px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.video-card:hover {
  border-color: rgba(197, 188, 141, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.video-card__player {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: var(--black);
}

.video-card__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-card__info {
  padding: 1.15rem 1.35rem;
}

.video-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.video-card__desc {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(247, 249, 252, 0.6);
}

/* ── Booking ── */

.booking {
  padding-bottom: 4rem;
}

.booking__panel {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(197, 188, 141, 0.25);
  background: linear-gradient(135deg, rgba(13, 43, 69, 0.6) 0%, rgba(0, 0, 0, 0.5) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.booking__panel::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blue-accent), transparent 70%);
  top: -150px;
  right: -100px;
  opacity: 0.15;
  filter: blur(60px);
}

.booking__title {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  position: relative;
}

.booking__text {
  margin: 0 auto 1.25rem;
  max-width: 28rem;
  color: rgba(247, 249, 252, 0.78);
  position: relative;
}

/* ── Footer ── */

.footer {
  padding: 2.5rem 1.25rem;
  border-top: 1px solid var(--border);
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__brand {
  text-align: left;
}

.footer__studio {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.footer__copy {
  margin: 0.3rem 0 0;
  font-size: 0.8rem;
  color: rgba(247, 249, 252, 0.45);
}

/* ── Social links ── */

.socials {
  display: flex;
  gap: 0.5rem;
}

.socials__link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: rgba(247, 249, 252, 0.65);
  background: rgba(255, 255, 255, 0.03);
  transition: color 0.25s, background 0.25s, border-color 0.25s, transform 0.25s;
}

.socials__link:hover {
  color: var(--gold);
  background: rgba(197, 188, 141, 0.1);
  border-color: rgba(197, 188, 141, 0.25);
  transform: translateY(-2px);
}
