/* =============================================
   REMONDON — Luxury Dark Interior Design System
   ============================================= */

:root {
  --bg-primary: #151A1E;
  --bg-secondary: #151A1E;
  --bg-tertiary: #1C2228;
  --surface-glass: rgba(255, 255, 255, 0.06);
  --surface-glass-hover: rgba(255, 255, 255, 0.09);
  --surface-card: #1A2026;
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.75);
  --text-muted: rgba(255, 255, 255, 0.45);
  --accent: #C6A27A;
  --accent-secondary: #A78664;
  --accent-soft: #D4B391;
  --border: rgba(255, 255, 255, 0.08);
  --border-secondary: rgba(255, 255, 255, 0.05);
  --gradient-dark: #151A1E;
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02));
  --container: min(1320px, calc(100% - 48px));
  --radius-card: 28px;
  --radius-btn: 18px;
  --radius-pill: 999px;
  --header-h: 96px;
  --header-contact-w: 12.25rem;
  --nav-pill-h: 50px;
  --hero-fade-h: clamp(120px, 16vh, 180px);
  --hero-figure-scale: 0.84;
  --hero-figure-top: calc(var(--header-h) + -30px);
  --hero-figure-right: clamp(56px, 8.5vw, 150px);
  --hero-h: clamp(500px, 55vh, 620px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --blur-glass: 30px;
  --section-gap: clamp(56px, 5vw, 72px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
  background: var(--bg-primary);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* Glass utility */
.glass {
  background: var(--surface-glass);
  backdrop-filter: blur(var(--blur-glass));
  -webkit-backdrop-filter: blur(var(--blur-glass));
  border: 1px solid var(--border);
}

/* Typography */
.label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-subtitle {
  margin-top: 16px;
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
}

.section {
  padding-top: var(--section-gap);
  padding-bottom: 0;
}

.section-head {
  margin-bottom: clamp(40px, 4vw, 56px);
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}

.header--scrolled {
  background: rgba(21, 26, 30, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-secondary);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  transition: opacity 0.25s var(--ease);
}

.logo:hover {
  opacity: 0.85;
}

.logo__name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo__tagline {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

/* Pill navigation — image 2 style */
.nav-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: var(--nav-pill-h);
  padding: 6px 8px;
  border-radius: var(--radius-pill);
  background: var(--surface-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 60px rgba(198, 162, 122, 0.06);
}

.nav-pill__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.nav-pill__icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.nav-pill__link:hover,
.nav-pill__link--active {
  color: var(--text-primary);
  background: var(--surface-glass-hover);
}

.header__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  align-self: center;
  flex-shrink: 0;
  gap: 4px;
}

.header__phones {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: var(--header-contact-w);
  height: var(--nav-pill-h);
  gap: 0;
}

.header__phone {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-align: right;
  transition: color 0.25s var(--ease);
}

.header__phone:hover {
  color: var(--accent-soft);
}

.header__callback {
  width: fit-content;
  max-width: 100%;
  font-size: 11px;
  color: var(--accent);
  margin-top: 0;
  padding-bottom: 1px;
  text-align: right;
  border-bottom: 1px solid var(--accent);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.header__callback:hover {
  color: var(--accent-soft);
  border-color: var(--accent-soft);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.burger span {
  display: block;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.burger--open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.burger--open span:nth-child(2) {
  opacity: 0;
}

.burger--open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(21, 26, 30, 0.96);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
  padding-top: calc(var(--header-h) + 32px);
}

.mobile-nav--open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
}

.mobile-nav__link {
  padding: 16px 20px;
  font-size: 18px;
  border-radius: var(--radius-btn);
  transition: background 0.25s var(--ease);
}

.mobile-nav__link:hover {
  background: var(--surface-glass);
}

.mobile-nav__phone {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1.45;
}

.mobile-nav__phone + .mobile-nav__phone {
  margin-top: 10px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 58px;
  padding: 0 32px;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-btn);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.btn--full {
  width: 100%;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  z-index: 2;
  height: var(--hero-h);
  display: grid;
  grid-template-rows: var(--header-h) minmax(0, 1fr);
  overflow: visible;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: calc(-1 * var(--hero-fade-h));
  z-index: 0;
  overflow: hidden;
  background: #1a2026 url('../image/bg/bg1.png') center 30% / cover no-repeat;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      transparent 0%,
      transparent 52%,
      rgba(21, 26, 30, 0.22) 72%,
      rgba(21, 26, 30, 0.58) 86%,
      rgba(21, 26, 30, 0.92) 100%
    ),
    linear-gradient(
      105deg,
      rgba(10, 13, 18, 0.85) 0%,
      rgba(10, 13, 18, 0.55) 45%,
      rgba(10, 13, 18, 0.25) 100%
    );
}

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(-1 * var(--hero-fade-h));
  height: calc(var(--hero-fade-h) + 2px);
  background: linear-gradient(
    to bottom,
    rgba(21, 26, 30, 0) 0%,
    rgba(21, 26, 30, 0.35) 30%,
    rgba(21, 26, 30, 0.68) 58%,
    rgba(21, 26, 30, 0.9) 82%,
    var(--bg-primary) 100%
  );
  z-index: 4;
  pointer-events: none;
  transform: translateZ(0);
}

.hero__figure {
  position: absolute;
  left: clamp(58%, 62vw, 67%);
  right: var(--hero-figure-right);
  top: var(--hero-figure-top);
  bottom: calc(-1 * var(--hero-fade-h));
  z-index: 2;
  margin: 0;
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
  opacity: 1;
  transform: none;
}

.hero__figure-img {
  display: block;
  height: 165%;
  width: auto;
  max-width: none;
  min-width: auto;
  object-fit: contain;
  object-position: right top;
  --hero-parallax-x: 0px;
  --hero-parallax-y: 0px;
  --hero-parallax-ry: 0deg;
  --hero-parallax-rx: 0deg;
  transform:
    translate3d(var(--hero-parallax-x), var(--hero-parallax-y), 0)
    rotateY(var(--hero-parallax-ry))
    rotateX(var(--hero-parallax-rx))
    scale(var(--hero-figure-scale));
  transform-origin: top right;
  will-change: transform;
  mix-blend-mode: lighten;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 62%, rgba(0, 0, 0, 0.5) 84%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 62%, rgba(0, 0, 0, 0.5) 84%, transparent 100%);
  user-select: none;
  -webkit-user-drag: none;
}

