:root {
  --ink: #111713;
  --paper: #f2f1eb;
  --white: #fffef9;
  --accent: #ff5a36;
  --line: rgba(17, 23, 19, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.shell {
  width: min(100% - 64px, 1440px);
  margin-inline: auto;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: #263a35;
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  z-index: -2;
  object-fit: cover;
  object-position: 57% 55%;
  animation: hero-reveal 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 15, 12, 0.82) 0%, rgba(7, 15, 12, 0.44) 38%, rgba(7, 15, 12, 0.06) 72%),
    linear-gradient(180deg, rgba(7, 12, 10, 0.36) 0%, transparent 28%, rgba(7, 12, 10, 0.28) 100%);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transform: translateX(-50%);
}

.logo {
  display: block;
  width: max-content;
}

.logo__image {
  width: 108px;
  height: auto;
}

.site-nav {
  display: flex;
  gap: 36px;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.site-nav__order,
.menu-toggle {
  display: none;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(16, 23, 19, 0.28);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 180ms ease;
}

.site-nav a,
.header-link {
  position: relative;
}

.site-nav a::after,
.header-link::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.header-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-link {
  justify-self: end;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__content {
  align-self: center;
  padding-top: 100px;
}

.eyebrow {
  margin: 0 0 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(58px, 8vw, 126px);
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.hero__lead {
  max-width: 440px;
  margin: 34px 0 0;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 254, 249, 0.78);
}

.button {
  display: inline-flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
  min-width: 220px;
  margin-top: 36px;
  padding: 18px 20px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.button--light {
  color: var(--ink);
  background: var(--white);
}

.button--light:hover {
  color: var(--white);
  background: var(--accent);
}

.button__arrow {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button__arrow--down {
  transform: rotate(90deg);
}

.button__arrow--up {
  transform: rotate(-45deg);
}

.hero .button--light {
  color: var(--white);
  border-color: rgba(255, 254, 249, 0.38);
  background: rgba(16, 23, 19, 0.52);
  backdrop-filter: blur(10px);
}

.hero .button--light:hover {
  border-color: var(--accent);
  background: var(--accent);
}

.hero__footer {
  position: absolute;
  bottom: 30px;
  left: 50%;
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero__line {
  width: 54px;
  height: 1px;
  background: rgba(255, 255, 255, 0.58);
}

.intro {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) 3fr;
  gap: 48px;
  padding-block: 150px;
}

.section-label {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-top: 11px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(17, 23, 19, 0.58);
  text-transform: uppercase;
}

.section-label span:first-child {
  color: var(--accent);
}

.intro__content h2,
.product h2,
.closing h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 92px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.intro__content p {
  max-width: 560px;
  margin: 44px 0 0 auto;
  font-size: 20px;
  line-height: 1.55;
  color: rgba(17, 23, 19, 0.68);
}

.product {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.product__inner {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(520px, 1.14fr);
  gap: 72px;
  align-items: center;
  min-height: 900px;
  padding-block: 112px;
}

.section-label--dark {
  margin-bottom: 120px;
  color: rgba(255, 255, 255, 0.48);
}

.eyebrow--dark {
  color: var(--accent);
}

.product h2 {
  max-width: 650px;
}

.product__description {
  max-width: 500px;
  margin: 32px 0 30px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}

.product__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 500px;
  margin-bottom: 42px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.product__price span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.58);
  text-transform: uppercase;
}

.product__price strong {
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.feature-list {
  max-width: 500px;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-list span {
  color: var(--accent);
}

.product__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: #263d35;
  isolation: isolate;
}

.product__visual img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.04);
}

.specs {
  padding-block: 148px 160px;
  background: #edf0f1;
}

.specs__heading {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) 3fr;
  gap: 48px;
}

.specs h2 {
  margin: 0;
  font-size: clamp(48px, 6.6vw, 104px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.specs__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(64px, 8vw, 136px);
  margin-top: 110px;
}

.specs__list {
  margin: 0;
}

.specs__row {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
  min-height: 58px;
  padding-block: 18px;
  font-size: 16px;
}

.specs__row::after {
  position: absolute;
  right: 0;
  bottom: 23px;
  left: 0;
  z-index: 0;
  border-bottom: 1px dotted rgba(17, 23, 19, 0.25);
  content: "";
}

.specs__row dt,
.specs__row dd {
  position: relative;
  z-index: 1;
  margin: 0;
  background: #edf0f1;
}

.specs__row dt {
  padding-right: 10px;
  color: rgba(17, 23, 19, 0.48);
}

.specs__row dd {
  flex: 0 0 auto;
  padding-left: 10px;
  font-weight: 500;
  white-space: nowrap;
}

.order {
  padding-block: 148px 160px;
  background: var(--paper);
}

.order__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  gap: clamp(72px, 10vw, 160px);
  align-items: end;
}

.order__copy {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) 3fr;
  gap: 48px;
}

