:root {
  --bg: #f4f1ea;
  --paper: #f7f4ee;
  --text: #111111;
  --muted: #76716a;
  --line: rgba(17, 17, 17, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.72), transparent 26%),
    radial-gradient(circle at 80% 84%, rgba(255, 255, 255, 0.58), transparent 24%),
    linear-gradient(180deg, #f7f4ee 0%, var(--bg) 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow: hidden;
}

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

button {
  font: inherit;
}

.page-shell {
  position: relative;
  width: 100%;
  height: 100vh;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 26px 34px 20px;
  pointer-events: none;
}

.brand,
.topnav a,
.locale,
.locale-switch a,
.section-label,
.outline-button,
.fixed-scroll,
.fixed-social a,
.screen__range {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.topbar a,
.topbar nav,
.locale {
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  grid-column: 2;
  justify-self: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.58rem;
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.topnav {
  display: flex;
  grid-column: 1;
  justify-self: start;
  justify-content: flex-start;
  gap: 30px;
}

.locale-switch {
  grid-column: 3;
  justify-self: end;
}

.topnav a,
.locale,
.locale-switch a,
.fixed-scroll,
.fixed-social a,
.screen__range {
  color: var(--text);
}

.locale-switch {
  display: inline-flex;
  gap: 10px;
}

.locale-switch a.is-active {
  color: var(--text);
}

.fixed-social {
  position: fixed;
  left: 36px;
  bottom: 30px;
  z-index: 15;
  display: flex;
  gap: 24px;
}

.fixed-scroll {
  position: fixed;
  right: 34px;
  bottom: 30px;
  z-index: 15;
}

.horizontal-site {
  height: 100vh;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.horizontal-site::-webkit-scrollbar {
  display: none;
}

.screen {
  position: relative;
  flex: 0 0 100vw;
  width: 100vw;
  min-height: 100vh;
  scroll-snap-align: start;
  padding: 110px 54px 86px;
}

.screen__number,
.screen__range {
  position: absolute;
  right: 42px;
  top: 50%;
  transform: translateY(-50%);
}

.screen__number {
  font-size: clamp(7rem, 18vw, 18rem);
  line-height: 0.9;
  color: rgba(17, 17, 17, 0.08);
  pointer-events: none;
}

.screen__number--vertical {
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  font-size: 3rem;
  color: rgba(17, 17, 17, 0.26);
}

.hero-copy,
.hero-media,
.body-text,
.work-layout,
.next-project {
  position: relative;
  z-index: 1;
}

.screen--hero {
  padding: 0;
}


.hero-copy {
  padding-top: 10vh;
  max-width: 980px;
}

.hero-media {
  width: 100%;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.hero-media--mobile {
  display: none;
}

.hero-media__slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 700ms ease;
}

.hero-media__slide.is-active {
  opacity: 1;
}

.hero-copy h1,
.body-text p,
.project-list__item,
.next-project h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(4rem, 9vw, 7.8rem);
  line-height: 0.92;
  max-width: 10ch;
}

.hero-copy em {
  font-style: italic;
  font-weight: 400;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 48px;
  margin-top: 34px;
  border: 1px solid var(--line);
  color: var(--muted);
}

.body-text {
  padding-top: 10vh;
  max-width: 1220px;
}

.body-text p {
  margin: 0;
  font-size: clamp(2.8rem, 5.3vw, 5.6rem);
  line-height: 1.01;
}

.body-text strong {
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.screen--work {
  padding-top: 140px;
}

.work-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: start;
}

.project-list {
  display: grid;
  gap: 10px;
}

.project-list__item {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  display: block;
  text-align: left;
  color: rgba(17, 17, 17, 0.22);
  font-size: clamp(3.2rem, 6.2vw, 6rem);
  line-height: 0.96;
  cursor: pointer;
  transition: color 160ms ease;
}

.project-list__item.is-active,
.project-list__item:hover {
  color: var(--text);
}

.work-preview {
  position: relative;
  width: min(62vw, 860px);
  aspect-ratio: 1 / 1;
  min-height: auto;
  justify-self: end;
}

.work-preview__image {
  position: absolute;
  inset: 0;
  background: #edeceb;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
  box-shadow: 0 22px 48px rgba(17, 17, 17, 0.12);
}

.work-preview__image.is-active {
  opacity: 1;
  transform: none;
}

.work-preview__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #edeceb;
}

.work-preview__image:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.12)),
    linear-gradient(135deg, #f5f2eb 0%, #dfd7cc 48%, #c2b5a4 100%);
}