.hero__content {
  grid-row: 2;
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  min-height: 0;
  margin-top: 0;
  height: auto;
  box-sizing: border-box;
}

.hero__block {
  width: min(920px, 82%);
}

.hero__card {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 184px;
  gap: 0;
  align-items: stretch;
  padding: 0;
  border-radius: var(--radius-card);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 55%, rgba(255, 255, 255, 0.06) 100%);
}

.hero__card.glass {
  backdrop-filter: blur(var(--blur-glass));
  -webkit-backdrop-filter: blur(var(--blur-glass));
  border: 1px solid var(--border);
}

.hero__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 50%;
  background: radial-gradient(ellipse at top left, rgba(198, 162, 122, 0.14), transparent 70%);
  pointer-events: none;
}

.hero__main {
  position: relative;
  padding: 32px 36px;
}

.hero__title {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.hero__text {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 22px;
  max-width: 100%;
  line-height: 1.55;
}

.hero__card .btn {
  height: 50px;
  padding: 0 26px;
  font-size: 14px;
}

.hero__stats {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 28px 20px 28px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.hero__stats .stat {
  position: relative;
}

.hero__stats .stat + .stat {
  padding-top: 12px;
}

.hero__stats .stat + .stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 56%;
  height: 1px;
  background: linear-gradient(90deg, rgba(198, 162, 122, 0.58), rgba(255, 255, 255, 0.08));
}

.stat__value {
  display: block;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.stat__label {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.35;
}

/* =============================================
   BEFORE / AFTER
   ============================================= */
.before-after__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.compare-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 16 / 5;
  border: 1px solid var(--border);
  background: var(--surface-card);
}

.compare-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease);
}

