/* ============================================================
   MAISON ÉCLISSE — "ATELIER NOIR"
   A quiet, editorial haute-couture lookbook. Ink on bone.
   ============================================================ */

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
	font-family: "Cormorant";
	src: url("assets/fonts/cormorant-300.woff2") format("woff2");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Cormorant";
	src: url("assets/fonts/cormorant-400.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Cormorant";
	src: url("assets/fonts/cormorant-500.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Cormorant";
	src: url("assets/fonts/cormorant-600.woff2") format("woff2");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Cormorant";
	src: url("assets/fonts/cormorant-italic-400.woff2") format("woff2");
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: "Archivo";
	src: url("assets/fonts/archivo-300.woff2") format("woff2");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Archivo";
	src: url("assets/fonts/archivo-400.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Archivo";
	src: url("assets/fonts/archivo-500.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
	--bone: #f4f1ea;
	--surface: #ebe6db;
	--ink: #16130f;
	--soot: #100e0b;
	--sepia: #7a7060;
	--line: #cfc7b6;
	--accent: #a6492b;
	--on-dark: #ede7da;
	--ease: cubic-bezier(0.16, 1, 0.3, 1);
	--gut: clamp(1.25rem, 5vw, 5rem);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}
body {
	font-family: "Archivo", system-ui, sans-serif;
	font-weight: 300;
	background: var(--bone);
	color: var(--ink);
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
a {
	color: inherit;
	text-decoration: none;
}
button {
	font: inherit;
	color: inherit;
	background: none;
	border: none;
	cursor: pointer;
}

.serif {
	font-family: "Cormorant", Georgia, serif;
}
.label {
	font-family: "Archivo", sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 0.66rem;
	letter-spacing: 0.28em;
}
.label-sm {
	font-family: "Archivo", sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 0.6rem;
	letter-spacing: 0.26em;
}

/* selection */
::selection {
	background: var(--ink);
	color: var(--bone);
}

/* focus */
:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
}

/* ---------- Reveal ---------- */
.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.9s var(--ease),
		transform 0.9s var(--ease);
}
.reveal.in {
	opacity: 1;
	transform: none;
}

/* ---------- Image frame ---------- */
.frame {
	overflow: hidden;
	position: relative;
	background: var(--surface);
}
.frame img {
	transition: transform 1.2s var(--ease);
}
.frame:hover img,
.card:hover .frame img,
.article:hover .frame img {
	transform: scale(1.06);
}

/* ============================================================
   HEADER
   ============================================================ */
.head {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 60;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.4rem var(--gut);
	color: var(--on-dark);
	transition:
		background 0.5s var(--ease),
		color 0.5s var(--ease),
		border-color 0.5s var(--ease),
		padding 0.4s var(--ease);
	border-bottom: 1px solid transparent;
}
.head.solid {
	background: rgba(244, 241, 234, 0.92);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	color: var(--ink);
	border-bottom: 1px solid var(--line);
	padding-top: 1rem;
	padding-bottom: 1rem;
}
.head__menu {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}
.burger {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.burger span {
	display: block;
	width: 22px;
	height: 1px;
	background: currentColor;
	transition: width 0.3s var(--ease);
}
.burger span:last-child {
	width: 14px;
}
.head__menu:hover .burger span:last-child {
	width: 22px;
}
.wordmark {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	font-family: "Cormorant", serif;
	font-weight: 500;
	font-size: clamp(1.05rem, 2.4vw, 1.5rem);
	letter-spacing: 0.34em;
	text-transform: uppercase;
	white-space: nowrap;
	padding-left: 0.34em;
}
.head__right {
	display: flex;
	align-items: center;
	gap: 1.6rem;
}
.head__right button:hover,
.head__menu:hover {
	opacity: 0.65;
}
@media (max-width: 680px) {
	.head__hide {
		display: none;
	}
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
	position: relative;
	height: 100svh;
	min-height: 560px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.hero__bg {
	position: absolute;
	inset: 0;
}
.hero__bg img {
	transform: scale(1.04);
}
.hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(16, 14, 11, 0.34),
		rgba(16, 14, 11, 0.12) 40%,
		rgba(16, 14, 11, 0.46)
	);
}
.hero__inner {
	position: relative;
	z-index: 2;
	text-align: center;
	color: var(--on-dark);
	padding: 0 1.5rem;
	max-width: 1000px;
}
.hero__kicker {
	display: block;
	margin-bottom: 1.6rem;
	opacity: 0.9;
}
.hero__title {
	font-family: "Cormorant", serif;
	font-weight: 400;
	font-size: clamp(3.6rem, 15vw, 12rem);
	line-height: 0.92;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero__title em {
	font-style: italic;
	font-weight: 300;
}
.hero__cta {
	display: inline-block;
	margin-top: 2.4rem;
	border: 1px solid rgba(237, 231, 218, 0.7);
	padding: 0.95rem 2.4rem;
	font-family: "Archivo", sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 0.7rem;
	letter-spacing: 0.26em;
	transition:
		background 0.4s var(--ease),
		color 0.4s var(--ease),
		border-color 0.4s var(--ease);
}
.hero__cta:hover {
	background: var(--bone);
	color: var(--ink);
	border-color: var(--bone);
}
.hero__meta {
	position: absolute;
	bottom: 1.6rem;
	left: var(--gut);
	z-index: 2;
	color: var(--on-dark);
	line-height: 1.9;
}
.hero__scrollhint {
	position: absolute;
	bottom: 1.7rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	color: var(--on-dark);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	opacity: 0.85;
}
.hero__scrollhint .bar {
	width: 1px;
	height: 34px;
	background: currentColor;
	animation: drop 2.4s var(--ease) infinite;
}
@keyframes drop {
	0% {
		transform: scaleY(0);
		transform-origin: top;
	}
	45% {
		transform: scaleY(1);
		transform-origin: top;
	}
	55% {
		transform: scaleY(1);
		transform-origin: bottom;
	}
	100% {
		transform: scaleY(0);
		transform-origin: bottom;
	}
}

/* rotating badge */
.badge {
	position: absolute;
	bottom: 1.4rem;
	right: var(--gut);
	z-index: 2;
	width: 104px;
	height: 104px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.6s var(--ease);
}
.badge:hover {
	transform: scale(1.1);
}
.badge__ring {
	position: absolute;
	inset: 0;
	animation: spin 14s linear infinite;
}
.badge__ring text {
	fill: var(--on-dark);
	font-family: "Archivo", sans-serif;
	font-size: 8.4px;
	letter-spacing: 2.4px;
	font-weight: 500;
}
.badge__disc {
	position: absolute;
	inset: 14px;
	border-radius: 50%;
	background: rgba(237, 231, 218, 0.06);
	border: 1px solid rgba(237, 231, 218, 0.18);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
}
.badge__glyph {
	position: relative;
	z-index: 2;
	color: var(--on-dark);
	width: 18px;
	height: 18px;
}
@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}
@media (max-width: 680px) {
	.hero__meta,
	.badge {
		display: none;
	}
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
	padding: clamp(6rem, 14vw, 11rem) var(--gut);
	text-align: center;
}
.manifesto__q {
	font-family: "Cormorant", serif;
	font-weight: 300;
	font-size: clamp(1.9rem, 5.2vw, 3.7rem);
	line-height: 1.22;
	letter-spacing: 0.01em;
	max-width: 18ch;
	margin: 0 auto;
	color: var(--ink);
}
.manifesto__q em {
	font-style: italic;
	color: var(--sepia);
}
.manifesto__sub {
	margin-top: 2.4rem;
	color: var(--sepia);
}

/* ============================================================
   COLLECTION DIPTYCHS
   ============================================================ */
.diptych {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.diptych .frame {
	height: clamp(420px, 82vh, 860px);
}
.diptych__panel {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: clamp(2.5rem, 7vw, 6rem);
	background: var(--surface);
	position: relative;
}
.diptych--rev .diptych__media {
	order: 2;
}
.diptych--rev .diptych__panel {
	order: 1;
	background: var(--bone);
}
.diptych__num {
	color: var(--accent);
	margin-bottom: 1.6rem;
}
.diptych__num span {
	color: var(--sepia);
}
.diptych__title {
	font-family: "Cormorant", serif;
	font-weight: 400;
	font-size: clamp(2.2rem, 5vw, 4rem);
	line-height: 1.02;
	margin-bottom: 1.6rem;
	letter-spacing: 0.005em;
}
.diptych__body {
	color: var(--sepia);
	max-width: 38ch;
	font-size: 0.98rem;
	margin-bottom: 2.2rem;
}
.link {
	position: relative;
	font-family: "Archivo", sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 0.68rem;
	letter-spacing: 0.24em;
	padding-bottom: 0.45rem;
	color: var(--ink);
}
.link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: var(--ink);
	transform-origin: left;
	transition: transform 0.5s var(--ease);
}
.link:hover::after {
	transform: scaleX(0.4);
}

/* ============================================================
   SELECTED PIECES (staggered grid)
   ============================================================ */
.pieces {
	padding: clamp(5rem, 11vw, 9rem) var(--gut) clamp(6rem, 12vw, 9rem);
}
.pieces__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	border-top: 1px solid var(--line);
	padding-top: 2rem;
	margin-bottom: clamp(3rem, 6vw, 5rem);
}
.pieces__head h2 {
	font-family: "Cormorant", serif;
	font-weight: 400;
	font-size: clamp(2rem, 5vw, 3.4rem);
}
.pieces__head a {
	color: var(--sepia);
}
.pieces__head a:hover {
	color: var(--ink);
}
.grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.6rem 1.6rem;
}
.card {
	cursor: pointer;
}
.card .frame {
	aspect-ratio: 3 / 4;
	margin-bottom: 1rem;
}
.card__row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 0 0.15rem;
}
.card__name {
	font-family: "Archivo", sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 0.74rem;
	letter-spacing: 0.16em;
}
.card__price {
	font-family: "Cormorant", serif;
	font-weight: 500;
	font-size: 1.15rem;
	color: var(--sepia);
}
.pieces__foot {
	text-align: center;
	margin-top: clamp(3.5rem, 7vw, 5.5rem);
}
.ghost {
	display: inline-block;
	border: 1px solid var(--ink);
	padding: 1rem 3rem;
	font-family: "Archivo", sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 0.7rem;
	letter-spacing: 0.26em;
	transition:
		background 0.4s var(--ease),
		color 0.4s var(--ease);
}
.ghost:hover {
	background: var(--ink);
	color: var(--bone);
}
@media (min-width: 1024px) {
	.grid .card:nth-child(even) {
		margin-top: 4rem;
	}
}
@media (max-width: 1023px) {
	.lg-only {
		display: none;
	}
}

