:root {
  --bg: #0b0907;
  --bg-2: #12100d;
  --bg-3: #1a1612;
  --cream: #f4ece2;
  --cream-2: #d8cbbd;
  --muted: #9a8d7e;
  --gold: #c6a46a;
  --gold-2: #e4d2ae;
  --line: rgba(198, 164, 106, 0.22);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Manrope", system-ui, sans-serif;
  --pad: clamp(20px, 4vw, 72px);
  --max: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 8;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  width: min(100% - var(--pad) * 2, var(--max));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
}

h2 {
  font-size: clamp(36px, 5vw, 64px);
}

h3 {
  font-size: clamp(22px, 2.4vw, 30px);
}

.section {
  padding: clamp(64px, 10vw, 140px) 0;
  position: relative;
}

.section__head {
  display: block;
  margin-bottom: 48px;
}

.num {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  color: var(--gold);
  line-height: 0.8;
  min-width: 72px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: #1a140c;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  transition: 0.35s ease;
}

.btn:hover {
  background: transparent;
  color: var(--gold-2);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244, 236, 226, 0.25);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-2);
}

.btn--sm {
  min-height: 42px;
  padding: 0 18px;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  transition: background 0.35s ease, border-color 0.35s ease;
}

.header.is-scrolled {
  background: rgba(11, 9, 7, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header.is-open {
  background: #0b0907;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 25;
  background: rgba(11, 9, 7, 0.48);
}

.header__inner {
  width: min(100% - var(--pad) * 2, var(--max));
  margin: 0 auto;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  order: 1;
  flex-shrink: 0;
}

.logo img {
  display: block;
  width: min(260px, 52vw);
  height: auto;
}

.header__cta {
  order: 3;
  border-radius: 22px;
}

.header__tools {
  display: flex;
  align-items: center;
  gap: 12px;
  order: 3;
  margin-left: auto;
  flex-shrink: 0;
}

.header__tools .header__cta {
  order: 0;
  margin-left: 0;
}

.lang {
  display: flex;
  align-items: center;
  padding: 3px;
  border-radius: 999px;
  background: var(--cream);
}

.lang [data-lang] {
  display: inline-block;
  border: 0;
  background: transparent;
  min-width: 36px;
  padding: 6px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #0b0907;
  cursor: pointer;
  text-align: center;
}

.lang [data-lang].is-on {
  background: #0b0907;
  color: var(--cream);
}

.nav {
  display: flex;
  order: 2;
  gap: 18px;
  font-size: 13px;
  color: var(--cream-2);
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  order: 4;
  width: 42px;
  height: 42px;
  border: 0;
  background: none;
  padding: 0;
}

.burger span {
  display: block;
  height: 1px;
  background: var(--cream);
  margin: 8px 6px;
  transition: 0.3s ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: block;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0a0806;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  transform: scale(1.04);
  animation: ken 18s ease-in-out infinite alternate;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 9, 7, 0.94) 0%, rgba(11, 9, 7, 0.62) 42%, rgba(11, 9, 7, 0.12) 72%, rgba(11, 9, 7, 0.28) 100%),
    linear-gradient(180deg, rgba(11, 9, 7, 0.35) 0%, transparent 22%, transparent 70%, rgba(11, 9, 7, 0.45) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  width: min(100% - var(--pad) * 2, var(--max));
  margin-inline: auto;
  padding: 110px 0 56px;
}

.eyebrow--line {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.eyebrow--line::after {
  content: "";
  width: 56px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-size: clamp(52px, 7vw, 88px);
  letter-spacing: -0.03em;
}

.hero__sub {
  margin: 18px 0 16px;
  max-width: 22ch;
  font-size: clamp(18px, 2.2vw, 26px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.35;
  color: var(--cream);
}

.hero__lead {
  max-width: 36rem;
  margin: 0 0 28px;
  color: var(--cream-2);
  font-size: 16px;
  line-height: 1.7;
}

.hero__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.hero__points li {
  display: grid;
  gap: 8px;
  align-content: start;
}

.hero__points svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.hero__points strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.35;
}

.hero__points span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.hero__slogan {
  margin: 8px 0 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 30px);
  color: var(--gold-2);
}


.hero__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin: 22px 0 0;
}