.compare-card--before img {
  filter: grayscale(0.35) saturate(0.45) contrast(1.08) brightness(0.88);
}

.compare-card--after img {
  filter: saturate(0.92) contrast(1.04) brightness(0.96);
}

.compare-card:hover img {
  transform: scale(1.02);
}

.compare-card__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.compare-card--before .compare-card__overlay {
  background: linear-gradient(180deg, rgba(10, 13, 18, 0.18) 0%, rgba(10, 13, 18, 0.08) 100%);
}

.compare-card--after .compare-card__overlay {
  background: linear-gradient(180deg, rgba(10, 13, 18, 0.12) 0%, rgba(10, 13, 18, 0.04) 100%);
}

.compare-card__label {
  position: absolute;
  top: 20px;
  left: 24px;
  z-index: 2;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.compare-card__zoom {
  position: absolute;
  bottom: 20px;
  left: 24px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(10, 13, 18, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  opacity: 1;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.compare-card__zoom:hover {
  background: rgba(10, 13, 18, 0.65);
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* =============================================
   3D VISUALIZATION BLOCK
   ============================================= */
.viz-block__inner {
  position: relative;
  min-height: clamp(400px, 30vw, 460px);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.viz-block .label {
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.viz-block__inner.glass {
  background: transparent;
}

.viz-block__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 520px);
  max-width: 44%;
  min-height: clamp(400px, 30vw, 460px);
  padding: clamp(32px, 2.8vw, 44px) clamp(48px, 4.2vw, 68px);
}

.viz-block__content::before {
  content: '';
  position: absolute;
  inset: 0;
  right: -30%;
  z-index: -1;
  background: var(--surface-glass);
  backdrop-filter: blur(var(--blur-glass));
  -webkit-backdrop-filter: blur(var(--blur-glass));
  mask-image: linear-gradient(90deg, #000 0%, #000 58%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 58%, transparent 100%);
}

.viz-block__title {
  margin-top: 0;
  font-size: clamp(17px, 1.45vw, 24px);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.025em;
  max-width: 100%;
}

.viz-block__text {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 400px;
}

.viz-block__features {
  list-style: none;
  margin: 22px 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.viz-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.viz-feature__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(198, 162, 122, 0.22);
  color: var(--accent);
}

.viz-feature__icon svg {
  width: 18px;
  height: 18px;
}

.viz-feature__title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 4px;
}

.viz-feature__text {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 320px;
}

.viz-block__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 22px;
}

.viz-block__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 500;
  color: #151A1E;
  background: var(--accent);
  border-radius: 12px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.viz-block__btn:hover {
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.viz-block__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.viz-block__link:hover {
  color: var(--accent-soft);
  border-color: var(--accent-soft);
}

.viz-block__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.viz-block__media img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  transform: translateX(25%);
}

.viz-block__media-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    var(--bg-primary) 0%,
    var(--bg-primary) 34%,
    rgba(21, 26, 30, 0.97) 42%,
    rgba(21, 26, 30, 0.88) 50%,
    rgba(21, 26, 30, 0.68) 58%,
    rgba(21, 26, 30, 0.42) 66%,
    rgba(21, 26, 30, 0.2) 74%,
    rgba(21, 26, 30, 0.06) 82%,
    transparent 92%
  );
  pointer-events: none;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  position: relative;
  z-index: 1;
  margin-top: calc(-1 * var(--hero-fade-h));
  padding-top: calc(var(--hero-fade-h) * 2 + 20px);
  background: var(--bg-primary);
}

.services .section-head {
  margin-top: var(--section-gap);
  margin-bottom: var(--section-gap);
}

.services__caption {
  margin-top: 0;
  margin-bottom: 0;
}

.services__seo-links {
  margin-top: 10px;
  opacity: 0.7;
}

.services__seo-links > summary {
  cursor: pointer;
  font-size: 12px;
  color: var(--text-muted);
  list-style: none;
}

.services__seo-links > summary::-webkit-details-marker {
  display: none;
}

.services__seo-links[open] {
  opacity: 1;
}

.services__seo-links[open] > summary {
  margin-bottom: 8px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  margin-bottom: 0;
  align-items: start;
}

.service-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: clamp(14px, 1.35vw, 20px);
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.service-card:hover {
  transform: scale(1.02) translateY(-2px);
  background: var(--surface-glass-hover);
  border-color: rgba(255, 255, 255, 0.12);
}

.service-card__icon {
  width: clamp(22px, 1.75vw, 26px);
  height: clamp(22px, 1.75vw, 26px);
  color: var(--accent);
  margin-bottom: clamp(10px, 0.9vw, 14px);
  flex-shrink: 0;
}

.service-card__title {
  font-size: clamp(12px, 0.95vw, 14px);
  font-weight: 500;
  margin-bottom: clamp(6px, 0.55vw, 8px);
  line-height: 1.25;
  flex-shrink: 0;
}

.service-card__link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.service-card__link:hover {
  color: var(--accent-soft);
  border-color: rgba(198, 162, 122, 0.45);
}

.service-card__text {
  font-size: clamp(10px, 0.78vw, 12px);
  color: var(--text-muted);
  line-height: 1.4;
  flex: 1;
  min-height: 0;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

/* Drag-scroll carousel */
.drag-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-x;
}

.drag-scroll::-webkit-scrollbar {
  display: none;
}

/* Styled bottom scrollbar for portfolio */
.portfolio__grid.drag-scroll {
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(198, 162, 122, 0.85) rgba(255, 255, 255, 0.08);
}

.portfolio__grid.drag-scroll::-webkit-scrollbar {
  display: block;
  height: 8px;
}

.portfolio__grid.drag-scroll::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.portfolio__grid.drag-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(90deg, rgba(198, 162, 122, 0.92), rgba(212, 179, 145, 0.92));
}