/* ============================================================
   EDITORIAL STATEMENT BANNER
   ============================================================ */
.statement {
	position: relative;
	height: clamp(440px, 78vh, 760px);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.statement img {
	position: absolute;
	inset: 0;
	transform: scale(1.02);
}
.statement::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(16, 14, 11, 0.22);
}
.statement h2 {
	position: relative;
	z-index: 2;
	color: var(--on-dark);
	font-family: "Cormorant", serif;
	font-weight: 300;
	text-transform: uppercase;
	font-size: clamp(2.2rem, 6.5vw, 5rem);
	line-height: 1.12;
	letter-spacing: 0.12em;
	text-align: center;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

/* ============================================================
   JOURNAL
   ============================================================ */
.journal {
	padding: clamp(5rem, 11vw, 9rem) var(--gut);
	background: var(--surface);
}
.journal__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	border-top: 1px solid var(--line);
	padding-top: 2rem;
	margin-bottom: clamp(3rem, 6vw, 4.5rem);
}
.journal__head h2 {
	font-family: "Cormorant", serif;
	font-weight: 400;
	font-size: clamp(2rem, 5vw, 3.2rem);
}
.journal__head a {
	color: var(--sepia);
}
.journal__head a:hover {
	color: var(--ink);
}
.journal__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2.5rem, 6vw, 6rem);
}
.article {
	cursor: pointer;
}
.article .frame {
	aspect-ratio: 4 / 3;
	margin-bottom: 1.6rem;
}
.article__cat {
	color: var(--accent);
	margin-bottom: 1rem;
	display: block;
}
.article__title {
	font-family: "Cormorant", serif;
	font-weight: 400;
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin-bottom: 1rem;
	transition: font-style 0.3s;
}
.article:hover .article__title {
	font-style: italic;
}
.article__dek {
	color: var(--sepia);
	font-size: 0.94rem;
	margin-bottom: 1.2rem;
	max-width: 46ch;
}
.article:nth-child(2) {
	margin-top: clamp(0px, 6vw, 5rem);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.news {
	padding: clamp(7rem, 15vw, 12rem) var(--gut);
	text-align: center;
	border-top: 1px solid var(--line);
}
.news__in {
	max-width: 520px;
	margin: 0 auto;
}
.news h2 {
	font-family: "Cormorant", serif;
	font-weight: 400;
	font-size: clamp(2.2rem, 5vw, 3.4rem);
	margin-bottom: 1.4rem;
}
.news p {
	color: var(--sepia);
	margin-bottom: 3rem;
	font-size: 0.98rem;
}
.news form {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.news input {
	width: 100%;
	max-width: 400px;
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--line);
	padding: 0.9rem 0;
	text-align: center;
	font-family: "Archivo", sans-serif;
	font-weight: 300;
	font-size: 1rem;
	color: var(--ink);
	transition: border-color 0.4s var(--ease);
}
.news input::placeholder {
	color: var(--sepia);
}
.news input:focus {
	outline: none;
	border-color: var(--ink);
}
.news button {
	margin-top: 2.4rem;
	font-family: "Archivo", sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 0.7rem;
	letter-spacing: 0.26em;
	padding-bottom: 0.4rem;
	border-bottom: 1px solid transparent;
	transition: border-color 0.4s var(--ease);
}
.news button:hover {
	border-color: var(--ink);
}
.news__done {
	color: var(--accent);
	font-size: 0.84rem;
	letter-spacing: 0.1em;
	margin-top: 1.6rem;
	min-height: 1em;
	opacity: 0;
	transition: opacity 0.4s;
}
.news__done.show {
	opacity: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
	background: var(--soot);
	color: var(--on-dark);
	padding: clamp(4.5rem, 9vw, 7rem) var(--gut) 2.5rem;
}
.foot__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: clamp(2.5rem, 5vw, 4rem);
	max-width: 1280px;
	margin: 0 auto;
}
.foot__brand h3 {
	font-family: "Cormorant", serif;
	font-weight: 500;
	font-size: clamp(2rem, 4vw, 2.8rem);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: 1.8rem;
}
.foot__brand p {
	color: rgba(237, 231, 218, 0.55);
	max-width: 42ch;
	font-size: 0.94rem;
}
.foot__col h5 {
	color: rgba(237, 231, 218, 0.45);
	margin-bottom: 1.8rem;
}
.foot__col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.foot__col a {
	color: rgba(237, 231, 218, 0.8);
	font-size: 0.92rem;
	transition: color 0.3s;
}
.foot__col a:hover {
	color: var(--on-dark);
}
.foot__bar {
	max-width: 1280px;
	margin: clamp(3.5rem, 7vw, 5rem) auto 0;
	padding-top: 1.8rem;
	border-top: 1px solid rgba(237, 231, 218, 0.12);
	display: flex;
	justify-content: space-between;
	color: rgba(237, 231, 218, 0.4);
	gap: 1rem;
	flex-wrap: wrap;
}