.hero__meta div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.hero__meta div:last-child {
  grid-column: 1 / -1;
}

.hero__meta dt {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__meta dd {
  margin: 4px 0 0;
  font-size: 15px;
}

.hero__price {
  margin: 20px 0 18px;
}

.hero__price-label,
.offer__price span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__price strong,
.offer__price strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 500;
  line-height: 1;
  margin: 6px 0 8px;
}

.hero__price-note {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about__grid,
.order__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.about.section {
  padding-top: clamp(48px, 6vw, 88px);
  padding-bottom: clamp(48px, 6vw, 88px);
}

.about .section__head {
  margin-bottom: 28px;
}

.about .about__grid {
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.about__text {
  max-width: none;
}

.lead {
  font-size: 20px;
  color: var(--cream);
}

.about__text p,
.order__text {
  color: var(--cream-2);
}

blockquote {
  margin: 32px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--cream-2);
}

.about__photo img,
.colors img,
.gallery__item img,
.kit__block,
.offer__box {
  border-radius: 2px;
}

.about__photo {
  margin: 0;
  overflow: hidden;
}

.about__photo img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  margin: 0;
  object-fit: contain;
  background: transparent;
  transform: scale(1.55);
  transform-origin: center center;
}

.about__photo figcaption,
.colors figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.benefits {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.benefits.section {
  padding-bottom: clamp(12px, 2vw, 28px);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.scene {
  width: min(100% - var(--pad) * 2, var(--max));
  margin: 0 auto clamp(48px, 7vw, 100px);
}

.scene + .scene {
  margin-top: clamp(-28px, -3vw, -12px);
}

.scene--pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.scene--trio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.scene--trio .scene__shot {
  overflow: hidden;
  background: #070605;
  aspect-ratio: 3 / 5;
}

.scene--trio .scene__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scene--trio .scene__shot:nth-child(1) img {
  object-position: 88% 36%;
}

.scene--trio .scene__shot:nth-child(2) img {
  object-position: 58% 62%;
}

.scene--trio .scene__shot:nth-child(3) img {
  object-position: 42% 58%;
}

.scene--trio .scene__shot:hover img {
  transform: scale(1.05);
}

.scene__shot {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: #070605;
  overflow: hidden;
  cursor: zoom-in;
}

.scene__shot img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.8s ease;
}

.scene--wide:not(.scene--crop) .scene__shot {
  background: transparent;
}

.scene--wide:not(.scene--crop) .scene__shot img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.scene--pair .scene__shot {
  background: transparent;
  overflow: visible;
}

.scene--pair .scene__shot img {
  width: 78%;
  max-width: 420px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.scene--crop .scene__shot {
  overflow: hidden;
}

.scene--crop .scene__shot img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  object-position: 78% 32%;
}

.scene__shot:hover img {
  transform: scale(1.04);
}

.scene--pair .scene__shot:hover img {
  transform: scale(1.03);
}

.card {
  min-height: 240px;
  padding: 28px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  transition: 0.4s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(198, 164, 106, 0.5);
  background: rgba(198, 164, 106, 0.05);
}

.card span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 22px;
}

.card h3 {
  margin: 0 0 12px;
}

.card p {
  margin: 0;
  color: var(--cream-2);
  font-size: 14px;
}

.service {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.service__lead {
  max-width: 46rem;
  margin: 0 0 clamp(28px, 4vw, 44px);
  color: var(--cream-2);
  font-size: 17px;
}

.service__photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.service__photos .scene__shot {
  overflow: hidden;
}

.service__photos img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.service__photos .scene__shot:nth-child(1) img {
  object-position: 86% 38%;
}

.service__photos .scene__shot:nth-child(2) img {
  object-position: 50% 40%;
}

.service__photos .scene__shot:nth-child(3) img {
  object-position: 42% 32%;
}

.service__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.service__grid .card {
  min-height: 0;
}

.specs.section {
  padding-top: 0;
}

.specs__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 36px);
  margin-bottom: clamp(32px, 4vw, 48px);
}

.specs__top .section__head {
  grid-row: 2;
  margin-bottom: 0;
}