.portfolio__grid.drag-scroll::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, rgba(212, 179, 145, 1), rgba(198, 162, 122, 1));
}

.drag-scroll.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.drag-scroll.is-dragging .process-card:hover,
.drag-scroll.is-dragging .portfolio-card:hover img {
  transform: none;
}

/* =============================================
   PROCESS
   ============================================= */
.process__track {
  --process-size: clamp(150px, 11.5vw, 172px);
  --process-bleed: 8px;
  display: flex;
  align-items: center;
  gap: 0;
  scroll-snap-type: x proximity;
  padding: var(--process-bleed) 4px;
}

.process-card-wrap {
  flex: 0 0 calc(var(--process-size) + var(--process-bleed) * 2);
  width: calc(var(--process-size) + var(--process-bleed) * 2);
  padding: var(--process-bleed);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  scroll-snap-align: start;
}

.process-card {
  width: var(--process-size);
  height: var(--process-size);
  min-height: var(--process-size);
  max-height: var(--process-size);
  flex: none;
  display: flex;
  flex-direction: column;
  padding: clamp(14px, 1.2vw, 20px);
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.process-card:hover {
  position: relative;
  z-index: 2;
  transform: scale(1.02) translateY(-2px);
  background: var(--surface-glass-hover);
  border-color: rgba(255, 255, 255, 0.12);
}

.process-card__num {
  display: block;
  font-size: clamp(22px, 1.9vw, 28px);
  font-weight: 300;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: clamp(8px, 0.75vw, 12px);
  flex-shrink: 0;
}

.process-card__title {
  font-size: clamp(12px, 0.95vw, 14px);
  font-weight: 500;
  margin: 0 0 clamp(6px, 0.5vw, 8px);
  line-height: 1.25;
  flex-shrink: 0;
}

.process-card__text {
  font-size: clamp(10px, 0.78vw, 12px);
  color: var(--text-muted);
  line-height: 1.4;
  flex: 1;
  min-height: 0;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.process-arrow {
  flex: 0 0 24px;
  align-self: center;
  position: relative;
  height: 1px;
  background: var(--border);
}

.process-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left-color: var(--text-muted);
}

/* =============================================
   PORTFOLIO
   ============================================= */
.portfolio__head {
  margin-bottom: 28px;
}

.portfolio__title {
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.portfolio__grid {
  display: flex;
  gap: 18px;
  scroll-snap-type: x proximity;
}

.portfolio-card {
  position: relative;
  flex: 0 0 calc((100% - 72px) / 5);
  min-width: calc((100% - 72px) / 5);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  cursor: grab;
  scroll-snap-align: start;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.portfolio-card__zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(10, 13, 18, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  opacity: 1;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.portfolio-card__zoom:hover {
  background: rgba(10, 13, 18, 0.75);
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: linear-gradient(transparent 40%, rgba(10, 13, 18, 0.85));
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

.portfolio-card:hover .portfolio-card__overlay {
  opacity: 1;
}

.portfolio-card__title {
  font-size: 14px;
  font-weight: 500;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding-bottom: 28px;
}

.contact__panel {
  display: grid;
  grid-template-columns: 1.35fr 1.15fr 1.5fr;
  height: 220px;
  background: #151A1E;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.contact__col {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 20px;
}

.contact__col::after {
  content: '';
  position: absolute;
  top: 72px;
  right: 0;
  width: 1px;
  height: 64px;
  background: rgba(255, 255, 255, 0.38);
  pointer-events: none;
}

.contact__col:nth-child(2) {
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 24px;
}

.contact__col--phones {
  align-items: flex-start;
  text-align: left;
  padding-left: 36px;
}

.contact__col.contact__col--phones {
  align-items: flex-start;
  text-align: left;
  padding-left: 52px;
}

.contact__col--cta {
  justify-content: center;
  gap: 0;
}

.contact__title {
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact__text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-bottom: 14px;
  max-width: 260px;
}

.contact__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
  align-self: flex-start;
}

.contact__btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
}

.contact__label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.contact__value {
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;
  transition: color 0.25s var(--ease);
}

.contact__col:nth-child(2) .contact__label,
.contact__col:nth-child(2) .contact__label {
  font-size: 8px;
  margin-bottom: 8px;
}

.contact__value--stack {
  display: block;
}

.contact__value--stack + .contact__value--stack {
  margin-top: 8px;
}

.contact__value-note {
  display: inline;
  margin-left: 6px;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-muted);
  white-space: nowrap;
}

.contact__col:nth-child(2) .contact__value,
.contact__col:nth-child(2) .contact__value {
  font-size: clamp(11px, 0.95vw, 13px);
  letter-spacing: -0.01em;
  white-space: normal;
}

.contact__value:hover {
  color: var(--accent-soft);
}

.contact__socials {
  display: flex;
  gap: 10px;
}

.contact__social {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text-primary);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.contact__social svg {
  width: 15px;
  height: 15px;
}

.contact__social:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
}

.contact__decor {
  position: relative;
  overflow: hidden;
}

.contact__decor::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    #151A1E 0%,
    #151A1E 6%,
    rgba(21, 26, 30, 0.92) 28%,
    rgba(21, 26, 30, 0.55) 52%,
    rgba(21, 26, 30, 0.15) 72%,
    transparent 100%
  );
  pointer-events: none;
}