.order h2 {
  margin: 0;
  font-size: clamp(54px, 7vw, 112px);
  font-weight: 500;
  line-height: 0.87;
  letter-spacing: -0.075em;
}

.order__lead {
  max-width: 480px;
  margin: 40px 0 0;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(17, 23, 19, 0.62);
}

.order-form {
  padding: 48px;
  background: var(--white);
}

.form-field {
  display: block;
  margin-bottom: 38px;
}

.form-field span {
  display: block;
  margin-bottom: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(17, 23, 19, 0.5);
  text-transform: uppercase;
}

.form-field input {
  width: 100%;
  padding: 0 0 14px;
  border: 0;
  border-bottom: 1px solid rgba(17, 23, 19, 0.24);
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 22px;
  transition: border-color 180ms ease;
}

.form-field input::placeholder {
  color: rgba(17, 23, 19, 0.26);
}

.form-field input:focus {
  border-color: var(--accent);
}

.form-field input:user-invalid {
  border-color: #bb3426;
}

.order-form__button {
  width: 100%;
  margin-top: 8px;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
}

.order-form__button:hover {
  background: var(--accent);
}

.order-form__button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-field--trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.order-form__note,
.order-form__status {
  margin: 18px 0 0;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(17, 23, 19, 0.48);
}

.order-form__status {
  padding: 14px 16px;
  color: #235441;
  background: #e5efe9;
}

.order-form__status[data-state="error"] {
  color: #8b2e25;
  background: #f5e6e3;
}

.order-form__status[hidden] {
  display: none;
}

.closing {
  display: grid;
  min-height: 72vh;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 35%, rgba(255, 90, 54, 0.15), transparent 28%),
    #293e37;
}

.closing__inner {
  align-self: center;
  text-align: center;
}

