:root {
  --ink: #1b1a18;
  --ink-soft: #4d4b47;
  --paper: #f4f3f0;
  --white: #ffffff;
  --header: #716f69;
  --header-deep: #605e59;
  --hero: #c8c7c3;
  --panel-light: #b4b3ae;
  --panel-mid: #96948e;
  --lime: #b5ef3d;
  --lime-deep: #9cd42c;
  --rust: #98522a;
  --rust-deep: #7c3f1e;
  --cocoa: #33210f;
  --line: #e2e0da;
  --line-light: rgba(255, 255, 255, 0.35);
  --font-body: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-thin: "Jost", "Century Gothic", "Avenir Next", sans-serif;
  --font-serif: "Prata", "Georgia", serif;
  --radius-chip: 4px;
  --radius-pill: 999px;
  --radius-card: 8px;
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow-soft: 0 12px 32px rgba(27, 26, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

figure {
  margin: 0;
}

h1,
h2,
h3,
p {
  margin: 0;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--lime-deep);
  outline-offset: 3px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

.js .chips li.reveal {
  transform: translateX(24px);
}

.js .chips li.reveal.is-in {
  transform: none;
}

.js .chips li.reveal:nth-child(2) {
  transition-delay: 0.07s;
}

.js .chips li.reveal:nth-child(3) {
  transition-delay: 0.14s;
}

.js .chips li.reveal:nth-child(4) {
  transition-delay: 0.21s;
}

.js .chips li.reveal:nth-child(5) {
  transition-delay: 0.28s;
}

.js .cards .card.reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.js .cards .card.reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 60;
  background: transparent;
}

.progress__bar {
  display: block;
  height: 100%;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header);
  color: var(--white);
  transition: background-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.site-header.is-scrolled {
  background: var(--header-deep);
  box-shadow: 0 6px 20px rgba(27, 26, 24, 0.25);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  max-width: 1480px;
  margin: 0 auto;
}

.site-header__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.burger {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--lime);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), background-color 0.25s var(--ease-out);
}

.burger:hover {
  background: var(--lime-deep);
}

.burger__line {
  width: 14px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}

.burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-header__label {
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 34px;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s var(--ease-out);
}

.site-nav__link:hover::after {
  transform: scaleX(1);
}

.site-nav__chev {
  width: 10px;
  height: 7px;
  opacity: 0.7;
}

.site-header__note {
  display: none;
  font-size: 0.82rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: 0.92;
  transition: opacity 0.25s var(--ease-out);
}

.site-header__note:hover {
  opacity: 1;
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--header-deep);
  display: flex;
  flex-direction: column;
  padding: 8px 24px 20px;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out), visibility 0.3s;
}

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

.mobile-nav__link {
  padding: 12px 0;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--line-light);
}

.mobile-nav__link:last-child {
  border-bottom: 0;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  overflow: hidden;
  background: var(--hero);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

@keyframes hero-drift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}

.js .hero__bg {
  animation: hero-drift 22s var(--ease-out) forwards;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(120, 118, 112, 0.55) 0%, rgba(200, 199, 195, 0.25) 45%, rgba(120, 118, 112, 0.55) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 40px 24px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
}