.screen--contact {
  display: grid;
  align-items: center;
}

.next-project {
  min-height: 72vh;
  padding: 54px 36px 36px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 24px 50px rgba(17, 17, 17, 0.08);
}

.screen--contact .section-label {
  color: var(--muted);
}

.next-project h2 {
  margin: 20px 0 0;
  font-size: clamp(2.5rem, 4.8vw, 4.2rem);
  line-height: 0.98;
  max-width: 10ch;
}

.drop-contact-note {
  margin: 14px 0 0;
  max-width: 22rem;
  color: rgba(17, 17, 17, 0.66);
  font-size: 0.84rem;
  line-height: 1.5;
}

html[lang="ru"] .hero-copy h1 {
  font-size: clamp(3.5rem, 7.2vw, 6.4rem);
  line-height: 0.95;
  max-width: 11ch;
}

html[lang="ru"] .body-text {
  max-width: 1380px;
}

html[lang="ru"] .body-text p {
  font-size: clamp(1.8rem, 2.7vw, 3rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  max-width: 27ch;
}

html[lang="ru"] .screen--about .body-text p br {
  display: block;
  content: "";
}

html[lang="ru"] .project-list__item {
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: 0.98;
}

html[lang="ru"] .next-project h2 {
  font-size: clamp(2.3rem, 4.5vw, 3.9rem);
  max-width: 11ch;
}

html[lang="ru"] .drop-contact-note {
  max-width: 24rem;
}

body.detail-page {
  overflow: auto;
}

.detail-page .page-shell {
  min-height: 100vh;
  height: auto;
}


.detail-page .topbar {
  position: sticky;
  top: 0;
  pointer-events: auto;
  background: rgba(247, 244, 238, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(2px);
}

.detail-page .fixed-social,
.detail-page .fixed-scroll {
  display: none;
}

.drop-page {
  padding: 140px 44px 54px;
}

.h1-product-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 34vw);
  grid-template-areas:
    "back back"
    "hero details";
  column-gap: 24px;
  row-gap: 12px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 14px 24px 24px;
  overflow: visible;
}

.h1-product-page .drop-page__back {
  grid-area: back;
  display: inline-flex;
  margin: 0;
  align-self: end;
}

.h1-hero {
  grid-area: hero;
  position: relative;
  height: calc(100svh - 168px);
  min-height: 520px;
  border: 1px solid var(--line);
  background: #ecebe8;
  overflow: hidden;
}

.h1-details {
  grid-area: details;
  margin-top: 0;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(247, 244, 238, 0.92);
  position: sticky;
  top: 108px;
  height: calc(100svh - 168px);
  overflow: auto;
}

.h1-details .drop-info {
  margin-top: 14px;
}

.h2-product-page {
  display: grid;
  grid-template-columns: minmax(360px, 34vw) minmax(0, 1fr);
  grid-template-areas:
    "back back"
    "details hero";
  column-gap: 24px;
  row-gap: 12px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 14px 24px 24px;
  overflow: visible;
}

.h2-product-page .drop-page__back {
  grid-area: back;
  display: inline-flex;
  margin: 0;
  align-self: end;
}

.h2-hero {
  grid-area: hero;
  position: relative;
  height: calc(100svh - 168px);
  min-height: 520px;
  border: 1px solid var(--line);
  background: #ecebe8;
  overflow: hidden;
}

.h2-details {
  grid-area: details;
  margin-top: 0;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(247, 244, 238, 0.92);
  position: sticky;
  top: 108px;
  height: calc(100svh - 168px);
  overflow: auto;
}

.h2-details .drop-info {
  margin-top: 14px;
}