.specs__top .specs__shot {
  grid-row: 1;
  justify-self: stretch;
  width: 100%;
  margin-top: clamp(-28px, -3vw, -8px);
  border-radius: 28px;
  background:
    radial-gradient(ellipse 52% 58% at 50% 42%, rgba(198, 164, 106, 0.22) 0%, rgba(28, 18, 12, 0.35) 32%, #000 70%),
    linear-gradient(180deg, #11100c 0%, #000 38%, #000 72%, #0b0907 100%);
}

.specs__intro {
  max-width: 22rem;
  margin: 18px 0 0;
  color: var(--cream-2);
  font-size: 16px;
}

.specs__shot {
  overflow: hidden;
  background: #000;
}

.specs__shot img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: 50% 48%;
}

.specs__shot:hover img {
  transform: scale(1.03);
}

.specs__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.specs__group {
  grid-column: span 3;
  padding: 28px 26px 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  transition: 0.4s ease;
}

.specs__group:hover {
  border-color: rgba(198, 164, 106, 0.5);
  background: rgba(198, 164, 106, 0.04);
}

.specs__group dl {
  margin: 18px 0 0;
}

.specs__group dl > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.specs__group dt {
  color: var(--muted);
  font-size: 13px;
}

.specs__group dd {
  margin: 0;
  max-width: 58%;
  text-align: right;
  font-weight: 600;
  color: var(--cream);
}

.specs__stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.specs__stack dd {
  max-width: 100%;
  text-align: left;
  font-weight: 500;
  color: var(--cream-2);
}

.muted {
  color: var(--muted);
  font-weight: 400;
}

.note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.kit__colors {
  margin-bottom: 48px;
}

.kit h3 {
  margin-bottom: 20px;
}

.colors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.colors img,
.swatch {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: transparent;
  border: 1px solid rgba(244, 236, 226, 0.16);
}

.swatch--total {
  background: #070707;
  box-shadow: inset 0 0 0 1px rgba(244, 236, 226, 0.2);
}

.kit__cols {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.kit__block {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  transition: 0.4s ease;
}

.kit__block:hover {
  border-color: rgba(198, 164, 106, 0.5);
  background: rgba(198, 164, 106, 0.04);
}

.kit ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.kit li {
  position: relative;
  padding: 13px 0 13px 18px;
  border-top: 1px solid var(--line);
  color: var(--cream-2);
}

.kit li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.25em;
  width: 7px;
  height: 1px;
  background: var(--gold);
}

.kit li span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.gallery.section {
  padding-top: clamp(28px, 5vw, 72px);
  padding-bottom: clamp(28px, 5vw, 72px);
}

.gallery__grid {
  display: block;
}

.gallery__video {
  position: relative;
  overflow: hidden;
  background: #050403;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
}

.gallery__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
}