/* ============================================================
   OVERLAYS (menu / search)
   ============================================================ */
.overlay {
	position: fixed;
	inset: 0;
	z-index: 80;
	background: var(--bone);
	visibility: hidden;
}
.overlay__close {
	position: absolute;
	top: 1.5rem;
	right: var(--gut);
	z-index: 2;
	width: 34px;
	height: 34px;
	transition: transform 0.5s var(--ease);
}
.overlay__close:hover {
	transform: rotate(90deg);
}
.overlay__close::before,
.overlay__close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--ink);
}
.overlay__close::before {
	transform: rotate(45deg);
}
.overlay__close::after {
	transform: rotate(-45deg);
}

/* menu */
.menu {
	transform: translateX(-100%);
	transition:
		transform 0.6s var(--ease),
		visibility 0.6s;
}
.menu.open {
	transform: none;
	visibility: visible;
}
.menu__in {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 var(--gut);
	max-width: 1280px;
	margin: 0 auto;
}
.menu__list {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}
.menu__list a {
	font-family: "Cormorant", serif;
	font-weight: 400;
	font-size: clamp(2.4rem, 8vw, 5rem);
	line-height: 1.18;
	transition:
		font-style 0.3s,
		padding-left 0.4s var(--ease);
	width: max-content;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}