.contact__decor img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  filter: brightness(0.72) saturate(0.9);
}

.contact__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
}

.contact__copy {
  font-size: 12px;
  color: var(--text-muted);
}

.contact__policy {
  font-size: 12px;
  color: var(--text-muted);
  transition: color 0.25s var(--ease);
}

.contact__policy:hover {
  color: var(--text-secondary);
}

/* =============================================
   MODAL
   ============================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.modal--open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 13, 18, 0.8);
  backdrop-filter: blur(8px);
}

.modal__dialog {
  position: relative;
  width: min(440px, 100%);
  padding: 40px;
  border-radius: var(--radius-card);
  transform: scale(0.95) translateY(16px);
  transition: transform 0.35s var(--ease);
}

.modal--open .modal__dialog {
  transform: scale(1) translateY(0);
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border-radius: 50%;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.modal__close:hover {
  color: var(--text-primary);
  background: var(--surface-glass);
}

.modal__title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
}

.modal__text {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal__form input,
.modal__form textarea {
  width: 100%;
  padding: 16px 20px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  outline: none;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.modal__form input::placeholder,
.modal__form textarea::placeholder {
  color: var(--text-muted);
}

.modal__form input:focus,
.modal__form textarea:focus {
  border-color: rgba(198, 162, 122, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.modal__form textarea {
  resize: vertical;
  min-height: 80px;
}

/* =============================================
   3D GALLERY
   ============================================= */
