.reb-block {
	--reb-ink: #171412;
	--reb-muted: #6c625d;
	--reb-paper: #fffdf9;
	--reb-soft: #f4f0ea;
	--reb-line: rgba(23, 20, 18, 0.14);
	--reb-accent: #8b6f47;
	--reb-max: 1180px;
	color: var(--reb-ink);
	font-family: inherit;
	margin-block: clamp(44px, 7vw, 96px);
}

.reb-block *,
.reb-block *::before,
.reb-block *::after {
	box-sizing: border-box;
}

.reb-container {
	inline-size: min(var(--reb-max), calc(100% - 32px));
	margin-inline: auto;
}

.reb-section-header {
	margin-block-end: clamp(24px, 4vw, 48px);
	max-inline-size: 760px;
}

.reb-section-header h2,
.reb-hero h1 {
	color: inherit;
	font-family: inherit;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.04;
	margin: 0;
	text-wrap: balance;
}

.reb-section-header h2 {
	font-size: clamp(2rem, 4.8vw, 4.75rem);
}

.reb-hero h1 {
	font-size: clamp(2.75rem, 7vw, 7rem);
	max-inline-size: 920px;
}

.reb-eyebrow {
	color: var(--reb-accent);
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	line-height: 1.4;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.reb-section-header__body,
.reb-dek,
.reb-lookbook__copy p,
.reb-atelier__process span {
	color: var(--reb-muted);
	font-size: clamp(1rem, 1.35vw, 1.14rem);
	line-height: 1.75;
}

.reb-section-header__body {
	margin-block-start: 18px;
}

.reb-section-header__body p,
.reb-dek {
	margin: 0;
}

.reb-section-header__body p + p {
	margin-block-start: 1em;
}

.reb-button {
	align-items: center;
	background: var(--reb-ink);
	border: 1px solid var(--reb-ink);
	border-radius: 3px;
	color: #fff;
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 700;
	justify-content: center;
	letter-spacing: 0.12em;
	line-height: 1.2;
	margin-block-start: 28px;
	min-block-size: 46px;
	padding: 14px 22px;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.reb-button:hover,
.reb-button:focus-visible {
	background: transparent;
	border-color: currentColor;
	color: var(--reb-ink);
}

.reb-image-placeholder {
	background:
		linear-gradient(135deg, rgba(139, 111, 71, 0.14), transparent 34%),
		linear-gradient(315deg, rgba(23, 20, 18, 0.1), transparent 42%),
		var(--reb-soft);
	min-block-size: 280px;
}

.reb-lookbook__grid {
	display: grid;
	gap: clamp(18px, 3vw, 36px);
	grid-template-columns: repeat(12, 1fr);
}

.reb-lookbook__item {
	border-block-start: 1px solid var(--reb-line);
	display: grid;
	gap: 16px;
	grid-column: span 4;
	margin: 0;
	padding-block-start: 18px;
}

.reb-lookbook--feature .reb-lookbook__item:first-child,
.reb-lookbook--editorial .reb-lookbook__item:first-child {
	grid-column: span 6;
}

.reb-lookbook--editorial .reb-lookbook__item:nth-child(2) {
	grid-column: span 6;
}

.reb-lookbook__image,
.reb-image-grid__image,
.reb-atelier__image,
.reb-maison__image,
.reb-banner__image {
	block-size: 100%;
	display: block;
	inline-size: 100%;
	object-fit: cover;
}

.reb-lookbook__image {
	aspect-ratio: 4 / 5;
}

.reb-lookbook__copy h3 {
	font-size: clamp(1.08rem, 1.8vw, 1.45rem);
	font-weight: 500;
	line-height: 1.18;
	margin: 0;
}

.reb-lookbook__copy p {
	margin: 8px 0 0;
}

.reb-atelier {
	background: var(--reb-paper);
	padding-block: clamp(48px, 7vw, 92px);
}

.reb-atelier__layout,
.reb-maison__layout,
.reb-banner__layout {
	align-items: center;
	display: grid;
	gap: clamp(28px, 5vw, 72px);
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.reb-atelier__image {
	aspect-ratio: 3 / 4;
}

.reb-atelier__process {
	border-block-start: 1px solid var(--reb-line);
	margin-block-start: 28px;
	padding-block-start: 24px;
}

.reb-atelier__process h3 {
	font-size: clamp(1.15rem, 1.8vw, 1.6rem);
	font-weight: 500;
	margin: 0 0 18px;
}

.reb-atelier__process ol {
	counter-reset: reb-process;
	display: grid;
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.reb-atelier__process li {
	border-block-end: 1px solid var(--reb-line);
	counter-increment: reb-process;
	display: grid;
	gap: 5px;
	padding: 0 0 16px 42px;
	position: relative;
}

.reb-atelier__process li::before {
	color: var(--reb-accent);
	content: counter(reb-process, decimal-leading-zero);
	font-size: 0.78rem;
	font-weight: 700;
	inset-block-start: 4px;
	inset-inline-start: 0;
	position: absolute;
}

.reb-atelier__process strong {
	font-size: 1rem;
	font-weight: 600;
}

.reb-hero {
	background-color: #171412;
	background-image: var(--reb-hero-image);
	background-position: center;
	background-size: cover;
	color: #fff;
	margin-block: 0 clamp(48px, 8vw, 108px);
	min-block-size: min(760px, 88vh);
	position: relative;
}

.reb-hero__scrim {
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.16) 68%, rgba(0, 0, 0, 0.08));
	inset: 0;
	position: absolute;
}

.reb-hero__inner {
	align-items: end;
	display: flex;
	min-block-size: inherit;
	padding-block: clamp(80px, 11vw, 144px) clamp(44px, 7vw, 88px);
	position: relative;
	z-index: 1;
}

.reb-hero--center .reb-hero__inner {
	justify-content: center;
	text-align: center;
}

.reb-hero--right .reb-hero__inner {
	justify-content: flex-end;
	text-align: right;
}

.reb-hero .reb-eyebrow {
	color: rgba(255, 255, 255, 0.78);
}

.reb-dek {
	color: rgba(255, 255, 255, 0.82);
	margin-block-start: 18px;
	max-inline-size: 620px;
}

.reb-hero--center .reb-dek {
	margin-inline: auto;
}

.reb-hero .reb-button {
	background: #fff;
	border-color: #fff;
	color: #171412;
}

.reb-hero .reb-button:hover,
.reb-hero .reb-button:focus-visible {
	background: transparent;
	color: #fff;
}

.reb-image-grid__items {
	display: grid;
	gap: clamp(14px, 2.4vw, 28px);
	grid-template-columns: repeat(var(--reb-grid-columns, 3), minmax(0, 1fr));
}

.reb-image-grid--2 {
	--reb-grid-columns: 2;
}

.reb-image-grid--3 {
	--reb-grid-columns: 3;
}

.reb-image-grid--4 {
	--reb-grid-columns: 4;
}

.reb-image-grid__item {
	margin: 0;
}

.reb-image-grid__image {
	aspect-ratio: 1 / 1.18;
}

.reb-image-grid__item figcaption {
	color: var(--reb-muted);
	font-size: 0.88rem;
	line-height: 1.45;
	margin-block-start: 10px;
}

.reb-maison {
	background: var(--reb-soft);
	padding-block: clamp(48px, 7vw, 96px);
}

.reb-maison__image {
	aspect-ratio: 5 / 6;
}

.reb-maison blockquote {
	border-inline-start: 1px solid var(--reb-accent);
	margin: 30px 0 0;
	padding-inline-start: 24px;
}

.reb-maison blockquote p {
	color: var(--reb-ink);
	font-size: clamp(1.35rem, 2.6vw, 2.25rem);
	font-weight: 400;
	line-height: 1.24;
	margin: 0;
}

.reb-maison cite {
	color: var(--reb-muted);
	display: block;
	font-size: 0.82rem;
	font-style: normal;
	letter-spacing: 0.12em;
	margin-block-start: 14px;
	text-transform: uppercase;
}

.reb-banner {
	border-block: 1px solid var(--reb-line);
	padding-block: clamp(34px, 5vw, 64px);
}

.reb-banner--dark {
	background: #171412;
	color: #fff;
	padding-block: clamp(48px, 7vw, 84px);
}

.reb-banner--dark .reb-section-header__body,
.reb-banner--dark .reb-eyebrow {
	color: rgba(255, 255, 255, 0.72);
}

.reb-banner--dark .reb-button {
	background: #fff;
	border-color: #fff;
	color: #171412;
}

.reb-banner__layout {
	grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.68fr);
}

.reb-banner__image {
	aspect-ratio: 16 / 10;
}

@media (max-width: 900px) {
	.reb-lookbook__item,
	.reb-lookbook--feature .reb-lookbook__item:first-child,
	.reb-lookbook--editorial .reb-lookbook__item:first-child,
	.reb-lookbook--editorial .reb-lookbook__item:nth-child(2) {
		grid-column: span 6;
	}

	.reb-atelier__layout,
	.reb-maison__layout,
	.reb-banner__layout {
		grid-template-columns: 1fr;
	}

	.reb-maison__media {
		order: -1;
	}

	.reb-image-grid__items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.reb-container {
		inline-size: min(var(--reb-max), calc(100% - 24px));
	}

	.reb-lookbook__grid {
		grid-template-columns: 1fr;
	}

	.reb-lookbook__item,
	.reb-lookbook--feature .reb-lookbook__item:first-child,
	.reb-lookbook--editorial .reb-lookbook__item:first-child,
	.reb-lookbook--editorial .reb-lookbook__item:nth-child(2) {
		grid-column: auto;
	}

	.reb-image-grid__items {
		grid-template-columns: 1fr;
	}

	.reb-hero {
		min-block-size: 680px;
	}

	.reb-hero__scrim {
		background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.12));
	}

	.reb-hero--right .reb-hero__inner {
		justify-content: flex-start;
		text-align: left;
	}
}