.closing h2 {
  font-size: clamp(72px, 13vw, 190px);
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.button--outline:hover {
  border-color: var(--white);
  color: var(--ink);
  background: var(--white);
}

.site-footer {
  color: var(--white);
  background: var(--ink);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: center;
  min-height: 120px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo__image--footer {
  width: 96px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
}

.catalog-page {
  background: var(--paper);
}

.product-page {
  background: #101713;
}

.catalog-hero {
  position: relative;
  display: flex;
  min-height: 72svh;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #101713, #263d35);
  isolation: isolate;
}

.catalog-hero .site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.catalog-hero__content {
  position: relative;
  z-index: 1;
  align-self: center;
  padding-top: 100px;
}

.catalog-hero h1 {
  margin: 0;
  font-size: clamp(96px, 18vw, 280px);
  font-weight: 500;
  line-height: 0.76;
  letter-spacing: -0.08em;
}

.catalog-hero__content > p:last-child {
  max-width: 440px;
  margin: 48px 0 0 auto;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

.catalog-hero__footer {
  position: absolute;
  bottom: 30px;
  left: 50%;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.catalog-overview {
  padding-block: 148px 160px;
}

.catalog-intro {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) 3fr;
  gap: 48px;
}

.catalog-intro h2,
.catalog-cta h2 {
  margin: 0;
  font-size: clamp(52px, 7vw, 112px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px 24px;
  margin-top: 110px;
}

.catalog-card {
  display: block;
  min-width: 0;
}

.catalog-card__meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(17, 23, 19, 0.48);
  text-transform: uppercase;
}

.catalog-card__meta span:first-child {
  color: var(--accent);
}

.catalog-card__visual {
  display: grid;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  background: #e7e9e7;
}

.catalog-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.catalog-card:hover .catalog-card__visual img {
  transform: scale(1.025);
}

.catalog-card__content {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) 1fr;
  gap: 28px;
  padding-top: 28px;
}

.catalog-card h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.catalog-card__title {
  min-width: 0;
}

.catalog-card__price {
  margin: 18px 0 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.catalog-card__content > p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(17, 23, 19, 0.58);
}

.catalog-card__facts {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.catalog-card__facts span {
  padding: 9px 11px;
  border: 1px solid var(--line);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-card__more {
  grid-column: 1 / -1;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: max-content;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catalog-card__arrow {
  width: 12px;
  height: 12px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.catalog-card:hover .catalog-card__arrow {
  transform: translate(2px, -2px);
}

.product-detail {
  position: relative;
  min-height: 100svh;
  padding: 156px 0 72px;
  color: var(--white);
  background: #101713;
}

.product-detail .site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.product-detail__inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.45fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}

.back-link {
  display: inline-block;
  margin-bottom: 72px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.58);
  text-transform: uppercase;
}

.product-detail h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(64px, 8vw, 126px);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.075em;
}

.product-detail h1.product-detail__title--compact {
  font-size: clamp(56px, 5.3vw, 88px);
  letter-spacing: -0.065em;
}

.product-detail__lead {
  max-width: 470px;
  margin: 34px 0 0;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

.product-detail__price {
  margin: 30px 0 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.gallery {
  min-width: 0;
}

.gallery__stage {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: #e8eae8;
}

.gallery__stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__bar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 16px;
}

.gallery__controls {
  display: flex;
  gap: 14px;
  align-items: center;
}

.gallery__controls button,
.gallery__thumbs button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.gallery__controls button {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  place-items: center;
}

.gallery__controls button:hover {
  color: var(--ink);
  background: var(--white);
}

.gallery__controls p {
  min-width: 52px;
  margin: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  min-width: 0;
}

.gallery__thumbs button {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid transparent;
  opacity: 0.46;
  transition: opacity 180ms ease, border-color 180ms ease;
}

.gallery__thumbs button:hover,
.gallery__thumbs button.is-active {
  border-color: var(--accent);
  opacity: 1;
}

.gallery__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-specifications {
  padding-block: 148px 160px;
  color: var(--ink);
  background: var(--paper);
}

.product-specifications__heading {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) 3fr;
  gap: 48px;
}

.product-specifications h2 {
  margin: 0;
  font-size: clamp(52px, 7vw, 112px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.product-specifications__heading p {
  max-width: 620px;
  margin: 38px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(17, 23, 19, 0.58);
}

.product-specifications__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 64px;
  margin: 100px 0 0;
}

.product-specifications__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 62px;
  border-bottom: 1px solid var(--line);
}

.product-specifications__row dt,
.product-specifications__row dd {
  margin: 0;
  font-size: 14px;
}

.product-specifications__row dt {
  color: rgba(17, 23, 19, 0.5);
}

.product-specifications__row dd {
  text-align: right;
}

.catalog-cta {
  padding-block: 130px;
  color: var(--white);
  background: #263d35;
}

.catalog-cta__inner {
  display: flex;
  gap: 64px;
  align-items: end;
  justify-content: space-between;
}

.catalog-cta .button {
  flex: 0 0 auto;
  margin-bottom: 10px;
}

@keyframes hero-reveal {
  from {
    opacity: 0;
    transform: scale(1.045);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 900px) {
  .shell {
    width: min(100% - 40px, 720px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    grid-template-rows: 76px;
    min-height: 76px;
  }

  .site-header .logo {
    grid-row: 1;
    grid-column: 1;
  }

  .site-header .header-link {
    display: none;
  }

  .logo__image {
    width: 92px;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 12px 20px 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    background: rgba(16, 23, 19, 0.96);
    box-shadow: 0 24px 60px rgba(3, 8, 6, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 220ms ease, visibility 220ms ease;
    backdrop-filter: blur(18px);
  }

  .site-nav a {
    padding: 16px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 17px;
    letter-spacing: -0.01em;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .site-nav__order {
    display: block;
    margin-top: 12px;
    padding: 15px 16px;
    border: 0;
    color: var(--white);
    background: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-align: center;
    text-transform: uppercase;
  }

  .menu-toggle {
    grid-row: 1;
    grid-column: 2;
    display: block;
    justify-self: end;
  }

  .site-header.is-menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .hero__image {
    object-position: 61% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(7, 15, 12, 0.82), rgba(7, 15, 12, 0.2)),
      linear-gradient(180deg, rgba(7, 12, 10, 0.28), transparent 36%, rgba(7, 12, 10, 0.45));
  }

  .intro {
    grid-template-columns: 1fr;
    padding-block: 104px;
  }

  .intro__content p {
    margin-left: 0;
  }

  .product__inner {
    grid-template-columns: 1fr;
    gap: 60px;
    min-height: auto;
    padding-block: 92px 120px;
  }

  .section-label--dark {
    margin-bottom: 72px;
  }

  .product__visual {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .specs {
    padding-block: 104px 112px;
  }

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

  .specs__grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 76px;
  }

  .order {
    padding-block: 104px 112px;
  }

  .order__inner,
  .order__copy {
    grid-template-columns: 1fr;
  }

  .order__inner {
    gap: 72px;
  }

  .order-form {
    width: min(100%, 620px);
    margin-left: auto;
  }

  .catalog-hero {
    min-height: 680px;
  }

  .catalog-overview {
    padding-block: 104px 112px;
  }

  .catalog-intro {
    grid-template-columns: 1fr;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    margin-top: 76px;
  }

  .product-detail {
    padding-top: 124px;
  }

  .product-detail__inner {
    grid-template-columns: 1fr;
  }

  .back-link {
    margin-bottom: 52px;
  }

  .product-detail__copy {
    max-width: 680px;
  }

  .product-specifications {
    padding-block: 104px 112px;
  }

  .product-specifications__heading {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 32px, 520px);
  }

  .header-link {
    font-size: 10px;
  }

  .logo__image--footer {
    width: 84px;
  }

  .hero {
    min-height: 820px;
  }

  .hero__image {
    object-position: 42% 50%;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(7, 15, 12, 0.9) 0%, rgba(7, 15, 12, 0.58) 56%, rgba(7, 15, 12, 0.12) 100%),
      linear-gradient(180deg, rgba(7, 12, 10, 0.22), transparent 55%, rgba(7, 12, 10, 0.34));
  }

  .hero__content {
    padding-top: 58px;
  }

  .hero h1 {
    font-size: clamp(52px, 16vw, 78px);
    line-height: 0.88;
  }

  .hero__lead {
    max-width: 330px;
    font-size: 16px;
  }

  .hero__footer {
    bottom: 22px;
  }

  .intro__content h2,
  .product h2,
  .specs h2 {
    font-size: 48px;
  }

  .intro__content p {
    margin-top: 28px;
    font-size: 17px;
  }

  .product__inner {
    gap: 38px;
  }

  .specs__row {
    min-height: 54px;
    font-size: 14px;
  }

  .order h2 {
    font-size: 56px;
  }

  .order__lead {
    margin-top: 28px;
    font-size: 16px;
  }

  .order-form {
    padding: 30px 24px;
  }

  .catalog-hero {
    min-height: 620px;
  }

  .catalog-hero h1 {
    font-size: clamp(74px, 24vw, 108px);
  }

  .catalog-hero__content > p:last-child {
    margin-top: 34px;
    font-size: 15px;
  }

  .catalog-intro h2,
  .catalog-cta h2 {
    font-size: 52px;
  }

  .catalog-grid {
    gap: 64px;
  }

  .catalog-card__content {
    grid-template-columns: 1fr;
  }

  .catalog-card__facts {
    grid-column: auto;
  }

  .catalog-card__more {
    grid-column: auto;
  }

  .product-detail {
    padding-top: 108px;
  }

  .product-detail h1 {
    font-size: clamp(54px, 18vw, 86px);
  }

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

  .gallery__controls {
    justify-content: space-between;
  }

  .product-specifications h2 {
    font-size: 52px;
  }

  .product-specifications__list {
    grid-template-columns: 1fr;
    margin-top: 68px;
  }

  .catalog-cta {
    padding-block: 96px;
  }

  .catalog-cta__inner {
    display: block;
  }

  .form-field input {
    font-size: 18px;
  }

  .closing {
    min-height: 600px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr auto;
    gap: 20px;
    padding-block: 28px;
  }

  .site-footer__inner > p:first-of-type {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__image {
    animation: none;
  }
}