.viz-gallery {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 3vw, 28px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.viz-gallery--open {
  opacity: 1;
  visibility: visible;
}

.viz-gallery__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 13, 18, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.viz-gallery__dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: min(88vh, 860px);
  overflow: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 16px;
}

.viz-gallery__title {
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: 12px;
}

.viz-gallery__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.viz-gallery__item {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease);
}

.viz-gallery__item:hover {
  transform: translateY(-2px);
  border-color: rgba(198, 162, 122, 0.5);
}

.viz-gallery__item img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.viz-gallery__close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-primary);
  background: rgba(21, 26, 30, 0.88);
  border: 1px solid var(--border);
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

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

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 13, 18, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lightbox__figure {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: min(1200px, 100%);
  max-height: 100%;
  margin: 0;
  transform: scale(0.96) translateY(12px);
  transition: transform 0.35s var(--ease);
}

.lightbox--open .lightbox__figure {
  transform: scale(1) translateY(0);
}

.lightbox__img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 120px);
  width: auto;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-primary);
  background: rgba(21, 26, 30, 0.82);
  border: 1px solid var(--border);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), opacity 0.25s var(--ease);
  opacity: 0;
  pointer-events: none;
}

.lightbox__nav--prev {
  left: 20px;
}

.lightbox__nav--next {
  right: 20px;
}

.lightbox__nav:hover {
  background: rgba(21, 26, 30, 0.95);
  border-color: rgba(255, 255, 255, 0.22);
}

.lightbox--nav .lightbox__nav {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__caption {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 560px;
}

.lightbox__caption:empty {
  display: none;
}

.lightbox__close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-primary);
  background: rgba(21, 26, 30, 0.85);
  border: 1px solid var(--border);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
/* Hero above the fold — без reveal-анимации, чтобы не было артефакта при загрузке */
.hero .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1280px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-card {
    padding: 20px;
    border-radius: 22px;
  }

  .service-card__icon {
    width: 26px;
    height: 26px;
    margin-bottom: 14px;
  }

  .service-card__title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .service-card__text {
    font-size: 12px;
    -webkit-line-clamp: 5;
  }

  .portfolio-card {
    flex: 0 0 calc((100% - 54px) / 4);
    min-width: calc((100% - 54px) / 4);
  }

  .nav-pill__link span {
    display: none;
  }

  .nav-pill__link {
    padding: 10px 12px;
  }
}