.menu__list a:hover {
	font-style: italic;
	padding-left: 1.2rem;
}
.menu__meta {
	display: flex;
	gap: 3rem;
	margin-top: clamp(3rem, 7vw, 5rem);
	color: var(--sepia);
	flex-wrap: wrap;
}

/* search */
.search {
	opacity: 0;
	transform: translateY(14px);
	transition:
		opacity 0.5s var(--ease),
		transform 0.5s var(--ease),
		visibility 0.5s;
}
.search.open {
	opacity: 1;
	transform: none;
	visibility: visible;
}
.search__in {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0 var(--gut);
	text-align: center;
}
.search__in label {
	color: var(--sepia);
	margin-bottom: 2rem;
}
.search__field {
	width: 100%;
	max-width: 840px;
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--line);
	padding: 1.2rem 0;
	text-align: center;
	font-family: "Cormorant", serif;
	font-weight: 300;
	font-size: clamp(1.8rem, 6vw, 3.6rem);
	color: var(--ink);
	transition: border-color 0.4s var(--ease);
}
.search__field:focus {
	outline: none;
	border-color: var(--ink);
}
.search__field::placeholder {
	color: var(--line);
}
.search__trend {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.6rem 2rem;
	margin-top: 3rem;
	color: var(--sepia);
}
.search__trend span {
	color: var(--line);
}
.search__trend a {
	position: relative;
	color: var(--sepia);
	transition: color 0.3s;
}
.search__trend a:hover {
	color: var(--ink);
}

/* lock scroll */
body.locked {
	overflow: hidden;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
	.diptych {
		grid-template-columns: 1fr;
	}
	.diptych .frame {
		height: 62vh;
	}
	.diptych--rev .diptych__media {
		order: 1;
	}
	.diptych--rev .diptych__panel {
		order: 2;
	}
	.grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
	.journal__grid {
		grid-template-columns: 1fr;
		gap: 3.5rem;
	}
	.article:nth-child(2) {
		margin-top: 0;
	}
	.foot__grid {
		grid-template-columns: 1fr 1fr;
	}
	.foot__brand {
		grid-column: 1 / -1;
	}
}
@media (max-width: 520px) {
	.grid {
		grid-template-columns: 1fr;
	}
	.foot__grid {
		grid-template-columns: 1fr;
	}
	.foot__bar {
		flex-direction: column;
	}
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.001ms;
		animation-iteration-count: 1;
		transition-duration: 0.001ms;
		scroll-behavior: auto;
	}
	.reveal {
		opacity: 1;
		transform: none;
	}
}