.gallery__item {
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery__item img {
  width: 100%;
  height: 720px;
  object-fit: contain;
  transform: scale(1.55);
  transform-origin: center center;
  transition: transform 0.7s ease;
}

.gallery__item:hover img {
  transform: scale(1.62);
}

.offer {
  padding-top: 0;
}

.offer__box {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(32px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(198, 164, 106, 0.08), transparent 40%),
    var(--bg-3);
  border: 1px solid var(--line);
}

.offer__sku {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.offer__price {
  max-width: 360px;
}

.offer__price p {
  color: var(--muted);
  font-size: 14px;
}

.order {
  background: var(--bg-2);
}

.contacts {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 18px;
}

.contacts span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contacts a {
  color: var(--gold-2);
}

.contacts small {
  display: block;
  color: var(--cream-2);
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: var(--cream-2);
}

.form__full,
.form__submit,
.form__status {
  grid-column: 1 / -1;
}

.form__gotcha {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.form__submit {
  border-radius: 22px;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: transparent;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s ease;
  border-radius: 22px;
}

.form input:focus,
.form textarea:focus {
  border-color: var(--gold);
}

.form__status {
  min-height: 1.4em;
  margin: 0;
  color: var(--gold-2);
}

.form__legal {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.form__legal a,
.footer a,
.legal a {
  color: var(--gold-2);
}

.legal {
  padding-top: clamp(120px, 16vw, 160px);
}

.legal h1 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
  font-size: clamp(36px, 5vw, 64px);
  margin: 0 0 24px;
}

.legal__wrap {
  max-width: 46rem;
}

.legal h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  margin: 40px 0 16px;
}

.legal p,
.legal li {
  color: var(--cream-2);
}

.legal ul {
  margin: 0 0 16px;
  padding-left: 1.2em;
}

.footer {
  padding: 56px 0 40px;
  background: #000;
  border-top: 1px solid #000;
  color: var(--muted);
  font-size: 14px;
}

.footer__logo {
  display: block;
  width: min(420px, 86vw);
  margin-bottom: 40px;
}

.footer__logo img {
  width: 100%;
  height: auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 48px;
}

.footer__grid ul {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}

.footer__grid li {
  padding: 7px 0;
  color: var(--cream-2);
  line-height: 1.5;
}

.footer__grid a:hover {
  color: var(--gold);
}

.footer__copy {
  margin: 40px 0 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.92);
  display: grid;
  place-items: center;
  padding: 40px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1200px, 100%);
  max-height: 88vh;
  object-fit: contain;
  background: transparent;
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 22px;
  border: 0;
  background: none;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes ken {
  to {
    transform: scale(1.1) translate(-1.5%, 1%);
  }
}

@media (max-width: 1100px) {
  .nav {
    gap: 12px;
    font-size: 12px;
  }

  .about__grid,
  .order__grid,
  .kit__cols,
  .benefits__grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefits__grid {
    grid-template-columns: 1fr 1fr;
  }

  .scene--pair {
    grid-template-columns: 1fr;
  }

  .scene--trio {
    gap: 8px;
  }

  .specs__group {
    grid-column: span 3;
  }
}

@media (max-width: 860px) {
  .header__cta {
    display: none;
  }

  .nav {
    display: flex;
    position: fixed;
    top: 76px;
    right: 12px;
    z-index: 32;
    width: min(220px, 72vw);
    height: auto;
    max-height: calc(100dvh - 96px);
    flex-direction: column;
    gap: 2px;
    padding: 14px 18px;
    font-size: 16px;
    background: #14110e;
    border: 1px solid var(--line);
    box-shadow: -16px 20px 40px rgba(0, 0, 0, 0.35);
    transform: translateX(calc(100% + 28px));
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, visibility 0.3s ease;
  }

  .nav.is-open {
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }

  .nav a {
    padding: 10px 0;
  }

  .burger {
    display: block;
    margin-left: 0;
  }

  .header__tools {
    margin-left: auto;
  }

  .lang [data-lang] {
    min-width: 28px;
    padding: 5px 6px;
    font-size: 10px;
  }

  .about__grid,
  .about .about__grid,
  .order__grid,
  .kit__cols,
  .colors,
  .offer__box,
  .specs__top,
  .service__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .about__photo img {
    transform: scale(1.35);
  }

  .specs__group {
    grid-column: span 6;
  }

  .scene--trio {
    gap: 6px;
  }

  .scene--trio .scene__shot {
    aspect-ratio: 3 / 4.6;
  }

  .hero__content {
    padding-top: 96px;
    padding-bottom: 40px;
    max-width: 100%;
  }

  .hero__points {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(11, 9, 7, 0.55) 0%, rgba(11, 9, 7, 0.28) 28%, rgba(11, 9, 7, 0.72) 62%, rgba(11, 9, 7, 0.94) 100%),
      linear-gradient(90deg, rgba(11, 9, 7, 0.55), transparent 70%);
  }

  .hero__image {
    object-position: 68% 20%;
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery__item img {
    height: 480px;
    transform: scale(1.5);
  }

  .form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .section__head {
    margin-bottom: 32px;
  }
}

@media (max-width: 560px) {
  .benefits__grid,
  .gallery__grid,
  .colors {
    grid-template-columns: 1fr;
  }


  .gallery__video {
    grid-column: 1 / -1;
  }

  .gallery__item img {
    height: min(78vw, 520px);
    transform: scale(1.45);
  }

  .hero__title {
    font-size: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .hero__image,
  .card {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }

  .gallery__item img {
    animation: none !important;
    transition: none !important;
    opacity: 1;
  }
}