@media (max-width: 1024px) {
  .hero__figure {
    left: 54%;
    right: clamp(40px, 6vw, 72px);
    top: calc(var(--header-h) + 18px);
    bottom: 0;
  }

  .hero__figure-img {
    --hero-figure-scale: 0.76;
    min-width: 100%;
    opacity: 0.94;
  }

  .nav-pill {
    display: none;
  }

  .header__contact {
    display: none;
  }

  .burger {
    display: flex;
  }

  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .viz-block__inner {
    min-height: 0;
  }

  .viz-block__content {
    max-width: none;
    width: 100%;
    min-height: 0;
    padding: 28px 32px 24px;
  }

  .viz-block__content::before {
    display: none;
  }

  .viz-block__inner.glass {
    background: var(--surface-glass);
    backdrop-filter: blur(var(--blur-glass));
    -webkit-backdrop-filter: blur(var(--blur-glass));
  }

  .viz-block__media-fade {
    background: linear-gradient(
      180deg,
      var(--bg-primary) 0%,
      rgba(21, 26, 30, 0.55) 28%,
      transparent 62%
    );
  }

  .viz-block__title {
    font-size: clamp(17px, 4.8vw, 22px);
    line-height: 1.3;
  }

  .viz-block__media {
    position: relative;
    width: 100%;
    height: clamp(260px, 42vw, 340px);
  }

  .viz-block__media img {
    width: 100%;
    transform: none;
    object-position: 42% 45%;
  }

  .contact__panel {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .contact__col--cta {
    grid-column: 1 / -1;
    border-bottom: 1px solid var(--border);
    padding: 22px 24px;
  }

  .contact__col::after {
    display: none;
  }

  .contact__col {
    padding: 22px 24px;
  }

  .contact__col--phones {
    padding-left: 24px;
  }

  .contact__col.contact__col--phones {
    padding-left: 24px;
  }

  .contact__decor {
    grid-column: 1 / -1;
    height: 180px;
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 72px;
    --hero-h: clamp(420px, 62vh, 520px);
    --section-gap: clamp(40px, 8vw, 56px);
  }

  .hero__figure {
    display: none;
  }

  .hero__block {
    width: 100%;
  }

  .hero__card {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .hero__main {
    padding: 22px 22px 20px;
  }

  .hero__stats {
    flex-direction: row;
    gap: 12px;
    padding: 16px 22px;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
  }

  .hero__stats .stat {
    flex: 1;
    min-width: 0;
  }

  .hero__stats .stat + .stat {
    padding-top: 0;
  }

  .hero__stats .stat + .stat::before {
    display: none;
  }

  .hero__title {
    font-size: clamp(22px, 6vw, 30px);
    margin-bottom: 10px;
  }

  .hero__text {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .hero__card .btn {
    height: 46px;
  }

  .stat__value {
    font-size: 18px;
  }

  .stat__label {
    font-size: 9px;
  }

  .before-after__grid {
    grid-template-columns: 1fr;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .service-card {
    padding: 22px;
    border-radius: 24px;
  }

  .service-card__icon {
    width: 28px;
    height: 28px;
    margin-bottom: 16px;
  }

  .service-card__title {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .service-card__text {
    font-size: 13px;
    -webkit-line-clamp: 6;
  }

  .portfolio-card {
    flex: 0 0 calc((100% - 18px) / 2);
    min-width: calc((100% - 18px) / 2);
  }

  .process__track {
    --process-size: 160px;
  }

  .process-card {
    height: var(--process-size);
    min-height: var(--process-size);
    max-height: var(--process-size);
    padding: 18px;
    border-radius: 22px;
  }

  .process-card__num {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .process-card__title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .process-card__text {
    font-size: 12px;
    -webkit-line-clamp: 5;
  }

  .viz-gallery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .service-card {
    padding: 14px;
    border-radius: 18px;
  }

  .service-card__icon {
    width: 22px;
    height: 22px;
    margin-bottom: 10px;
  }

  .service-card__title {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .service-card__text {
    font-size: 10px;
    line-height: 1.35;
    -webkit-line-clamp: 4;
  }

  .portfolio-card {
    flex: 0 0 78%;
    min-width: 78%;
  }

  .contact__panel {
    grid-template-columns: 1fr;
  }

  .contact__col {
    border-bottom: 1px solid var(--border);
    padding: 22px 24px;
  }

  .contact__col:last-of-type {
    border-bottom: none;
  }

  .contact__decor {
    height: 160px;
    border-top: 1px solid var(--border);
  }

  .viz-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lightbox__nav {
    width: 38px;
    height: 38px;
  }

  .lightbox__nav--prev {
    left: 10px;
  }

  .lightbox__nav--next {
    right: 10px;
  }
}