.hero__title {
  font-family: var(--font-thin);
  font-weight: 200;
  font-size: clamp(3.4rem, 10vw, 9rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  color: var(--white);
  display: flex;
  flex-direction: column;
}

.hero__title-line {
  padding-left: 0.9em;
}

.chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.hero .chips {
  position: absolute;
  top: 24px;
  right: 24px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 7px 7px 16px;
  background: var(--rust);
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius-chip);
  transition: transform 0.25s var(--ease-out), background-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.chip:hover {
  transform: translateX(-4px);
  background: var(--rust-deep);
  box-shadow: var(--shadow-soft);
}

.chip__arrow {
  width: 22px;
  height: 18px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.chip__arrow svg {
  width: 12px;
  height: 12px;
}

.chip--lime {
  background: var(--lime);
  color: var(--ink);
}

.chip--lime:hover {
  background: var(--lime-deep);
}

.chip--lime .chip__arrow {
  background: rgba(27, 26, 24, 0.12);
}

.hero__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.hero__lead {
  max-width: 300px;
  color: var(--white);
  font-size: 0.85rem;
  line-height: 1.65;
}

.spark {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.spark svg {
  width: 18px;
  height: 18px;
}

.eyebrow {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.pill-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 30px;
  border: 1px solid var(--rust);
  border-radius: var(--radius-pill);
  color: var(--rust);
  transition: background-color 0.25s var(--ease-out), color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.pill-arrow svg {
  width: 15px;
  height: 15px;
}

.pill-arrow:hover {
  background: var(--rust);
  color: var(--white);
  transform: translateX(3px);
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: transform 0.25s var(--ease-out), background-color 0.25s var(--ease-out);
}

.icon-btn svg {
  width: 15px;
  height: 15px;
}

.icon-btn--lime {
  background: var(--lime);
  color: var(--ink);
}

.icon-btn--lime:hover {
  background: var(--lime-deep);
  transform: translateX(4px);
}

.btn-shop {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 7px 8px 7px 20px;
  background: var(--cocoa);
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.btn-shop::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--ease-out);
}

.btn-shop:hover::before {
  transform: scaleX(1);
}

.btn-shop:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-shop > * {
  position: relative;
}

.btn-shop__arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--white);
  color: var(--cocoa);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-shop__arrow svg {
  width: 13px;
  height: 13px;
}

.btn-shop--big {
  padding: 10px 10px 10px 26px;
  font-size: 0.95rem;
}

.btn-shop--big .btn-shop__arrow {
  width: 30px;
  height: 30px;
}

.price {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  color: var(--ink);
}

.price--light {
  color: var(--white);
}

.feature {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.feature__aside {
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  padding: 32px 24px;
}

.feature__finish {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}

.feature__finish p {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}

.feature__main {
  display: flex;
  flex-direction: column;
}

.feature__row {
  display: grid;
  gap: 32px;
  padding: 40px 24px;
}

.feature__row--top {
  border-bottom: 1px solid var(--line);
}

.feature__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.feature__name {
  margin-top: auto;
  padding-top: 32px;
  font-weight: 400;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  letter-spacing: -0.02em;
  line-height: 1;
}

.feature__media {
  overflow: hidden;
  border-radius: 2px;
}

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

.feature__media:hover img {
  transform: scale(1.04);
}

.feature__mid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.feature__mid .btn-shop {
  margin-top: auto;
}

.feature__buy {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature__desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 320px;
}

.feature__buy .price {
  margin-top: auto;
  align-self: flex-end;
}

.trio {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--white);
}

.trio__photo {
  overflow: hidden;
  background: var(--panel-light);
}

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

.trio__photo:hover img {
  transform: scale(1.04);
}

.trio__panel {
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.trio__panel--white {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.trio__title {
  font-weight: 400;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  letter-spacing: -0.02em;
  line-height: 1;
}

.trio__panel--grey {
  background: var(--hero);
  align-items: flex-start;
  gap: 18px;
}

.trio__media {
  align-self: center;
  width: min(240px, 70%);
  margin-top: auto;
  overflow: hidden;
}

.trio__media img {
  transition: transform 0.6s var(--ease-out);
}

.trio__media:hover img {
  transform: scale(1.05);
}

.acc-list {
  display: flex;
  flex-direction: column;
}

.acc {
  border-top: 1px solid var(--line);
}

.acc:last-child {
  border-bottom: 1px solid var(--line);
}

.acc__head {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.25s var(--ease-out);
}

.acc__head::-webkit-details-marker {
  display: none;
}

.acc__head:hover {
  color: var(--rust);
}

.acc__icon {
  position: relative;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease-out);
}

.acc__icon::before,
.acc__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.acc__icon::before {
  left: 0;
  right: 0;
  top: 6px;
  height: 1.6px;
}

.acc__icon::after {
  top: 0;
  bottom: 0;
  left: 6px;
  width: 1.6px;
}

.acc[open] .acc__icon {
  transform: rotate(45deg);
}

.acc__body {
  padding: 0 28px 18px 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.acc-list--light .acc {
  border-color: var(--line-light);
}

.acc-list--light .acc__head {
  color: var(--white);
}

.acc-list--light .acc__head:hover {
  color: var(--lime);
}

.acc-list--light .acc__body {
  color: rgba(255, 255, 255, 0.85);
}

.values {
  padding: 96px 24px 80px;
  max-width: 1480px;
  margin: 0 auto;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px 6px 6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
}

.tag-pill__dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tag-pill__dot svg {
  width: 12px;
  height: 12px;
}

.values {
  text-align: center;
}

.values__title {
  margin-top: 28px;
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.values__sub {
  margin: 18px auto 0;
  max-width: 460px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.values__grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  text-align: left;
}

.values__media {
  overflow: hidden;
  border-radius: 2px;
}

.values__media img {
  width: 100%;
  height: auto;
  transition: transform 0.6s var(--ease-out);
}

.values__media:hover img {
  transform: scale(1.04);
}

.acc-list--faq .acc__head {
  font-size: 1.02rem;
  padding: 20px 0;
}

.design {
  max-width: 1480px;
  margin: 0 auto;
  padding: 40px 24px 96px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: end;
}

.design__title {
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 5px;
  justify-self: start;
  transition: color 0.25s var(--ease-out);
}

.link-more:hover {
  color: var(--rust);
}

.link-more__arrow {
  width: 26px;
  height: 26px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s var(--ease-out);
}

.link-more:hover .link-more__arrow {
  transform: translateX(4px);
}

.link-more__arrow svg {
  width: 12px;
  height: 12px;
}

.design__media {
  overflow: hidden;
  border-radius: 2px;
  justify-self: end;
  width: min(340px, 100%);
}

.design__media img {
  transition: transform 0.6s var(--ease-out);
}

.design__media:hover img {
  transform: scale(1.05);
}

.duo {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 24px 96px;
  gap: 0;
}

.duo__left,
.duo__right {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: 28px 28px 40px;
  display: flex;
  flex-direction: column;
}

.duo__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.duo__shade {
  position: absolute;
  inset: 0;
}

.duo__shade--light {
  background: linear-gradient(180deg, rgba(150, 148, 142, 0.55), rgba(120, 118, 112, 0.65));
}

.duo__shade--dark {
  background: linear-gradient(180deg, rgba(96, 94, 89, 0.72), rgba(62, 60, 56, 0.82));
}

.duo__left > *:not(.duo__bg):not(.duo__shade),
.duo__right > *:not(.duo__bg):not(.duo__shade) {
  position: relative;
  z-index: 1;
}

.chips--stack {
  align-items: flex-start;
}

.chips--stack .chip:hover {
  transform: translateX(4px);
}

.duo__circle {
  align-self: center;
  margin: auto 0;
  width: min(340px, 70vw);
  aspect-ratio: 1;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  transition: transform 0.6s var(--ease-out);
}

.duo__left:hover .duo__circle {
  transform: scale(1.03);
}

.duo__word {
  font-family: var(--font-thin);
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.92);
}

.duo__brand {
  font-family: var(--font-thin);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1;
  color: var(--white);
}

.duo__right .acc-list {
  margin-top: 56px;
  max-width: 420px;
}

.duo__right .price {
  margin-top: 40px;
  align-self: flex-end;
}

.duo__foot {
  margin-top: auto;
  padding-top: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.cards {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: 320px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.card__pill {
  padding: 7px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  background: var(--paper);
}

.card__lead {
  margin-top: auto;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.4;
  max-width: 260px;
}

.card__title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.35;
  max-width: 320px;
}

.card__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: auto;
}

.card__text {
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 280px;
}

.card__media {
  width: min(180px, 40%);
  overflow: hidden;
  border-radius: 4px;
  flex-shrink: 0;
}

.card__media img {
  transition: transform 0.6s var(--ease-out);
}

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

.catalog-cta {
  display: flex;
  justify-content: center;
  padding: 72px 24px 96px;
}

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

.site-footer__grid {
  max-width: 1480px;
  margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.site-footer__brand {
  font-family: var(--font-thin);
  font-weight: 300;
  font-size: 2rem;
  line-height: 1;
}

.site-footer__tag {
  margin-top: 14px;
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
  opacity: 0.9;
}

.site-footer__head {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.75;
  margin: 0 0 18px;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.site-footer__link {
  font-size: 0.92rem;
  position: relative;
  padding-bottom: 2px;
}

.site-footer__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s var(--ease-out);
}

.site-footer__link:hover::after {
  transform: scaleX(1);
}

.site-footer__line {
  font-size: 0.92rem;
  opacity: 0.9;
}

.btn-shop--footer {
  margin-bottom: 8px;
}

.site-footer__copy {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 24px 32px;
  font-size: 0.8rem;
  opacity: 0.7;
}

.privacy {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.privacy__hero {
  text-align: left;
}

.privacy__title {
  margin-top: 24px;
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.privacy__updated {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.privacy__intro {
  margin-top: 24px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.privacy__toc {
  margin-top: 48px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 28px 28px 20px;
}

.privacy__toc-title {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin: 0 0 14px;
}

.privacy__toc-list {
  margin: 0;
  padding: 0 0 0 20px;
  columns: 1;
  column-gap: 40px;
}

.privacy__toc-list li {
  padding: 4px 0;
  font-size: 0.92rem;
}

.privacy__toc-list a {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--line);
  transition: color 0.25s var(--ease-out), text-decoration-color 0.25s var(--ease-out);
}

.privacy__toc-list a:hover {
  color: var(--rust);
  text-decoration-color: var(--rust);
}

.privacy__section {
  margin-top: 56px;
  scroll-margin-top: 90px;
}

.privacy__section h2 {
  font-weight: 500;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
}

.privacy__section p {
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.privacy__section strong {
  color: var(--ink);
  font-weight: 500;
}

.privacy__section a {
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy__section a:hover {
  color: var(--rust-deep);
}

@media (min-width: 768px) {
  .site-header__note {
    display: inline;
  }

  .hero__inner {
    padding: 56px 40px 56px;
  }

  .hero .chips {
    top: 32px;
    right: 40px;
  }

  .feature__row {
    padding: 48px 40px;
  }

  .feature__row--top {
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
  }

  .feature__row--bottom {
    grid-template-columns: 0.8fr 1fr 1fr;
    align-items: stretch;
  }

  .feature__aside {
    padding: 40px;
  }

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

  .trio__panel {
    padding: 48px 40px;
  }

  .trio__panel--white {
    border-top: 0;
    border-left: 1px solid var(--line);
    justify-content: space-between;
  }

  .trio__panel--grey {
    grid-column: 1 / -1;
  }

  .values {
    padding: 120px 40px 96px;
  }

  .values__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
  }

  .design {
    grid-template-columns: 1.4fr auto auto;
    padding: 48px 40px 112px;
    gap: 48px;
  }

  .link-more {
    margin-bottom: 12px;
  }

  .duo {
    grid-template-columns: 1fr 1fr;
    padding: 0 40px 112px;
  }

  .duo__left,
  .duo__right {
    min-height: 720px;
    padding: 32px 36px 44px;
  }

  .cards {
    grid-template-columns: 1fr 1fr;
    padding: 0 40px;
  }

  .card--wide {
    grid-column: 1 / -1;
  }

  .site-footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    padding: 72px 40px 48px;
  }

  .site-footer__copy {
    padding: 0 40px 36px;
  }

  .privacy__toc-list {
    columns: 2;
  }
}

@media (min-width: 1024px) {
  .site-nav {
    display: flex;
  }

  .burger {
    display: inline-flex;
  }

  .feature {
    grid-template-columns: minmax(280px, 30%) 1fr;
  }

  .feature__aside {
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }

  .trio {
    grid-template-columns: minmax(280px, 30%) 1.25fr 1fr;
  }

  .trio__panel--grey {
    grid-column: auto;
  }

  .cards {
    grid-template-columns: 1fr 1.6fr 1fr;
  }

  .card--wide {
    grid-column: auto;
  }

  .card {
    padding: 28px;
    min-height: 360px;
  }
}

@media (min-width: 1440px) {
  .hero__inner,
  .values,
  .design,
  .duo,
  .cards {
    padding-left: 56px;
    padding-right: 56px;
  }

  .hero .chips {
    right: 56px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .js .hero__bg {
    animation: none;
  }
}

.ranges {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 24px 96px;
}

.ranges__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 44px;
  text-align: center;
}

.ranges__title {
  font-family: var(--font-thin);
  font-weight: 200;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.05;
}

.ranges__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.range {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.range:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.range__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--panel-light);
}

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

.range:hover .range__media img {
  transform: scale(1.05);
}

.range__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 22px 22px;
  flex: 1;
}

.range__body .eyebrow {
  color: var(--ink-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.range__name {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.3;
}

.range__desc {
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.range__foot {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
}

.range__price {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  line-height: 1;
}

@media (max-width: 1023px) {
  .ranges__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 639px) {
  .ranges {
    padding-bottom: 72px;
  }

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