:root {
  --bg: #f6f0e7;
  --surface: rgba(255, 251, 246, 0.82);
  --surface-strong: #fffaf4;
  --surface-dark: #1b1815;
  --text: #211d1a;
  --muted: #6f655d;
  --line: rgba(66, 51, 39, 0.14);
  --accent: #8b5e3c;
  --accent-deep: #5c3820;
  --shadow: 0 30px 80px rgba(63, 42, 27, 0.12);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1480px;
  --container-readable: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(199, 165, 132, 0.22), transparent 24%),
    linear-gradient(180deg, #f8f2ea 0%, #f3ede3 42%, #efe6db 100%);
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  min-height: 68px;
  padding: 9px 16px;
  margin-bottom: 22px;
  background: rgba(255, 250, 244, 0.86);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(84, 63, 47, 0.08);
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(68, 47, 33, 0.08);
}

.site-header__brand {
  justify-self: center;
}

.site-header__actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark__crest {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(139, 94, 60, 0.1);
  color: var(--accent-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.brand-mark__crest.has-logo {
  background: rgba(255, 255, 255, 0.9);
  color: transparent;
}

.brand-mark__crest img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-mark__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.05;
}

.brand-mark__text strong,
.section-heading h2,
.hero h1,
.story h2,
.fit h2,
.cart-drawer h2 {
  font-family: "Cormorant Garamond", serif;
}

.brand-mark__text strong {
  font-size: 1.22rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-mark__text small {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.site-nav a {
  padding: 12px 14px;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--accent-deep);
}

.site-nav a:hover {
  background: rgba(139, 94, 60, 0.08);
  transform: translateY(-1px);
}

.cart-button,
.button,
.header-action,
.cart-drawer__close,
.cart-drawer__continue {
  border: 0;
  cursor: pointer;
}

.header-action,
.cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--text);
  border: 1px solid rgba(84, 63, 47, 0.1);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.header-action:hover,
.cart-button:hover {
  background: var(--surface-dark);
  color: #fffaf5;
  border-color: transparent;
}

.header-action svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-action__label,
.cart-button__label {
  line-height: 1;
}

.cart-button__count {
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(139, 94, 60, 0.12);
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.cart-button:hover .cart-button__count {
  background: rgba(255, 255, 255, 0.16);
  color: #fffaf5;
}

main {
  display: grid;
  gap: 28px;
}

section {
  position: relative;
  overflow: clip;
}

.hero,
.catalog,
.benefits,
.fit,
.story,
.faq {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero {
  isolation: isolate;
  min-height: clamp(620px, calc(100svh - 92px), 820px);
  padding: clamp(10px, 1.2vw, 16px);
  border-radius: 42px;
  background: rgba(255, 250, 244, 0.78);
}

.hero__copy {
  position: absolute;
  inset:
    clamp(92px, 10vw, 138px)
    auto
    clamp(34px, 4.2vw, 66px)
    clamp(38px, 4.2vw, 66px);
  z-index: 3;
  display: grid;
  align-content: end;
  max-width: min(760px, calc(100% - 56px));
  overflow: hidden;
  color: #fffaf5;
  text-shadow: 0 16px 34px rgba(20, 15, 10, 0.42);
}

.hero .eyebrow {
  color: rgba(255, 250, 245, 0.82);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.fit h2,
.story h2,
.cart-drawer h2 {
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 12.5ch;
  font-size: clamp(3.5rem, 6.4vw, 6.6rem);
  font-weight: 600;
  line-height: 0.88;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.hero h1.is-long {
  max-width: 17ch;
  font-size: clamp(2.5rem, 4.15vw, 4.3rem);
  line-height: 0.96;
}

.hero h1.is-xlong {
  max-width: 20ch;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.hero__lead,
.section-heading p,
.story__copy p,
.fit-list p,
.benefit-card p,
.faq p {
  color: var(--muted);
  line-height: 1.7;
}

.eyebrow:empty,
.hero__lead:empty,
.section-heading p:empty,
.catalog-toolbar__caption:empty,
.hero-card strong:empty,
.hero-card p:empty,
.story__copy p:empty,
.fit-list p:empty,
.benefit-card p:empty,
.faq p:empty {
  display: none;
}

.hero__lead {
  max-width: 54ch;
  margin: 20px 0 0;
  color: rgba(255, 250, 245, 0.8);
  font-size: clamp(0.96rem, 1.05vw, 1.08rem);
  line-height: 1.62;
  text-wrap: pretty;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 18px;
  margin-top: 24px;
}

.hero .button {
  min-height: 56px;
  padding: 0 30px;
  transition-duration: 200ms;
}

.hero .button--solid {
  background: #fffaf5;
  color: var(--text);
  box-shadow: 0 18px 46px rgba(18, 13, 9, 0.22);
}

.hero .button--ghost {
  background: rgba(28, 21, 16, 0.28);
  color: #fffaf5;
  border-color: rgba(255, 250, 245, 0.28);
}

.hero .button:hover {
  transform: translateY(-2px) scale(1.015);
}

.hero .button--solid:hover {
  box-shadow: 0 22px 52px rgba(18, 13, 9, 0.28);
}

.hero .button--ghost:hover {
  background: rgba(28, 21, 16, 0.42);
  border-color: rgba(255, 250, 245, 0.42);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.cart-button:hover,
.catalog-card__button:hover {
  transform: translateY(-1px);
}

.button--solid {
  background: linear-gradient(135deg, #9e7757, #6a4630);
  color: #fff;
  box-shadow: 0 16px 30px rgba(100, 64, 38, 0.22);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.56);
  color: var(--text);
  border: 1px solid rgba(79, 57, 40, 0.12);
}

.button--full {
  width: 100%;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.hero__facts li {
  padding: 6px 10px;
  background: rgba(28, 21, 16, 0.22);
  border: 1px solid rgba(255, 250, 245, 0.16);
  border-radius: 999px;
  color: rgba(255, 250, 245, 0.78);
  font-size: 0.78rem;
}

.hero__visual {
  position: relative;
  z-index: 1;
  min-height: inherit;
  height: 100%;
  border-radius: 32px;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.62), transparent 22%),
    linear-gradient(135deg, #d8c5b2, #85654d);
  overflow: hidden;
  border: 1px solid rgba(80, 59, 43, 0.1);
}

.hero-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(25, 19, 16, 0.72)),
    linear-gradient(135deg, #dfd0c0, #9f7c60);
  color: #fff;
  border-radius: inherit;
  box-shadow: none;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(15, 11, 8, 0.74) 0%, rgba(15, 11, 8, 0.38) 42%, rgba(15, 11, 8, 0.1) 100%),
    linear-gradient(180deg, rgba(15, 11, 8, 0.04) 0%, rgba(15, 11, 8, 0.42) 100%);
}

.hero-card > * {
  position: relative;
  z-index: 2;
}

.hero-card--large {
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: clamp(22px, 3vw, 44px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(18, 14, 11, 0.76)),
    linear-gradient(135deg, #dfd0c0, #9f7c60);
}

.hero-card--large::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--hero-banner-image);
  background-position:
    calc(var(--hero-banner-position-x, 4) * 1%)
    calc(var(--hero-banner-position-y, 10) * 1%);
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(calc(var(--hero-banner-zoom, 100) / 100));
  transform-origin:
    calc(var(--hero-banner-position-x, 4) * 1%)
    calc(var(--hero-banner-position-y, 10) * 1%);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.hero-card--large.has-media::after {
  opacity: 1;
}

.hero-card--large.has-media::before {
  background:
    radial-gradient(
      ellipse 34% 26% at 8% 4%,
      rgba(12, 9, 6, 0.86) 0%,
      rgba(12, 9, 6, 0.62) 46%,
      transparent 78%
    ),
    linear-gradient(
      90deg,
      rgba(12, 9, 6, 0.62) 0%,
      rgba(12, 9, 6, 0.46) 22%,
      rgba(12, 9, 6, 0.2) 44%,
      rgba(12, 9, 6, 0.04) 62%,
      transparent 76%
    );
}

.hero-card__label {
  display: none;
}

.hero-card strong,
.hero-card p {
  display: none;
}

.hero-card__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 18px;
}

.hero-card__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease, transform 180ms ease;
}

.hero-card__dot:hover,
.hero-card__dot.is-active {
  width: 28px;
  background: #fff;
  transform: translateY(-1px);
}

.hero-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px dashed rgba(106, 76, 54, 0.16);
}

.hero-orbit--one {
  inset: 44px 34px auto auto;
  width: 220px;
  height: 220px;
}

.hero-orbit--two {
  left: 18px;
  bottom: 30px;
  width: 140px;
  height: 140px;
}

.story {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-xl);
}

.story-note,
.benefit-card,
.fit-panel,
.faq-list details,
.catalog-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(72, 54, 37, 0.08);
  background: rgba(255, 255, 255, 0.56);
}