.h2-hero .drop-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.h2-hero .drop-carousel__viewport {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  padding: 24px 92px 24px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #efefed;
  overflow: hidden;
}

.h2-hero .drop-carousel__slide img {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: 50% 50% !important;
  padding: 0;
  background: #efefed;
}

.h2-hero .drop-carousel__slide img[data-lightbox-image] {
  cursor: zoom-in;
}

.h2-hero .drop-carousel__thumbs {
  position: absolute;
  top: 24px;
  right: 16px;
  bottom: auto;
  display: grid;
  align-items: stretch;
  gap: 8px;
}

.h2-hero .drop-carousel__thumbs button {
  min-width: 44px;
  height: 34px;
  border: 1px solid transparent;
  background: rgba(247, 244, 238, 0.72);
}

.h2-hero .drop-carousel__thumbs button:hover,
.h2-hero .drop-carousel__thumbs button.is-active {
  border-color: var(--line);
  background: #ffffff;
  color: var(--text);
}

.h2-hero .drop-carousel__controls {
  position: absolute;
  right: 16px;
  bottom: 20px;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.h2-hero .drop-carousel__controls button {
  min-width: 92px;
  height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: rgba(247, 244, 238, 0.84);
  color: var(--text);
}

.h2-hero .drop-carousel__controls button:hover {
  background: #ffffff;
}

.drop-product__header {
  position: static;
}

.drop-product__header h1,
.drop-info__text h2 {
  margin: 16px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.drop-product__header h1 {
  font-size: clamp(3.2rem, 5.4vw, 5.2rem);
  line-height: 0.92;
  max-width: 8ch;
}

.h1-hero .drop-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.h1-hero .drop-carousel__viewport {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  padding: 24px 92px 24px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #efefed;
  overflow: hidden;
}

.drop-carousel__slide {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.drop-carousel__slide.is-active {
  display: flex;
}

.h1-hero .drop-carousel__slide img {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: 50% 50% !important;
  padding: 0;
  background: #efefed;
}

.h1-hero .drop-carousel__slide img[data-lightbox-image] {
  cursor: zoom-in;
}

.drop-carousel__controls,
.drop-carousel__thumbs {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.drop-carousel__controls button,
.drop-carousel__thumbs button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: inherit;
}

.drop-carousel__controls button:hover,
.drop-carousel__thumbs button:hover,
.drop-carousel__thumbs button.is-active {
  color: var(--text);
}

.h1-hero .drop-carousel__thumbs {
  position: absolute;
  top: 24px;
  right: 16px;
  bottom: auto;
  display: grid;
  align-items: stretch;
  gap: 8px;
}

.h1-hero .drop-carousel__thumbs button {
  min-width: 44px;
  height: 34px;
  border: 1px solid transparent;
  background: rgba(247, 244, 238, 0.72);
}

.h1-hero .drop-carousel__thumbs button:hover,
.h1-hero .drop-carousel__thumbs button.is-active {
  border-color: var(--line);
  background: #ffffff;
  color: var(--text);
}

.h1-hero .drop-carousel__controls {
  position: absolute;
  right: 16px;
  bottom: 20px;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.h1-hero .drop-carousel__controls button {
  min-width: 92px;
  height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: rgba(247, 244, 238, 0.84);
  color: var(--text);
}

.h1-hero .drop-carousel__controls button:hover {
  background: #ffffff;
}

.drop-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.drop-info__text h2 {
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.94;
}

.drop-info__text p:not(.section-label) {
  margin: 24px 0 0;
  max-width: 36rem;
  color: rgba(17, 17, 17, 0.74);
  font-size: 1.02rem;
  line-height: 1.7;
}

.drop-info__list {
  margin: 0;
  display: grid;
  gap: 18px;
}

.drop-info__list div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.drop-info__list dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.drop-info__list dd {
  margin: 0;
  color: rgba(17, 17, 17, 0.78);
  line-height: 1.55;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox.is-open {
  display: flex;
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
}

.lightbox__toolbar {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lightbox__toolbar button {
  min-width: 44px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  cursor: pointer;
}

.lightbox__toolbar button:hover,
.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox__viewport {
  width: min(96vw, 1720px);
  height: min(90vh, 980px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  touch-action: none;
}

.lightbox__image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  transform-origin: center center;
  user-select: none;
  -webkit-user-drag: none;
  cursor: grab;
}

.drop-page__hero {
  position: relative;
  min-height: calc(100vh - 194px);
  display: grid;
  align-items: end;
  padding: 4vw;
  overflow: hidden;
}

.drop-page__kicker,
.drop-page__meta,
.drop-page__cta {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.drop-page__hero-inner,
.drop-page__section,
.drop-page__gallery {
  position: relative;
  z-index: 1;
}

.drop-page__hero h1,
.drop-page__section h2,
.drop-page__statement {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.drop-page__hero h1 {
  margin: 0 0 18px;
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.9;
  max-width: 8ch;
}

.drop-page__summary {
  margin: 0;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(17, 17, 17, 0.76);
}

.drop-page__section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.8fr);
  gap: 42px;
}

.drop-page__section {
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.drop-page__section h2 {
  margin: 0 0 18px;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  line-height: 0.94;
}

.drop-page__section p,
.drop-page__specs li {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(17, 17, 17, 0.78);
}

.drop-page__specs {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.drop-page__gallery {
  display: grid;
  gap: 22px;
}

.drop-page__media {
  min-height: 420px;
  overflow: hidden;
}

.drop-page__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.drop-page__media--tall {
  min-height: 560px;
}

.drop-page__statement {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.96;
  max-width: 11ch;
}

.drop-page__cta {
  display: inline-flex;
  margin-top: 28px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
}

.drop-page__back {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.drop-page--shearling .drop-page__hero {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 252, 246, 0.95), transparent 22%),
    radial-gradient(circle at 72% 28%, rgba(240, 228, 205, 0.78), transparent 26%),
    linear-gradient(135deg, #f8f4ec 0%, #efe4d1 46%, #dcc9a5 100%);
}

.drop-page--shearling .drop-page__hero::before {
  content: "";
  position: absolute;
  right: 8%;
  top: 10%;
  width: min(38vw, 480px);
  aspect-ratio: 0.88;
  border-radius: 44% 56% 46% 54% / 42% 42% 58% 58%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.5), transparent 36%),
    radial-gradient(circle at 62% 58%, rgba(205, 176, 126, 0.7), transparent 28%),
    linear-gradient(180deg, #f1dfbf 0%, #d8b985 100%);
  filter: blur(4px);
  opacity: 0.95;
}

.drop-page--shearling .drop-page__media--hero {
  background:
    radial-gradient(circle at 46% 38%, rgba(255, 252, 245, 0.72), transparent 28%),
    linear-gradient(135deg, #efe2ca 0%, #cfb07a 44%, #8f6b3b 100%);
}

.drop-page--shearling .drop-page__media--detail-a {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(0, 0, 0, 0.05)),
    linear-gradient(135deg, #fbf4e8 0%, #e2c58e 55%, #b78a4e 100%);
}

.drop-page--shearling .drop-page__media--detail-b {
  background:
    radial-gradient(circle at 28% 34%, rgba(255, 255, 255, 0.35), transparent 20%),
    linear-gradient(135deg, #f6eedf 0%, #dcc093 48%, #a07b4a 100%);
}

.drop-page--shearling .drop-page__statement {
  color: #5a4020;
}

.drop-page--stingray {
  --bg: #ebebe7;
  --paper: #f2f2ee;
  --text: #101112;
  --muted: #5f6569;
  --line: rgba(16, 17, 18, 0.18);
}

.drop-page--stingray .drop-page__hero {
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.24), transparent 22%),
    linear-gradient(135deg, #dfe1de 0%, #b8bfbe 34%, #4f5458 100%);
}

.drop-page--stingray .drop-page__hero::before,
.drop-page--stingray .drop-page__hero::after {
  content: "";
  position: absolute;
  background: #0f1113;
}

.drop-page--stingray .drop-page__hero::before {
  right: 12%;
  top: 14%;
  width: 180px;
  height: 180px;
  border-radius: 28% 72% 42% 58% / 58% 42% 58% 42%;
  box-shadow:
    0 0 0 18px rgba(255, 255, 255, 0.12),
    0 0 0 40px rgba(255, 255, 255, 0.06);
}

.drop-page--stingray .drop-page__hero::after {
  right: calc(12% + 64px);
  top: 44%;
  width: 2px;
  height: 200px;
  transform: rotate(22deg);
  transform-origin: top;
}

.drop-page--stingray .drop-page__media--hero {
  background:
    radial-gradient(circle at 48% 30%, rgba(255, 255, 255, 0.24), transparent 18%),
    linear-gradient(135deg, #1a1d21 0%, #43484e 50%, #cfd2d1 100%);
}

.drop-page--stingray .drop-page__media--detail-a {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.18)),
    linear-gradient(135deg, #202328 0%, #49515a 52%, #c7cccf 100%);
}

.drop-page--stingray .drop-page__media--detail-b {
  background:
    radial-gradient(circle at 72% 26%, rgba(255, 255, 255, 0.16), transparent 16%),
    linear-gradient(135deg, #0f1216 0%, #333941 48%, #8e979d 100%);
}

.drop-page--stingray .drop-page__section p,
.drop-page--stingray .drop-page__specs li,
.drop-page--stingray .drop-page__summary {
  color: rgba(16, 17, 18, 0.8);
}

@media (max-width: 900px) {
  .page-shell {
    height: auto;
    min-height: 100svh;
  }

  body {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .topbar {
    position: fixed;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    padding: 18px 16px 14px;
  }

  .brand {
    grid-column: 2;
    font-size: 1.18rem;
    letter-spacing: 0.06em;
  }

  .topnav {
    grid-column: 1;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 14px;
  }

  .locale-switch {
    grid-column: 3;
    justify-self: end;
    gap: 8px;
  }

  .topnav a,
  .locale-switch a,
  .fixed-scroll,
  .fixed-social a,
  .screen__range,
  .section-label,
  .outline-button {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .fixed-social,
  .fixed-scroll {
    display: none;
  }

  .horizontal-site {
    display: block;
    height: 100svh;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
  }

  .drop-page {
    padding: 118px 22px 42px;
  }

  .h1-product-page {
    display: block;
    padding: 12px 14px 24px;
  }

  .h1-product-page .drop-page__back {
    margin-bottom: 12px;
  }

  .h1-hero {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .h1-hero .drop-carousel {
    height: auto;
  }

  .h1-hero .drop-carousel__viewport {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 3;
    padding: 10px;
  }

  .h1-hero .drop-carousel__thumbs {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 10px;
  }

  .h1-hero .drop-carousel__thumbs button {
    min-width: 34px;
    height: 30px;
  }

  .h1-hero .drop-carousel__slide[data-slide="1"] img,
  .h1-hero .drop-carousel__slide[data-slide="3"] img {
    transform: rotate(-90deg) !important;
    width: auto !important;
    height: 67% !important;
    max-width: none !important;
    max-height: none !important;
  }

  .h1-hero .drop-carousel__controls {
    position: relative;
    right: auto;
    bottom: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
  }

  .h1-hero .drop-carousel__controls button {
    min-width: 86px;
    height: 38px;
  }

  .h1-hero .drop-carousel__controls [data-carousel-prev] {
    justify-self: start;
  }

  .h1-hero .drop-carousel__controls [data-carousel-next] {
    justify-self: end;
  }

  .h1-hero .drop-carousel__controls,
  .h1-hero .drop-carousel__thumbs {
    font-size: 0.68rem;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox__viewport {
    width: 100%;
    height: calc(100vh - 96px);
  }

  .h1-details {
    position: static;
    top: auto;
    height: auto;
    overflow: visible;
    padding: 20px 16px;
  }

  .h1-details .drop-product__header h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .h1-details .drop-info {
    margin-top: 0;
    padding-top: 14px;
    gap: 16px;
  }

  .h2-product-page {
    display: flex;
    flex-direction: column;
    padding: 12px 14px 24px;
  }

  .h2-product-page .drop-page__back {
    margin-bottom: 12px;
    order: 0;
  }

  .h2-hero {
    order: 1;
  }

  .h2-details {
    order: 2;
  }

  .h2-hero {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .h2-hero .drop-carousel {
    height: auto;
  }

  .h2-hero .drop-carousel__viewport {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 3;
    padding: 10px;
  }

  .h2-hero .drop-carousel__thumbs {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 10px;
  }

  .h2-hero .drop-carousel__thumbs button {
    min-width: 34px;
    height: 30px;
  }

  .h2-hero .drop-carousel__controls {
    position: relative;
    right: auto;
    bottom: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
  }

  .h2-hero .drop-carousel__controls button {
    min-width: 86px;
    height: 38px;
  }

  .h2-hero .drop-carousel__controls [data-carousel-prev] {
    justify-self: start;
  }

  .h2-hero .drop-carousel__controls [data-carousel-next] {
    justify-self: end;
  }

  .h2-hero .drop-carousel__slide[data-slide="3"] img {
    transform: rotate(-90deg) !important;
    width: auto !important;
    height: 67% !important;
    max-width: none !important;
    max-height: none !important;
  }

  .h2-hero .drop-carousel__controls,
  .h2-hero .drop-carousel__thumbs {
    font-size: 0.68rem;
  }

  .h2-details {
    position: static;
    top: auto;
    height: auto;
    overflow: visible;
    padding: 20px 16px;
  }

  .h2-details .drop-product__header h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .h2-details .drop-info {
    margin-top: 0;
    padding-top: 14px;
    gap: 16px;
  }

  .hero-media {
    width: 100%;
    height: 100svh;
    min-height: 0;
  }

  .drop-page__hero {
    min-height: auto;
    padding: 28px;
  }

  .drop-page__section-grid {
    grid-template-columns: 1fr;
  }

  .drop-page__media,
  .drop-page__media--tall {
    min-height: 280px;
  }

  .screen--hero {
    padding: 0;
    display: block;
  }

  .hero-media--desktop {
    display: none;
  }

  .hero-media--mobile {
    display: block;
  }

  .hero-media {
    background: #111111;
  }

  .hero-media--mobile .hero-media__slide {
    object-fit: cover;
    object-position: center center;
  }

  .screen {
    width: 100%;
    min-height: 100svh;
    padding: 96px 16px 28px;
    display: flex;
    align-items: center;
    scroll-snap-align: start;
  }

  .screen__number,
  .screen__range {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }

  .screen__number {
    font-size: 4.5rem;
    opacity: 0.45;
  }

  .screen__range {
    top: 88px;
    transform: none;
    right: 16px;
  }

  .work-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .work-preview {
    width: 100%;
    min-height: auto;
  }

  .hero-copy,
  .body-text,
  .work-layout,
  .next-project {
    width: 100%;
  }

  .hero-copy,
  .body-text {
    padding-top: 0;
  }

  .hero-media {
    width: 100%;
    height: 100svh;
    min-height: 0;
  }

  .body-text {
    max-width: 100%;
  }

  .body-text p {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.02;
    max-width: 10.5ch;
  }

  .project-list {
    gap: 12px;
  }

  .project-list__item {
    font-size: clamp(2rem, 8vw, 3.1rem);
    line-height: 0.98;
    max-width: 9.5ch;
  }

  .next-project {
    width: 100%;
    min-height: auto;
    padding: 28px 22px 24px;
  }

  .next-project h2 {
    font-size: clamp(2.05rem, 8vw, 3rem);
    line-height: 1;
    max-width: 9ch;
  }

  .drop-contact-note {
    max-width: 18rem;
  }

  html[lang="ru"] .body-text p {
    font-size: clamp(1.6rem, 6.8vw, 2.55rem);
    line-height: 1.08;
    max-width: 12ch;
  }

  html[lang="ru"] .project-list__item {
    font-size: clamp(1.8rem, 6.8vw, 2.75rem);
    max-width: 11ch;
  }

  html[lang="ru"] .next-project h2 {
    font-size: clamp(1.95rem, 7.2vw, 2.8rem);
    max-width: 10ch;
  }

  html[lang="ru"] .drop-contact-note {
    max-width: 19rem;
  }
}