.benefit-card h3,
.catalog-card__title,
.story-note strong {
  font-size: 1.1rem;
}

.catalog,
.benefits,
.fit,
.faq {
  padding: 36px;
  border-radius: var(--radius-xl);
}

.hero + .catalog {
  margin-top: clamp(24px, 3vw, 48px);
}

.hero + .welcome-promotion {
  margin-top: clamp(8px, 1.5vw, 20px);
}

.welcome-promotion + .catalog {
  margin-top: clamp(4px, 1vw, 14px);
}

.welcome-promotion {
  display: grid;
  grid-template-columns: auto minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(22px, 3.4vw, 54px);
  padding: clamp(30px, 3.2vw, 48px);
  border: 1px solid rgba(255, 250, 244, 0.12);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 8% 12%, rgba(190, 143, 101, 0.26), transparent 28%),
    linear-gradient(135deg, #211c18 0%, #171411 72%, #2f241c 100%);
  color: #fffaf5;
  box-shadow: 0 30px 74px rgba(43, 29, 20, 0.18);
}

.welcome-promotion__icon {
  display: grid;
  place-items: center;
  width: clamp(64px, 6vw, 88px);
  height: clamp(64px, 6vw, 88px);
  border: 1px solid rgba(255, 250, 245, 0.14);
  border-radius: 26px;
  background: rgba(255, 250, 245, 0.08);
  font-size: clamp(2rem, 3vw, 2.8rem);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.welcome-promotion__copy .eyebrow {
  color: rgba(255, 250, 245, 0.58);
}

.welcome-promotion__copy h2 {
  max-width: 13ch;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 3.25vw, 3.8rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.welcome-promotion__copy h2 span {
  color: #d8b18e;
}

.welcome-promotion__copy > p:last-child {
  max-width: 46ch;
  margin: 16px 0 0;
  color: rgba(255, 250, 245, 0.62);
  font-size: 0.9rem;
  line-height: 1.6;
}

.welcome-promotion__form {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255, 250, 245, 0.12);
  border-radius: 26px;
  background: rgba(255, 250, 245, 0.07);
}

.welcome-promotion__fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.welcome-promotion__field {
  position: relative;
  min-width: 0;
}

.welcome-promotion__field > span {
  position: absolute;
  z-index: 1;
  top: 8px;
  left: 20px;
  color: #846f60;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}

.welcome-promotion__field input {
  width: 100%;
  min-height: 62px;
  padding: 22px 20px 7px;
  border: 1px solid transparent;
  border-radius: 18px;
  outline: none;
  background: #fffaf5;
  color: var(--text);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.welcome-promotion__field input:focus {
  border-color: rgba(216, 177, 142, 0.8);
  box-shadow: 0 0 0 4px rgba(216, 177, 142, 0.15);
}

.welcome-promotion__field input:user-invalid {
  border-color: rgba(205, 111, 91, 0.72);
}

.welcome-promotion__submit {
  min-height: 62px;
  padding: 0 24px;
  border: 0;
  background: #a77b58;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(14, 10, 7, 0.24);
}

.welcome-promotion__submit:hover {
  transform: translateY(-1px);
  background: #b48662;
}

.welcome-promotion__submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.welcome-promotion__status {
  margin: 9px 8px 0;
  color: rgba(255, 250, 245, 0.52);
  font-size: 0.76rem;
  line-height: 1.5;
}

.welcome-promotion__status[data-state="error"] {
  color: #ffc7bb;
}

.welcome-promotion__status[data-state="success"],
.welcome-promotion__status[data-state="duplicate"] {
  color: #eed3bc;
}

.welcome-promotion__result {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 96px;
  padding: 14px 16px 14px 20px;
  border: 1px solid rgba(216, 177, 142, 0.22);
  border-radius: 18px;
  background: rgba(255, 250, 245, 0.08);
}

.welcome-promotion__result > div {
  display: grid;
  gap: 3px;
}

.welcome-promotion__result span,
.welcome-promotion__result small {
  color: rgba(255, 250, 245, 0.58);
  font-size: 0.72rem;
}

.welcome-promotion__result strong {
  color: #fffaf5;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  letter-spacing: 0.08em;
}

.welcome-promotion__result button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 250, 245, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.08);
  color: #fffaf5;
  cursor: pointer;
}

.welcome-promotion.is-complete .welcome-promotion__fields {
  display: none;
}

.welcome-promotion.is-complete .welcome-promotion__status {
  margin: 0 8px 10px;
}

.catalog {
  padding: clamp(36px, 4.2vw, 60px);
}

.section-heading {
  max-width: 740px;
}

.catalog > .section-heading {
  max-width: min(900px, 82%);
}

.catalog > .section-heading > p:last-child {
  max-width: 64ch;
  margin: clamp(18px, 2vw, 26px) 0 0;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.catalog-grid,
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.catalog-toolbar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  margin-top: clamp(38px, 4vw, 56px);
  padding-top: clamp(20px, 2vw, 28px);
  border-top: 1px solid rgba(71, 50, 33, 0.1);
}

.catalog-toolbar__caption {
  margin: 0;
  max-width: 64ch;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  opacity: 0.76;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-pill {
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(71, 50, 33, 0.12);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.filter-pill:hover {
  transform: translateY(-1px);
  background: rgba(139, 94, 60, 0.08);
  color: var(--accent-deep);
  border-color: rgba(139, 94, 60, 0.2);
}

.filter-pill.is-active {
  transform: translateY(-1px);
  background: var(--surface-dark);
  color: #fff;
  border-color: transparent;
}

.catalog-grid {
  margin-top: clamp(32px, 3.2vw, 48px);
}

.catalog-card {
  padding: 18px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.catalog-card.is-clickable {
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.catalog-card.is-clickable:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 56px rgba(63, 42, 27, 0.12);
  border-color: rgba(92, 56, 32, 0.18);
}

.catalog-card__gallery {
  width: 100%;
  margin-bottom: 18px;
}

.catalog-card__image {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 560px;
  aspect-ratio: 340 / 530;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.78), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(29, 23, 18, 0.18)),
    var(--product-gradient, linear-gradient(135deg, #d2c0ad, #957259));
}

.catalog-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(58, 43, 31, 0.08);
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.catalog-card__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.catalog-card__image img.is-changing {
  animation: catalog-card-image-reveal 220ms ease both;
}

.catalog-card__image-button,
.catalog-card__title-button,
.catalog-card__link-button {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  color: inherit;
  cursor: pointer;
}

.catalog-card__image-button {
  display: block;
}

.catalog-card__thumbs {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 90px));
  gap: clamp(10px, 1.2vw, 16px);
  margin-top: 16px;
  overflow: visible;
}

.catalog-card__thumbs:empty {
  display: none;
}

.catalog-card__size-panel {
  margin: 0 0 18px;
  padding: 12px 14px 14px;
  border: 1px solid rgba(71, 50, 33, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 238, 229, 0.92));
}

.catalog-card__size-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.catalog-card__size-label {
  color: rgba(104, 86, 72, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-card__size-current {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(120, 92, 66, 0.12);
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 800;
}

.catalog-card__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.catalog-card__size-option {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(71, 50, 33, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: rgba(92, 72, 57, 0.88);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.catalog-card__size-option:hover,
.catalog-card__size-option.is-active {
  transform: translateY(-1px);
  background: var(--surface-dark);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 22px rgba(65, 46, 31, 0.18);
}

.catalog-card__thumb {
  width: 100%;
  max-width: 90px;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgba(71, 50, 33, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  overflow: hidden;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.catalog-card__thumb:hover,
.catalog-card__thumb.is-active {
  transform: translateY(-1px);
  border-color: rgba(92, 56, 32, 0.42);
  box-shadow: 0 12px 24px rgba(73, 50, 34, 0.14);
}

.catalog-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes catalog-card-image-reveal {
  from {
    opacity: 0.54;
    transform: scale(1.018);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.catalog-card__topline,
.catalog-card__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.catalog-card__badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(122, 89, 61, 0.1);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.availability-badge--in-stock {
  border-color: rgba(76, 128, 88, 0.2);
  background: rgba(76, 128, 88, 0.12);
  color: #3f6f48;
}

.availability-badge--preorder {
  border-color: rgba(172, 119, 67, 0.24);
  background: rgba(172, 119, 67, 0.14);
  color: #8a5a2f;
}

.availability-badge--out-of-stock,
.availability-badge--discontinued {
  border-color: rgba(89, 75, 65, 0.16);
  background: rgba(89, 75, 65, 0.1);
  color: rgba(58, 45, 36, 0.72);
}

.catalog-card__price {
  font-size: 1.2rem;
  font-weight: 700;
}

.catalog-card__title {
  display: block;
  margin: 14px 0 8px;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
  min-height: 2.4em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.catalog-card__title-button:hover .catalog-card__title {
  color: var(--accent-deep);
}

.catalog-card p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
  min-height: 3.2em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.catalog-card__old-price {
  color: rgba(104, 86, 72, 0.78);
  text-decoration: line-through;
}

.catalog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: auto;
}

.catalog-card__chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(120, 92, 66, 0.08);
  color: var(--accent-deep);
  font-size: 0.85rem;
  font-weight: 600;
}

.catalog-card__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.catalog-card__link {
  color: var(--accent-deep);
  font-weight: 700;
}

.catalog-card__link:hover {
  color: var(--text);
}

.catalog-card__button {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--surface-dark);
  color: #fff;
}

.catalog-card__button.is-disabled,
.product-modal__footer .button.is-disabled,
.product-modal__footer .button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.catalog-card__availability-note {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 48px;
  max-width: 220px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: right;
}

.catalog-card__bottom + .catalog-card__bottom {
  margin-top: 12px;
}

.catalog-card__link-button {
  width: auto;
  color: var(--accent-deep);
  font-weight: 700;
}

.catalog-card__link-button:hover {
  color: var(--text);
}

.benefit-card,
.story-note {
  padding: 24px;
}

.fit-panel {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  padding: 26px;
}

.fit-list {
  display: grid;
  gap: 14px;
}

.fit-list article {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(246, 238, 229, 0.8);
}

.story {
  grid-template-columns: 1.2fr 0.8fr;
  padding: 36px;
}

.story__copy {
  max-width: none;
}

.story.story--full,
.story {
  grid-template-columns: 1fr;
}

.story-note ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 10px 0 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 18px;
  padding: 28px 8px 0;
  color: var(--muted);
}

.site-footer strong {
  color: var(--text);
  font-size: 1.1rem;
}

.site-footer div {
  display: grid;
  gap: 8px;
}

.contact-panel,
.legal-hero,
.legal-document,
.legal-aside {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-panel {
  padding: 36px;
  border-radius: var(--radius-xl);
}

.contact-panel__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 18px;
  margin-top: 26px;
}

.contact-panel__copy {
  display: grid;
  gap: 16px;
}

.contact-card,
.contact-form,
.legal-contact-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(72, 54, 37, 0.08);
  background: rgba(255, 255, 255, 0.62);
}

.contact-card,
.contact-form {
  padding: 24px;
}

.contact-card {
  display: grid;
  gap: 14px;
}

.contact-card strong,
.contact-form__title,
.legal-contact-card strong {
  font-size: 1.1rem;
}

.contact-card p,
.contact-card li {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.contact-card__links {
  display: grid;
  gap: 10px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(76, 58, 42, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.field textarea {
  min-height: 156px;
  resize: vertical;
}

.field--full {
  grid-column: 1 / -1;
}

.consent-group {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(72, 54, 37, 0.08);
  background: rgba(247, 240, 232, 0.8);
}

.checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--accent-deep);
}

.checkbox__copy {
  color: var(--muted);
  line-height: 1.65;
}

.checkbox__copy a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.contact-form__status {
  margin: 0;
  min-height: 1.6em;
  color: var(--muted);
}

.contact-form__status.is-success {
  color: #436c56;
}

.contact-form__status.is-error {
  color: #9b4329;
}

.contact-cart-summary {
  display: grid;
  gap: 10px;
}

.contact-cart-summary__item {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(248, 242, 234, 0.92);
  border: 1px solid rgba(72, 54, 37, 0.08);
}

.contact-cart-summary__item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 32px 8px 0;
}

.site-footer__column {
  align-content: start;
}

.site-footer__heading {
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer__links,
.legal-aside__links {
  display: grid;
  gap: 10px;
}

.site-footer__links a,
.legal-aside__links a {
  color: var(--muted);
}

.site-footer__links a.is-active,
.legal-aside__links a.is-active {
  color: var(--accent-deep);
  font-weight: 700;
}

.site-footer__cookie-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent-deep);
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}

.page-shell--legal {
  padding-bottom: 56px;
}

.legal-main {
  display: grid;
  gap: 18px;
}

.legal-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.legal-breadcrumbs a {
  color: var(--accent-deep);
  font-weight: 700;
}

.legal-hero,
.legal-document,
.legal-aside {
  padding: 32px;
  border-radius: var(--radius-xl);
}

.legal-hero__lead {
  margin: 18px 0 0;
  max-width: 72ch;
  color: var(--muted);
  line-height: 1.75;
}

.legal-hero__media,
.legal-hero__image {
  margin-top: 24px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(226, 214, 199, 0.64), rgba(255, 250, 244, 0.92));
}

.legal-hero__media[hidden],
.legal-hero__image[hidden] {
  display: none;
}

.legal-hero__media img,
.legal-hero__image img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.legal-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4.6vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.legal-document__content {
  color: var(--text);
  line-height: 1.8;
}

.legal-document__content h2,
.legal-document__content h3 {
  margin: 28px 0 14px;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
}

.legal-document__content h2 {
  font-size: clamp(1.85rem, 2.8vw, 2.65rem);
}

.legal-document__content h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.legal-document__content p,
.legal-document__content li {
  color: var(--muted);
}

.legal-document__content ul,
.legal-document__content ol {
  padding-left: 20px;
}

.legal-document__content blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(145, 112, 82, 0.08);
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  line-height: 1.35;
}

.legal-document__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.legal-document__content th,
.legal-document__content td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-document__content th {
  color: var(--text);
  background: rgba(145, 112, 82, 0.08);
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.legal-aside {
  display: grid;
  align-content: start;
  gap: 16px;
}

.legal-related {
  display: grid;
  gap: 14px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-related h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
}

.legal-related .legal-aside__links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.legal-related .legal-aside__links a {
  padding: 12px 14px;
  border: 1px solid rgba(72, 54, 37, 0.1);
  border-radius: 14px;
  background: rgba(247, 240, 232, 0.7);
}

.legal-contact-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.legal-company-card {
  display: grid;
  gap: 18px;
  margin: 4px 0 30px;
  padding: 24px;
  border: 1px solid rgba(72, 54, 37, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(247, 240, 232, 0.72);
}

.legal-company-card[hidden] {
  display: none;
}

.legal-company-card__head {
  display: grid;
  gap: 5px;
}

.legal-company-card__head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.75rem, 2.5vw, 2.35rem);
  line-height: 1;
}

.legal-contact-card {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
}

.legal-contact-card--static {
  color: inherit;
}

.legal-contact-card span {
  color: var(--muted);
  font-size: 0.86rem;
}

.legal-placeholder {
  font-style: italic;
}

.payment-methods[hidden],
.payment-methods__logo[hidden] {
  display: none !important;
}

.payment-methods__inner {
  display: grid !important;
  gap: 10px;
}

.payment-methods__label {
  color: rgba(255, 250, 244, 0.48);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.payment-methods__logos {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.payment-methods__logo {
  display: grid;
  place-items: center;
  min-width: 72px;
  height: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(72, 54, 37, 0.1);
  border-radius: 13px;
  background: #fff;
}

.payment-methods__logo img {
  display: block;
  width: auto;
  max-width: 82px;
  height: 24px;
}

.payment-methods__logo--sbp img {
  height: 27px;
}

.payment-methods--security .payment-methods__label {
  color: var(--muted);
}

.payment-methods--security .payment-methods__logo {
  min-width: 96px;
  height: 52px;
}

.noscript-message {
  position: relative;
  z-index: 500;
  margin: 0;
  padding: 12px 20px;
  background: #291f18;
  color: #fffaf4;
  text-align: center;
  font-size: 0.9rem;
}

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

.error-page {
  display: grid;
  place-items: center;
  min-height: min(680px, calc(100vh - 190px));
  padding: clamp(42px, 9vw, 120px) 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 72% 18%, rgba(180, 143, 111, 0.27), transparent 28%),
    linear-gradient(145deg, rgba(255, 253, 249, 0.96), rgba(239, 228, 215, 0.92));
  box-shadow: var(--shadow);
  text-align: center;
}

.error-page__content,
.error-page__copy {
  display: grid;
  justify-items: center;
  max-width: 720px;
}

.error-page__code {
  margin: 0 0 8px;
  color: rgba(139, 94, 60, 0.28);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(7rem, 20vw, 15rem);
  font-weight: 600;
  line-height: 0.64;
}

.error-page h1 {
  margin: 18px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 0.92;
}

.error-page p:not(.eyebrow):not(.error-page__code) {
  max-width: 50ch;
  margin: 0 0 28px;
  color: var(--muted);
  line-height: 1.7;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  display: grid;
  gap: 16px;
  width: min(840px, 100%);
  margin: 0 auto;
  padding: 20px 22px;
  border-radius: 28px;
  background: rgba(27, 24, 21, 0.94);
  color: #fffaf5;
  box-shadow: 0 24px 70px rgba(20, 14, 10, 0.32);
  isolation: isolate;
  -webkit-tap-highlight-color: transparent;
}

.cookie-banner__text,
.cookie-modal__note {
  margin: 0;
  line-height: 1.65;
}

.cookie-banner__actions,
.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner__actions,
.cookie-modal__actions,
.cookie-modal__head {
  position: relative;
  z-index: 1;
}

.cookie-banner .button,
.cookie-modal .button,
.cookie-modal__close {
  position: relative;
  z-index: 1;
  pointer-events: auto;
  touch-action: manipulation;
}

.cookie-banner .button:active,
.cookie-modal .button:active,
.cookie-modal__close:active {
  transform: scale(0.985);
}

.cookie-banner .button--ghost,
.cookie-modal .button--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  border-color: rgba(255, 255, 255, 0.12);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: none;
  place-items: center;
  padding: 16px;
  background: rgba(29, 21, 15, 0.36);
  backdrop-filter: blur(6px);
}

.cookie-modal.is-open {
  display: grid;
}

.cookie-modal__panel {
  width: min(640px, 100%);
  padding: 26px;
  border-radius: 32px;
  background: rgba(255, 250, 244, 0.98);
  border: 1px solid rgba(78, 58, 42, 0.1);
  box-shadow: 0 26px 80px rgba(53, 39, 28, 0.26);
  display: grid;
  gap: 18px;
  isolation: isolate;
}

.cookie-modal__head,
.cookie-modal__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.cookie-modal__close {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  background: rgba(51, 37, 27, 0.08);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-modal__head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.cookie-modal__row {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(72, 54, 37, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.cookie-modal__row strong {
  display: block;
  margin-bottom: 4px;
}

.cookie-modal__row small {
  display: block;
  color: var(--muted);
  line-height: 1.55;
}

.cookie-modal__toggle input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent-deep);
}

.cart-drawer {
  position: fixed;
  top: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: min(448px, calc(100vw - 28px));
  padding: 22px 22px 18px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 18px;
  background: rgba(255, 250, 244, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(78, 58, 42, 0.1);
  border-radius: 30px;
  box-shadow: 0 32px 80px rgba(53, 39, 28, 0.24);
  transform: translateX(calc(100% + 24px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 260ms ease,
    opacity 220ms ease,
    visibility 220ms ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cart-drawer__header,
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-drawer__heading {
  display: grid;
  gap: 6px;
}

.cart-drawer__heading h2 {
  margin: 0;
  font-size: clamp(2.1rem, 3vw, 2.55rem);
  line-height: 0.9;
}

.cart-drawer__countline {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.cart-drawer__close {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(51, 37, 27, 0.08);
  font-size: 1.8rem;
  line-height: 1;
  transition: background 180ms ease, transform 180ms ease;
}

.cart-drawer__close:hover {
  background: rgba(51, 37, 27, 0.14);
  transform: rotate(90deg);
}

.cart-drawer__body {
  overflow: auto;
  display: grid;
  align-content: start;
  gap: 12px;
  padding-right: 4px;
  margin-right: -4px;
}

.cart-drawer__body::-webkit-scrollbar {
  width: 6px;
}

.cart-drawer__body::-webkit-scrollbar-thumb {
  background: rgba(92, 56, 32, 0.18);
  border-radius: 999px;
}

.cart-drawer__footer {
  display: grid;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(67, 49, 34, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0) 0%, rgba(255, 250, 244, 0.9) 18%, rgba(255, 250, 244, 0.98) 100%);
}

.cart-drawer__totals {
  display: grid;
  gap: 10px;
}

.cart-drawer__caption {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.cart-total span {
  color: var(--muted);
  font-size: 0.92rem;
}

.cart-total strong {
  font-size: 1rem;
  line-height: 1.1;
}

.cart-total--grand strong {
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.cart-drawer__continue {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  padding: 0;
  justify-self: center;
  background: transparent;
  color: var(--accent-deep);
  font-weight: 600;
  transition: color 180ms ease, opacity 180ms ease;
}

.cart-drawer__continue:hover {
  color: var(--accent);
}

.cart-empty-state {
  min-height: 100%;
  padding: 28px 10px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.cart-empty-state__icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(139, 94, 60, 0.08);
  font-size: 1.85rem;
}

.cart-empty-state h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.96;
}

.cart-empty-state p {
  max-width: 22ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.cart-item {
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(67, 49, 34, 0.08);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.cart-item.is-appearing {
  animation: cart-item-enter 280ms ease;
}

.cart-item.is-updating {
  border-color: rgba(139, 94, 60, 0.24);
  box-shadow: 0 16px 30px rgba(74, 51, 35, 0.08);
}

.cart-item.is-updating .cart-item__quantity-value,
.cart-item.is-updating .cart-item__pricing strong {
  animation: cart-value-pulse 320ms ease;
}

.cart-item.is-removing {
  opacity: 0;
  transform: translateX(24px) scale(0.98);
  pointer-events: none;
}

.cart-item__media {
  width: 100%;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.cart-item__thumb {
  width: 92px;
  height: 108px;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.88), transparent 46%),
    linear-gradient(135deg, #eadccc, #9f7f67);
}

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

.cart-item__thumb--fallback {
  color: var(--accent-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
}

.cart-item__meta {
  display: grid;
  gap: 12px;
}

.cart-item__topline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
}

.cart-item__titleblock {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.cart-item__titleblock strong {
  display: block;
  font-size: 1rem;
  line-height: 1.32;
}

.cart-item__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cart-badge {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 28px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(92, 56, 32, 0.08);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cart-badge--muted {
  background: rgba(66, 51, 39, 0.06);
  color: var(--muted);
}

.cart-alert {
  margin: 0 0 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(138, 90, 47, 0.2);
  background: rgba(172, 119, 67, 0.12);
  color: var(--accent-deep);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

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

.cart-item__quantity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid rgba(67, 49, 34, 0.08);
  background: rgba(255, 250, 244, 0.9);
}

.cart-item__quantity-button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  padding: 0;
  background: #fff;
  color: var(--accent-deep);
  font-size: 1.1rem;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.cart-item__quantity-button:hover {
  background: rgba(139, 94, 60, 0.12);
  transform: scale(1.04);
}

.cart-item__quantity-value {
  min-width: 18px;
  text-align: center;
  font-size: 0.96rem;
  font-weight: 700;
}

.cart-item__pricing {
  display: grid;
  justify-items: end;
  gap: 4px;
  text-align: right;
}

.cart-item__pricing span {
  color: var(--muted);
  font-size: 0.86rem;
}

.cart-item__pricing strong {
  font-size: 1.08rem;
  line-height: 1.1;
}

.cart-item__remove {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 0;
  display: grid;
  place-items: center;
  background: rgba(80, 59, 43, 0.08);
  color: var(--accent-deep);
  padding: 0;
  flex-shrink: 0;
  transition: background 180ms ease, transform 180ms ease;
}

.cart-item__remove:hover {
  background: rgba(80, 59, 43, 0.14);
  transform: scale(1.05);
}

@keyframes cart-item-enter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cart-value-pulse {
  0% {
    transform: scale(1);
    color: var(--text);
  }

  45% {
    transform: scale(1.05);
    color: var(--accent-deep);
  }

  100% {
    transform: scale(1);
    color: var(--text);
  }
}

.product-modal {
  position: fixed;
  inset: 20px;
  z-index: 35;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.product-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.product-modal__panel {
  position: relative;
  width: min(1080px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  gap: 24px;
  padding: 24px;
  background: rgba(255, 250, 244, 0.97);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(78, 58, 42, 0.1);
  border-radius: 32px;
  box-shadow: 0 26px 80px rgba(53, 39, 28, 0.26);
  transform: translateY(14px) scale(0.985);
  transition: transform 220ms ease;
}

.product-modal.is-open .product-modal__panel {
  transform: translateY(0) scale(1);
}

.product-modal__close {
  position: sticky;
  top: 0;
  justify-self: end;
  grid-column: 1 / -1;
  width: 44px;
  height: 44px;
  margin-bottom: -10px;
  border: 0;
  border-radius: 999px;
  background: rgba(51, 37, 27, 0.08);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.product-modal__media {
  display: grid;
  gap: 14px;
  align-content: start;
}

.product-modal__frame {
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.88), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(30, 22, 16, 0.08)),
    linear-gradient(135deg, #e9dbcd, #b79577);
  display: grid;
  place-items: center;
  cursor: zoom-in;
}

.product-modal__frame img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
  padding: 28px;
  transition: transform 200ms ease;
  transform-origin: center center;
}

.product-modal__frame.is-zoomed {
  cursor: zoom-out;
}

.product-modal__frame.is-zoomed img {
  transform: scale(1.9);
}

.product-modal__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-modal__zoom-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.product-modal__thumb {
  width: 78px;
  height: 78px;
  padding: 0;
  border: 1px solid rgba(71, 50, 33, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  overflow: hidden;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.product-modal__thumb:hover,
.product-modal__thumb.is-active {
  transform: translateY(-1px);
  border-color: rgba(92, 56, 32, 0.42);
  box-shadow: 0 12px 24px rgba(73, 50, 34, 0.14);
}

.product-modal__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-modal__content {
  display: grid;
  gap: 22px;
  align-content: start;
  padding-right: 6px;
}

.product-modal__heading {
  display: grid;
  gap: 10px;
}

.product-modal__heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.product-modal__heading p,
.product-modal__description,
.product-modal__footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.product-modal__description {
  white-space: normal;
}

.product-modal__pricing {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
}

.product-modal__pricing strong {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.product-modal__pricing span {
  color: rgba(104, 86, 72, 0.78);
  text-decoration: line-through;
}

.product-modal__pricing small {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(120, 92, 66, 0.08);
  color: var(--accent-deep);
  font-size: 0.85rem;
  font-weight: 700;
}

.product-modal__pricing .availability-badge--in-stock {
  border-color: rgba(76, 128, 88, 0.2);
  background: rgba(76, 128, 88, 0.12);
  color: #3f6f48;
}

.product-modal__pricing .availability-badge--preorder {
  border-color: rgba(172, 119, 67, 0.24);
  background: rgba(172, 119, 67, 0.14);
  color: #8a5a2f;
}

.product-modal__pricing .availability-badge--out-of-stock,
.product-modal__pricing .availability-badge--discontinued {
  border-color: rgba(89, 75, 65, 0.16);
  background: rgba(89, 75, 65, 0.1);
  color: rgba(58, 45, 36, 0.72);
}

.product-modal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-modal__sizes {
  display: grid;
  gap: 12px;
}

.product-modal__sizes > span {
  color: var(--muted);
  font-size: 0.92rem;
}

.product-modal__size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-modal__size-option {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(71, 50, 33, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.product-modal__size-option:hover,
.product-modal__size-option.is-active {
  transform: translateY(-1px);
  background: var(--surface-dark);
  color: #fff;
  border-color: transparent;
}

.product-modal__details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.product-modal__details div {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(72, 54, 37, 0.08);
  display: grid;
  gap: 8px;
}

.product-modal__details span {
  color: var(--muted);
  font-size: 0.88rem;
}

.product-modal__details strong {
  font-size: 1rem;
}

.product-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-modal__marketplaces {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-modal__marketplace-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-modal__marketplace {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.product-modal__marketplace:hover {
  transform: translateY(-1px);
  filter: brightness(0.96);
  box-shadow: 0 14px 28px rgba(31, 26, 22, 0.16);
}

.product-modal__marketplace--ozon {
  background: #005bff;
}

.product-modal__marketplace--wb {
  background: #8f2fff;
}

@media (max-width: 640px) {
  .product-modal__marketplace-links {
    width: 100%;
  }

  .product-modal__marketplace {
    flex: 1 1 160px;
  }
}

.product-modal__messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-modal__footer {
  display: grid;
  gap: 10px;
  padding-top: 4px;
}

.product-modal__footer a {
  color: var(--accent-deep);
  font-weight: 700;
}

.product-modal__footer a:hover {
  color: var(--text);
}

.page-overlay {
  position: fixed;
  inset: 0;
  z-index: 25;
  background: rgba(29, 21, 15, 0.28);
  backdrop-filter: blur(4px);
}

body.cart-open,
body.modal-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .welcome-promotion {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .welcome-promotion__form {
    grid-column: 1 / -1;
  }

  .catalog-toolbar,
  .catalog-grid,
  .benefits-grid,
  .fit-panel,
  .story,
  .site-footer,
  .product-modal__panel,
  .product-modal__details {
    grid-template-columns: 1fr;
  }

  .site-header {
    top: 10px;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 10px 16px;
    padding: 9px 12px;
    border-radius: 28px;
  }

  .site-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-self: stretch;
    display: flex;
    gap: 6px;
    padding: 6px 2px 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

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

  .site-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .hero {
    min-height: clamp(680px, 82svh, 740px);
    padding: 10px;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero__visual {
    min-height: inherit;
  }

  .product-modal__frame {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--container));
    padding-top: 10px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 8px 10px;
    gap: 8px 10px;
    border-radius: 26px;
  }

  .site-header__brand {
    justify-self: start;
  }

  .site-header__actions {
    gap: 6px;
  }

  .brand-mark {
    gap: 9px;
  }

  .brand-mark__crest {
    width: 36px;
    height: 36px;
    font-size: 1.35rem;
  }

  .brand-mark__text strong {
    font-size: 1rem;
  }

  .brand-mark__text small {
    display: none;
  }

  .catalog,
  .benefits,
  .fit,
  .story,
  .faq {
    padding: 22px;
  }

  .welcome-promotion {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
    border-radius: 26px;
  }

  .welcome-promotion__icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    font-size: 1.8rem;
  }

  .welcome-promotion__copy h2 {
    max-width: 12ch;
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .welcome-promotion__form {
    grid-column: auto;
  }

  .welcome-promotion__fields {
    grid-template-columns: 1fr;
  }

  .welcome-promotion__submit {
    width: 100%;
  }

  .welcome-promotion__result {
    grid-template-columns: 1fr;
  }

  .welcome-promotion__result button {
    width: 100%;
  }

  .site-nav {
    padding-top: 8px;
  }

  .site-nav a {
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.48);
    font-size: 0.82rem;
  }

  .header-action,
  .cart-button {
    width: 40px;
    min-height: 40px;
    padding: 0;
  }

  .header-action__label,
  .cart-button__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .cart-button__count {
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: clamp(710px, 88svh, 730px);
    padding: 8px;
    border-radius: 32px;
  }

  .hero__copy {
    inset: 82px 26px 24px;
    align-content: end;
    max-width: none;
  }

  .hero h1 {
    max-width: 10.5ch;
    font-size: clamp(2.85rem, 13.8vw, 4.2rem);
    line-height: 0.92;
  }

  .hero h1.is-long {
    max-width: 14ch;
    font-size: clamp(1.82rem, 8.7vw, 2.65rem);
    line-height: 0.98;
  }

  .hero h1.is-xlong {
    font-size: clamp(1.48rem, 6.35vw, 1.92rem);
    max-width: 17ch;
    line-height: 1.1;
  }

  .hero__lead {
    margin-top: 14px;
    font-size: 0.9rem;
    line-height: 1.52;
    -webkit-line-clamp: 3;
  }

  .section-heading h2,
  .story h2,
  .fit h2 {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 0.98;
  }

  .hero__actions,
  .hero__facts {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions {
    gap: 12px;
    margin-top: 18px;
  }

  .hero .button {
    min-height: 54px;
    padding: 0 22px;
  }

  .hero__facts {
    display: none;
  }

  .hero__visual {
    min-height: inherit;
    border-radius: 26px;
  }

  .hero-card--large {
    padding: 18px;
  }

  .hero-card--large::after {
    background-image: var(--hero-banner-image-mobile, var(--hero-banner-image));
    background-position:
      calc((var(--hero-banner-position-x, 4) + 4) * 1%)
      calc(var(--hero-banner-position-y, 10) * 1%);
    background-size: cover;
    transform-origin:
      calc((var(--hero-banner-position-x, 4) + 4) * 1%)
      calc(var(--hero-banner-position-y, 10) * 1%);
  }

  .hero-card--large.has-media::before {
    background: linear-gradient(
      90deg,
      rgba(12, 9, 6, 0.7) 0%,
      rgba(12, 9, 6, 0.54) 42%,
      rgba(12, 9, 6, 0.2) 76%,
      transparent 100%
    );
  }

  .catalog-toolbar {
    align-items: stretch;
  }

  .catalog-toolbar__caption {
    max-width: none;
  }

  .story {
    padding: 18px;
  }

  .catalog-card__thumbs {
    gap: 10px;
    margin-top: 12px;
  }

  .product-modal {
    inset: 10px;
  }

  .product-modal__panel {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    padding: 16px;
    gap: 16px;
    border-radius: 24px;
  }

  .product-modal__close {
    margin-bottom: -4px;
  }

  .product-modal__frame {
    min-height: 300px;
  }

  .product-modal__frame img {
    padding: 16px;
  }

  .product-modal__thumb {
    width: 64px;
    height: 64px;
    border-radius: 14px;
  }

  .product-modal__actions .button {
    width: 100%;
  }

  .product-modal__messengers .button {
    width: 100%;
  }

  .cart-drawer {
    inset: 10px;
    width: auto;
    padding: 18px 16px 16px;
    border-radius: 24px;
  }

  .cart-drawer__heading h2 {
    font-size: 1.9rem;
  }

  .cart-drawer__footer {
    gap: 10px;
  }

  .cart-item__media {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .cart-item__thumb {
    width: 72px;
    height: 88px;
  }

  .cart-item__bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .cart-item__pricing {
    justify-items: start;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero .button,
  .hero-card--large::after,
  .catalog-card__image img {
    transition-duration: 0.01ms;
  }

  .catalog-card__image img.is-changing {
    animation: none;
  }

  .hero .button:hover {
    transform: none;
  }
}

@media (max-width: 720px) {
  .cart-drawer {
    inset: 0;
    width: 100vw;
    padding: 18px 14px 14px;
    border-radius: 0;
  }

  .cart-drawer__header {
    align-items: start;
  }

  .cart-drawer__heading h2 {
    font-size: 1.8rem;
  }

  .cart-drawer__countline,
  .cart-drawer__caption {
    font-size: 0.88rem;
  }

  .cart-empty-state {
    padding: 22px 4px;
  }

  .cart-item {
    padding: 12px;
  }

  .cart-item__quantity {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 1100px) {
  .contact-panel__layout,
  .legal-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .contact-panel,
  .legal-hero,
  .legal-document,
  .legal-aside {
    padding: 22px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-form__actions {
    align-items: stretch;
  }

  .contact-form__actions .button {
    width: 100%;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 18px;
  }

  .cookie-banner__actions .button,
  .cookie-modal__actions .button {
    width: 100%;
  }

  .cookie-modal__panel {
    padding: 18px;
    border-radius: 24px;
  }

  .cookie-modal__head,
  .cookie-modal__row {
    flex-direction: column;
  }
}

/* Store v2.0: completed homepage sections */
.homepage-section {
  position: relative;
  overflow: hidden;
}

.benefits.homepage-section,
.faq.homepage-section {
  padding: clamp(34px, 4vw, 58px);
}

.benefits.homepage-section .section-heading {
  max-width: 870px;
}

.benefits.homepage-section .benefits-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(28px, 3.2vw, 46px);
}

.benefit-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 260px;
  padding: 24px;
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.benefit-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -58px;
  width: 148px;
  height: 148px;
  border: 1px solid rgba(139, 94, 60, 0.12);
  border-radius: 50%;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 94, 60, 0.22);
  box-shadow: 0 18px 42px rgba(64, 43, 28, 0.09);
}

.benefit-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(92, 56, 32, 0.13);
  border-radius: 50%;
  background: rgba(246, 238, 229, 0.82);
  color: var(--accent-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
}

.benefit-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.benefit-card__index {
  position: absolute;
  top: 25px;
  right: 24px;
  color: rgba(92, 56, 32, 0.38);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.benefit-card h3 {
  align-self: end;
  margin: 38px 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.55rem, 1.8vw, 2rem);
  line-height: 1;
}

.benefit-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 31ch;
  font-size: 0.92rem;
  line-height: 1.65;
}

.story.homepage-section {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 0;
  padding: 0;
  min-height: clamp(520px, 46vw, 680px);
}

.story__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(21, 18, 15, 0.08), rgba(21, 18, 15, 0.52)),
    #d7c4b2;
}

.story__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 58%, rgba(26, 22, 18, 0.18));
  pointer-events: none;
}

.story__media img {
  width: 100%;
  height: 100%;
  min-height: clamp(520px, 46vw, 680px);
  object-fit: cover;
  object-position: center;
}

.story__media-caption {
  position: absolute;
  z-index: 1;
  left: clamp(24px, 4vw, 54px);
  bottom: clamp(22px, 4vw, 48px);
  color: rgba(255, 255, 255, 0.74);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.1rem, 1.5vw, 1.45rem);
  letter-spacing: 0.22em;
}

.story.homepage-section .story__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 78px);
  background: #211d1a;
  color: #fffaf4;
}

.story.homepage-section .eyebrow {
  color: #d6b99e;
}

.story.homepage-section h2 {
  margin: 12px 0 22px;
  color: inherit;
  font-size: clamp(2.5rem, 4.2vw, 4.7rem);
  line-height: 0.94;
}

.story.homepage-section [data-story-body] {
  margin: 0;
  color: rgba(255, 250, 244, 0.7);
  line-height: 1.75;
  white-space: pre-line;
}

.story__button {
  align-self: flex-start;
  margin-top: clamp(28px, 4vw, 44px);
  background: #fffaf4;
  color: var(--text);
}

.story__button:hover {
  background: #fff;
}

.faq.homepage-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(221, 198, 177, 0.38), transparent 30%),
    var(--surface);
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 94px);
  align-items: start;
}

.faq__heading {
  position: sticky;
  top: 116px;
}

.faq__heading h2 {
  margin-bottom: 18px;
}

.faq__intro {
  max-width: 42ch;
  margin: 0 0 30px;
  color: var(--muted);
  line-height: 1.65;
}

.button--ghost-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(72, 54, 37, 0.16);
  border-radius: 999px;
  color: var(--text);
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button--ghost-dark:hover {
  transform: translateY(-2px);
  border-color: rgba(72, 54, 37, 0.34);
  background: rgba(255, 255, 255, 0.6);
}

.faq.homepage-section .faq-list,
.faq--page .faq-list {
  gap: 0;
  margin-top: 0;
  border-top: 1px solid rgba(72, 54, 37, 0.13);
}

.faq.homepage-section .faq-list details,
.faq--page .faq-list details {
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(72, 54, 37, 0.13);
  border-radius: 0;
  background: transparent;
}

.faq.homepage-section .faq-list summary,
.faq--page .faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 20px;
  align-items: center;
  min-height: 92px;
  padding: 18px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.1;
}

.faq-list__toggle {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(72, 54, 37, 0.14);
  border-radius: 50%;
  transition: transform 200ms ease, background 200ms ease;
}

.faq-list__toggle::before,
.faq-list__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: var(--accent-deep);
  transform: translate(-50%, -50%);
}

.faq-list__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 180ms ease;
}

.faq-list details[open] .faq-list__toggle {
  transform: rotate(180deg);
  background: rgba(139, 94, 60, 0.09);
}

.faq-list details[open] .faq-list__toggle::after {
  opacity: 0;
}

.faq-list__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-list__answer > p,
.faq-list__answer > div {
  min-height: 0;
  overflow: hidden;
}

.faq-list details[open] .faq-list__answer {
  grid-template-rows: 1fr;
}

.faq.homepage-section .faq-list__answer p,
.faq--page .faq-list__answer p {
  max-width: 68ch;
  margin: 0;
  padding: 0 64px 28px 0;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer--complete {
  display: block;
  margin-top: clamp(34px, 5vw, 76px);
  padding: clamp(34px, 4vw, 58px);
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 0%, rgba(158, 111, 77, 0.2), transparent 29%),
    #1b1815;
  color: rgba(255, 250, 244, 0.66);
}

.site-footer--complete div {
  display: initial;
}

.site-footer--complete .site-footer__main {
  display: grid !important;
  grid-template-columns: minmax(240px, 1.5fr) repeat(4, minmax(130px, 1fr));
  gap: clamp(26px, 4vw, 62px);
}

.site-footer--complete .site-footer__brand {
  display: grid !important;
  align-content: start;
  gap: 22px;
  max-width: 300px;
}

.site-footer--complete .site-footer__brand-mark {
  justify-self: start;
  color: #fffaf4;
}

.site-footer--complete .site-footer__brand-mark .brand-mark__crest {
  border-color: rgba(255, 250, 244, 0.18);
  background: rgba(255, 250, 244, 0.08);
  color: #fffaf4;
}

.site-footer--complete .site-footer__brand-mark .brand-mark__text strong,
.site-footer--complete .site-footer__brand-mark .brand-mark__text small {
  color: inherit;
}

.site-footer--complete .site-footer__brand p {
  margin: 0;
  line-height: 1.7;
}

.site-footer--complete .site-footer__socials {
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer--complete .site-footer__socials a {
  padding: 7px 11px;
  border: 1px solid rgba(255, 250, 244, 0.13);
  border-radius: 999px;
  color: rgba(255, 250, 244, 0.76);
  font-size: 0.78rem;
}

.site-footer--complete .site-footer__column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-footer--complete .site-footer__heading {
  margin-bottom: 8px;
  color: #d9b99e;
}

.site-footer--complete a {
  width: fit-content;
  color: rgba(255, 250, 244, 0.66);
  transition: color 180ms ease;
}

.site-footer--complete a:hover {
  color: #fffaf4;
}

.site-footer--complete .site-footer__cookie-button {
  margin-top: 2px;
  color: rgba(255, 250, 244, 0.64);
  font-size: 0.9rem;
}

.site-footer--complete .site-footer__cookie-button:hover {
  color: #fffaf4;
}

.site-footer--complete .site-footer__contacts {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(34px, 4vw, 54px);
  padding: clamp(22px, 3vw, 34px) 0;
  border-top: 1px solid rgba(255, 250, 244, 0.11);
  border-bottom: 1px solid rgba(255, 250, 244, 0.11);
}

.site-footer--complete .site-footer__contact-item {
  display: grid !important;
  gap: 7px;
}

.site-footer--complete .site-footer__contact-item span {
  color: rgba(255, 250, 244, 0.4);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer--complete .site-footer__contact-item a,
.site-footer--complete .site-footer__contact-item strong {
  color: #fffaf4;
  font-size: 0.94rem;
  font-weight: 600;
}

.site-footer--complete .site-footer__bottom {
  display: flex !important;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  color: rgba(255, 250, 244, 0.36);
  font-size: 0.78rem;
}

html.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 240ms ease, transform 240ms ease;
}

html.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.faq--page {
  padding: clamp(34px, 5vw, 70px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.faq--page .section-heading h1 {
  margin: 10px 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 5.6rem);
  line-height: 0.94;
}

.faq--page .faq__layout {
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
}

@media (max-width: 1100px) {
  .benefits.homepage-section .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story.homepage-section {
    grid-template-columns: 1fr;
  }

  .story__media,
  .story__media img {
    min-height: clamp(430px, 70vw, 620px);
  }

  .faq__layout,
  .faq--page .faq__layout {
    grid-template-columns: 1fr;
  }

  .faq__heading {
    position: static;
  }

  .site-footer--complete .site-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer--complete .site-footer__brand {
    grid-column: 1 / -1;
    max-width: 520px;
  }

  .site-footer--complete .site-footer__contacts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .legal-related .legal-aside__links {
    grid-template-columns: 1fr;
  }

  .legal-contact-grid {
    grid-template-columns: 1fr;
  }

  .legal-company-card {
    padding: 20px;
  }

  .error-page {
    min-height: 560px;
  }

  .benefits.homepage-section,
  .faq.homepage-section,
  .faq--page {
    padding: 24px;
  }

  .benefits.homepage-section .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 224px;
  }

  .story__media,
  .story__media img {
    min-height: 390px;
  }

  .story.homepage-section .story__copy {
    padding: 32px 24px 38px;
  }

  .story.homepage-section h2 {
    font-size: clamp(2.45rem, 13vw, 3.7rem);
  }

  .story__button,
  .faq__heading .button {
    width: 100%;
  }

  .faq.homepage-section .faq-list summary,
  .faq--page .faq-list summary {
    min-height: 78px;
    grid-template-columns: minmax(0, 1fr) 36px;
    gap: 12px;
    font-size: 1.28rem;
  }

  .faq-list__toggle {
    width: 36px;
    height: 36px;
  }

  .faq.homepage-section .faq-list__answer p,
  .faq--page .faq-list__answer p {
    padding: 0 0 24px;
  }

  .site-footer--complete {
    padding: 30px 24px;
    border-radius: 26px;
  }

  .site-footer--complete .site-footer__main,
  .site-footer--complete .site-footer__contacts {
    grid-template-columns: 1fr;
  }

  .site-footer--complete .site-footer__main {
    gap: 34px;
  }

  .site-footer--complete .site-footer__contacts {
    gap: 24px;
  }

  .site-footer--complete .site-footer__bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.reveal-ready [data-reveal],
  .benefit-card,
  .faq-list__answer,
  .faq-list__toggle,
  .button--ghost-dark {
    transition-duration: 0.01ms;
  }
}
