/* ==========================================================================
   Système visuel des pages secondaires (Boutique, Pierres, Guide, À propos,
   Contact, catégories de bijoux, formes) — même langage que la page Bijoux :
   hero photo compact, bandes ivoire / sable / noir, filets champagne fins,
   titres serif, cartes sobres. Mobile d'abord.
   ========================================================================== */

:root {
	--band-y: clamp(2.25rem, 1.7rem + 2.8vw, 4.25rem);
}

.eyebrow {
	margin: 0 0 0.6rem;
	font-size: var(--text-xs);
	font-weight: var(--weight-semibold);
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-focus);
}

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

/* ---- Hero photo compact -------------------------------------------------- */
.hero-page {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: flex-end;
	min-height: 440px;
	overflow: hidden;
	background-color: var(--color-dark-bg);
	color: var(--color-dark-text);
}

.hero-page--plain {
	min-height: 240px;
}

.hero-page__media {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.hero-page__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: var(--hero-pos, 50% 50%);
}

.hero-page__scrim {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(0deg, rgba(17, 17, 18, 0.92) 0%, rgba(17, 17, 18, 0.6) 42%, rgba(17, 17, 18, 0.12) 100%);
}

.hero-page__inner {
	padding-block: var(--space-xl) var(--space-lg);
}

.hero-page__title {
	margin: 0 0 0.6rem;
	font-size: clamp(2.2rem, 1.7rem + 2.6vw, 3.75rem);
	line-height: 1.05;
	color: var(--color-dark-text);
	text-wrap: balance;
}

.hero-page__lead {
	max-width: 38ch;
	margin: 0;
	font-size: var(--text-base);
	line-height: 1.55;
	color: rgba(247, 244, 238, 0.88);
}

.hero-page__actions {
	margin: var(--space-md) 0 0;
}

@media (min-width: 1024px) {
	.hero-page {
		align-items: center;
		min-height: 480px;
	}

	.hero-page__media {
		left: 46%;
	}

	.hero-page__image {
		object-position: var(--hero-pos-d, var(--hero-pos, 50% 50%));
	}

	.hero-page__scrim {
		background: linear-gradient(90deg, var(--color-dark-bg) 44%, rgba(17, 17, 18, 0.35) 62%, rgba(17, 17, 18, 0) 100%);
	}

	.hero-page__inner {
		padding-block: var(--space-xl);
	}

	.hero-page__text {
		max-width: 500px;
	}
}

/* Pages génériques restantes (panier, compte, légal) : titre plus compact. */
.page-hero {
	padding-block: var(--space-lg) var(--space-sm);
}

.page-hero__heading {
	font-size: clamp(2rem, 1.6rem + 2vw, 3.25rem);
}

.page-hero__subtitle {
	font-size: var(--text-base);
}

/* ---- Bandes ---------------------------------------------------------------- */
.band {
	padding-block: var(--band-y);
}

.band--tight {
	padding-block: var(--space-lg) var(--space-md);
}

.band--soft {
	background-color: var(--color-bg-soft);
	border-block: 1px solid rgba(199, 164, 103, 0.3);
}

.band--dark {
	background-color: var(--color-dark-bg);
	color: var(--color-dark-text);
}

.band__center {
	text-align: center;
}

.band__text {
	max-width: 44ch;
	margin: 0 auto var(--space-md);
	color: var(--color-dark-text-muted);
	line-height: 1.55;
}

.band__cta {
	margin: 0;
}

.band__cta--row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}

.section-title {
	margin: 0 0 var(--space-md);
	font-size: var(--text-2xl);
	text-align: center;
}

.section-title::after {
	content: "";
	display: block;
	width: 44px;
	height: 1px;
	margin: var(--space-xs) auto 0;
	background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.section-title--left-free {
	text-align: inherit;
}

.section-title--sub {
	margin-top: var(--space-lg);
	font-size: var(--text-xl);
}

.band--dark .section-title {
	color: var(--color-dark-text);
}

.intro-text {
	text-align: center;
}

.intro-text p {
	margin: 0 0 0.75rem;
	color: var(--color-text-muted);
	line-height: 1.65;
}

.intro-text--large p {
	font-family: var(--font-serif);
	font-size: var(--text-xl);
	line-height: 1.4;
	color: var(--color-text);
}

.intro-text .section-title {
	margin-bottom: var(--space-sm);
}

/* ---- Boutons ---------------------------------------------------------------- */
.button--slim-inverse {
	min-height: 44px;
	padding: 0.55rem 1.6rem;
	font-size: var(--text-xs);
	letter-spacing: 0.14em;
	white-space: normal;
	text-align: center;
	color: var(--color-dark-text);
	background-color: transparent;
	border-color: rgba(199, 164, 103, 0.85);
}

.button--slim-inverse:hover,
.button--slim-inverse:focus-visible {
	background-color: var(--color-dark-accent-soft);
	border-color: var(--color-accent-light);
	color: var(--color-dark-text);
	transform: translateY(-1px);
}

/* ---- Cartes de repères ------------------------------------------------------- */
.detail-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--space-sm);
	margin: 0;
	padding: 0;
	list-style: none;
}

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

.detail-card {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	padding: var(--space-sm) var(--space-sm) var(--space-md);
	background-color: var(--color-surface);
	border: 1px solid var(--color-border);
	border-top-color: var(--color-accent);
	border-radius: var(--radius-medium);
}

.detail-card__label {
	font-family: var(--font-serif);
	font-size: var(--text-xl);
	font-weight: var(--weight-semibold);
	line-height: 1.15;
}

.detail-card__text {
	font-size: var(--text-sm);
	line-height: 1.5;
	color: var(--color-text-muted);
}

.detail-note {
	margin: var(--space-md) 0 0;
	font-size: var(--text-xs);
	text-align: center;
	color: var(--color-text-muted);
}

@media (min-width: 768px) {
	.detail-cards--three {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.detail-cards {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: var(--space-md);
	}

	.detail-cards--three {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* ---- Grille produits des pages secondaires ------------------------------------ */
@media (max-width: 767px) {
	.product-grid--pair {
		gap: var(--space-md) var(--space-sm);
	}
}

/* Noms longs : 3 lignes maximum, en CSS (le nom WooCommerce n'est jamais modifié). */
.product-card__name {
	display: -webkit-box;
	overflow: hidden;
	line-height: 1.3;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

/* Plusieurs variantes partagent parfois la même photo (tailles/longueurs d'un
   même modèle) : la photo entière reste visible et centrée sur chaque carte,
   comme la première occurrence — aucun recadrage/zoom qui couperait le bijou. */

/* ---- Cartes de formes ------------------------------------------------------------ */
.shape-cards {
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (max-width: 767px) {
	.shape-cards {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: var(--space-sm);
	}
}

.shape-card {
	display: block;
	color: var(--color-text);
	text-decoration: none;
}

.shape-card__media {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	background-color: var(--color-dark-bg-alt);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-medium);
	transition: transform var(--transition-slow), border-color var(--transition-slow), box-shadow var(--transition-slow);
}

.shape-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: var(--sx, 50%) var(--sy, 50%);
	transform: scale(var(--sz, 1));
	transform-origin: var(--ox, 50%) var(--oy, 50%);
	transition: filter var(--transition-slow);
}

.shape-card__media--icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-accent);
	background: radial-gradient(circle at 50% 42%, rgba(199, 164, 103, 0.16), rgba(17, 17, 18, 0) 62%), var(--color-dark-bg-alt);
}

.shape-card__media--icon svg {
	width: 46%;
	height: 46%;
	stroke-width: 0.7;
}

.shape-card__name {
	display: block;
	margin-top: 0.6rem;
	font-family: var(--font-serif);
	font-size: var(--text-xl);
	font-weight: var(--weight-semibold);
	line-height: 1.15;
}

.shape-card__text {
	display: block;
	margin-top: 0.2rem;
	font-size: var(--text-sm);
	line-height: 1.45;
	color: var(--color-text-muted);
}

.shape-card__more {
	display: block;
	margin-top: 0.4rem;
	font-size: var(--text-xs);
	font-weight: var(--weight-semibold);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-focus);
}

@media (hover: hover) {
	.shape-card:hover .shape-card__media,
	.shape-card:focus-visible .shape-card__media {
		transform: translateY(-3px);
		border-color: var(--color-accent-line);
		box-shadow: 0 12px 30px rgba(17, 17, 18, 0.16);
	}

	.shape-card:hover .shape-card__media img {
		filter: brightness(1.06);
	}
}

@media (min-width: 1024px) {
	.shape-cards {
		--gap: var(--space-md);
	}
}

@media (min-width: 1600px) {
	.shape-cards {
		--gap: 2rem;
	}
}

/* ---- Filtres (puces) --------------------------------------------------------------- */
.chip-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
}

.chip-row--left {
	justify-content: flex-start;
}

.chip {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 0.35rem 1rem;
	font-size: var(--text-sm);
	color: var(--color-text);
	text-decoration: none;
	background-color: var(--color-surface);
	border: 1px solid var(--color-border-strong);
	border-radius: var(--radius-pill);
	transition: background-color var(--transition-base), border-color var(--transition-base);
}

.chip:hover,
.chip:focus-visible,
.chip.is-active {
	background-color: var(--color-accent-soft);
	border-color: var(--color-accent);
	color: var(--color-text);
}

.chip.is-active {
	font-weight: var(--weight-semibold);
}

.chip-reset {
	margin: var(--space-sm) 0 0;
	font-size: var(--text-sm);
	text-align: center;
}

/* ---- Guide ------------------------------------------------------------------------------- */
.guide-cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-sm);
}

.guide-card {
	padding: var(--space-md) var(--space-sm) var(--space-sm);
	background-color: var(--color-surface);
	border: 1px solid var(--color-border);
	border-top-color: var(--color-accent);
	border-radius: var(--radius-medium);
}

.guide-card__num {
	display: block;
	font-family: var(--font-serif);
	font-size: 1.6rem;
	line-height: 1;
	color: var(--color-focus);
}

.guide-card__title {
	margin: 0.25rem 0 0.4rem;
	font-family: var(--font-serif);
	font-size: var(--text-xl);
	line-height: 1.15;
}

.guide-card p {
	margin: 0 0 0.5rem;
	font-size: var(--text-sm);
	line-height: 1.55;
	color: var(--color-text-muted);
}

.guide-more summary,
.faq-item summary {
	cursor: pointer;
}

.guide-more summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 44px;
	font-size: var(--text-xs);
	font-weight: var(--weight-semibold);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	list-style: none;
}

.guide-more summary::-webkit-details-marker {
	display: none;
}

.guide-more summary::after {
	content: "+";
	font-size: 1.1rem;
	color: var(--color-focus);
}

.guide-more[open] summary::after {
	content: "\2212";
}

.guide-more__body {
	padding-bottom: 0.5rem;
	font-size: var(--text-sm);
	color: var(--color-text-muted);
}

.guide-more__body ul {
	padding-left: 1.1rem;
}

.guide-more__body table {
	display: block;
	max-width: 100%;
	overflow-x: auto;
	font-size: var(--text-sm);
	border-collapse: collapse;
}

.guide-more__body th,
.guide-more__body td {
	padding: 0.45rem 0.6rem;
	text-align: left;
	border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
	.guide-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: var(--space-md);
	}
}

@media (min-width: 1100px) {
	.guide-cards {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.photo-band {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: center;
	min-height: 300px;
	overflow: hidden;
	background-color: var(--color-dark-bg);
	color: var(--color-dark-text);
}

.photo-band__media {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.photo-band__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 60% 50%;
}

.photo-band__scrim {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(0deg, rgba(17, 17, 18, 0.78), rgba(17, 17, 18, 0.62));
}

.photo-band__inner {
	padding-block: var(--space-xl);
	text-align: center;
}

.photo-band--quiet {
	min-height: 260px;
}

.photo-band--quiet .photo-band__inner {
	text-align: left;
}

.photo-band .section-title {
	color: var(--color-dark-text);
}

.link-chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.6rem;
	margin: var(--space-md) 0 0;
	padding: 0;
	list-style: none;
}

.compare table {
	width: 100%;
	font-size: var(--text-sm);
	background-color: var(--color-surface);
	border: 1px solid var(--color-border);
	border-collapse: collapse;
}

.compare caption {
	padding-bottom: 0.4rem;
	font-size: var(--text-xs);
	text-align: left;
	color: var(--color-text-muted);
}

.compare th,
.compare td {
	padding: 0.65rem 0.75rem;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid var(--color-border);
}

.compare thead th {
	background-color: var(--color-bg-soft);
	font-weight: var(--weight-semibold);
}

.compare > p {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
}

@media (max-width: 599px) {
	.compare {
		overflow-x: auto;
	}
}

.faq-item__body {
	padding-bottom: 0.5rem;
	font-size: var(--text-sm);
	color: var(--color-text-muted);
}

/* ---- À propos ----------------------------------------------------------------------------------- */
.about-block {
	margin-bottom: var(--space-md);
}

.about-block:last-child {
	margin-bottom: 0;
}

.about-block .section-title {
	text-align: left;
}

.about-block .section-title::after {
	margin-left: 0;
}

.about-block p {
	margin: 0 0 0.75rem;
	line-height: 1.65;
	color: var(--color-text-muted);
}

/* ---- Entretien ------------------------------------------------------------------------------------ */
.care-note {
	padding: var(--space-md);
	text-align: center;
	background-color: var(--color-surface);
	border: 1px solid rgba(199, 164, 103, 0.5);
	border-radius: var(--radius-medium);
}

.care-note__label {
	display: inline-block;
	margin-bottom: 0.35rem;
	font-size: var(--text-xs);
	font-weight: var(--weight-semibold);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-focus);
}

.care-note p {
	max-width: 52ch;
	margin: 0 auto;
	font-size: var(--text-sm);
	line-height: 1.55;
	color: var(--color-text-muted);
}

/* ---- Contact ----------------------------------------------------------------------------------------- */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-lg);
}

.contact-form .field {
	margin-bottom: var(--space-sm);
}

.contact-form label {
	display: block;
	margin-bottom: 0.35rem;
	font-size: var(--text-xs);
	font-weight: var(--weight-semibold);
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.field__optional {
	font-weight: var(--weight-regular);
	letter-spacing: 0.04em;
	text-transform: none;
	color: var(--color-text-muted);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
	width: 100%;
	min-height: 48px;
	padding: 0.7rem 0.9rem;
	font-size: 1rem;
	color: var(--color-text);
	background-color: var(--color-surface);
	border: 1px solid var(--color-border-strong);
	border-radius: var(--radius-small);
}

.contact-form textarea {
	min-height: 140px;
	resize: vertical;
}

.contact-form__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.contact-form__submit {
	margin: var(--space-md) 0 0;
}

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

.form-notice {
	margin: 0 0 var(--space-sm);
	padding: 0.8rem 1rem;
	font-size: var(--text-sm);
	background-color: var(--color-surface);
	border: 1px solid var(--color-border);
	border-left: 3px solid var(--color-accent);
	border-radius: var(--radius-small);
}

.form-notice--error {
	border-left-color: var(--color-error);
}

.form-notice--success {
	border-left-color: var(--color-success);
}

.contact-side__media {
	aspect-ratio: 4 / 3;
	margin-bottom: var(--space-sm);
	border: 1px solid rgba(199, 164, 103, 0.4);
	border-radius: var(--radius-medium);
}

.contact-side__media img {
	object-position: 70% 50%;
}

.contact-side__note {
	margin: 0 0 var(--space-xs);
	font-family: var(--font-serif);
	font-size: var(--text-xl);
	font-style: italic;
	line-height: 1.3;
}

.contact-side__line {
	margin: 0 0 var(--space-xs);
	font-size: var(--text-sm);
}

.contact-side__line span {
	display: block;
	font-size: var(--text-xs);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

@media (min-width: 1024px) {
	.contact-grid {
		grid-template-columns: 1.15fr 0.85fr;
		gap: var(--space-xl);
		align-items: start;
	}

	.contact-side__media {
		aspect-ratio: 4 / 5;
	}

	.contact-form__submit .button {
		width: auto;
	}
}

/* ---- Boutique ------------------------------------------------------------------------------------------------ */
.jewel-card--stones { --jx: 82%; --jy: 50%; }

.jewel-cats--six {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 700px) and (max-width: 1023px) {
	.jewel-cats--six {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.jewel-cats--six .jewel-cats__item,
	.jewel-cats--six .jewel-cats__item:nth-child(n+4) {
		grid-column: auto;
	}
}

@media (min-width: 1024px) {
	.jewel-cats--six {
		grid-template-columns: repeat(6, minmax(0, 1fr));
		gap: var(--space-sm);
	}

	.jewel-card--stones { --jx: 95%; }

	.jewel-cats--six .jewel-card__name {
		font-size: 0.75rem;
	}
}

.shop-filters {
	margin-bottom: var(--space-sm);
	padding: 0 var(--space-sm);
	background-color: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-medium);
}

.shop-filters summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 48px;
	font-size: var(--text-xs);
	font-weight: var(--weight-semibold);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	list-style: none;
	cursor: pointer;
}

.shop-filters summary::-webkit-details-marker {
	display: none;
}

.shop-filters summary::after {
	content: "+";
	font-size: 1.1rem;
	color: var(--color-focus);
}

.shop-filters[open] summary::after {
	content: "\2212";
}

.shop-filters__count {
	margin-left: 0.4rem;
	color: var(--color-accent-hover);
}

.shop-filters__group {
	padding-block: 0.7rem;
	border-top: 1px solid var(--color-border);
}

.shop-filters__label {
	display: block;
	margin-bottom: 0.4rem;
	font-size: var(--text-xs);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.shop-sort {
	display: flex;
	justify-content: flex-end;
	margin-bottom: var(--space-sm);
}

.shop-sort form {
	margin: 0;
}

/* ---- Guide : sommaire éditorial (sans numéros) ---------------------------- */
.guide-list {
	max-width: 760px;
	margin-inline: auto;
	border-top: 1px solid var(--color-accent-line);
}

/* Les ancres arrivent sous l'en-tête collant, jamais derrière lui : le thème
   pose déjà scroll-padding-top: 88px sur <html> ; cette marge ne fait que
   laisser un peu d'air (88 + 16 = 104 px depuis le haut de l'écran). */
.page-guide [id] {
	scroll-margin-top: 16px;
}

.guide-item {
	border-bottom: 1px solid rgba(199, 164, 103, 0.35);
}

.guide-item__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-sm);
	padding: var(--space-md) var(--space-xs);
	list-style: none;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transition: background-color var(--transition-base);
}

.guide-item__head::-webkit-details-marker {
	display: none;
}

.guide-item__text {
	display: block;
	min-width: 0;
}

.guide-item__title {
	display: block;
	font-family: var(--font-serif);
	font-size: var(--text-xl);
	font-weight: var(--weight-semibold);
	line-height: 1.2;
	color: var(--color-text);
}

.guide-item__lead {
	display: block;
	margin-top: 0.25rem;
	font-size: var(--text-sm);
	line-height: 1.55;
	color: var(--color-text-muted);
}

.guide-item--static {
	padding: var(--space-md) var(--space-xs);
}

.guide-item--static .guide-item__title {
	margin: 0;
}

.guide-item--static .guide-item__lead {
	margin: 0.25rem 0 0;
}

.guide-item__arrow {
	display: flex;
	flex-shrink: 0;
	color: var(--color-focus);
	transition: transform var(--transition-base);
}

.guide-item__arrow svg {
	width: 20px;
	height: 20px;
}

.guide-item[open] .guide-item__arrow {
	transform: rotate(90deg);
}

.guide-item__head:active {
	background-color: var(--color-accent-soft);
}

@media (hover: hover) {
	.guide-item__head:hover {
		background-color: var(--color-accent-soft);
	}

	.guide-item:not([open]) .guide-item__head:hover .guide-item__arrow {
		transform: translateX(4px);
	}
}

.guide-item__body {
	padding: 0 var(--space-xs) var(--space-md);
	font-size: var(--text-sm);
	line-height: 1.6;
	color: var(--color-text-muted);
}

.guide-item__body p {
	margin: 0 0 0.6rem;
}

.guide-item__body ul {
	padding-left: 1.1rem;
}

.guide-item__body table {
	display: block;
	max-width: 100%;
	overflow-x: auto;
	border-collapse: collapse;
}

.guide-item__body th,
.guide-item__body td {
	padding: 0.45rem 0.6rem;
	text-align: left;
	border-bottom: 1px solid var(--color-border);
}

.guide-item__sub {
	margin: var(--space-sm) 0 0.25rem;
	font-family: var(--font-serif);
	font-size: var(--text-lg);
	color: var(--color-text);
}

/* ---- Cartes de formes : écrin sobre (Pierres, pages de formes) ---------------- */
.shape-card {
	padding: 0.5rem 0.5rem 0.95rem;
	background-color: var(--color-surface);
	border: 1px solid rgba(199, 164, 103, 0.38);
	border-radius: 10px;
	box-shadow: 0 1px 2px rgba(17, 17, 18, 0.04), 0 8px 18px rgba(17, 17, 18, 0.05);
	transition: transform var(--transition-slow), border-color var(--transition-slow), box-shadow var(--transition-slow);
}

.shape-card__media {
	border-color: rgba(199, 164, 103, 0.25);
	border-radius: 6px;
	overflow: hidden;
}

.shape-card__name {
	margin-top: 0.85rem;
	padding-inline: 0.3rem;
	text-align: left;
}

.shape-card__text {
	margin-top: 0.3rem;
	padding-inline: 0.3rem;
}

.shape-card__more {
	margin-top: 0.6rem;
	padding-inline: 0.3rem;
	padding-top: 0.55rem;
	border-top: 1px solid rgba(199, 164, 103, 0.3);
}

/* Photo recadrée sur une pierre d'une photo de groupe (fenêtre carrée, pierre au centre). */
.shape-card__media--crop img {
	position: absolute;
	top: var(--it, 0);
	left: var(--il, 0);
	width: var(--iw, 100%);
	max-width: none;
	height: auto;
	object-fit: initial;
	transform: none;
}

@media (hover: hover) {
	.shape-card:hover,
	.shape-card:focus-visible {
		transform: translateY(-3px);
		border-color: rgba(199, 164, 103, 0.7);
		box-shadow: 0 2px 4px rgba(17, 17, 18, 0.05), 0 14px 26px rgba(17, 17, 18, 0.09);
	}

	.shape-card:hover .shape-card__media,
	.shape-card:focus-visible .shape-card__media {
		transform: none;
		box-shadow: none;
	}
}

.shape-card:active {
	transform: scale(0.99);
}

/* ==========================================================================
   Page Bijoux : mise en scène premium (mobile uniquement)
   ========================================================================== */
.jewel-maison {
	display: none;
}

.jewel-selection__intro {
	margin: 0 auto var(--space-md);
	text-align: center;
	font-size: var(--text-sm);
	color: var(--color-text-muted);
}

@media (max-width: 767px) {
	/* Micro-introduction de marque, juste sous la photo du set. */
	.jewel-maison {
		display: block;
		padding-block: var(--space-xs) var(--space-lg);
		text-align: center;
	}

	.jewel-maison .eyebrow {
		margin-bottom: 0.5rem;
	}

	.jewel-maison__title {
		margin: 0 0 0.7rem;
		font-size: var(--text-2xl);
		font-style: italic;
		line-height: 1.15;
		text-wrap: balance;
	}

	.jewel-maison__title::after {
		content: "";
		display: block;
		width: 44px;
		height: 1px;
		margin: 0.7rem auto 0;
		background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
	}

	.jewel-maison__text {
		max-width: 34ch;
		margin: 0 auto;
		font-size: var(--text-sm);
		line-height: 1.6;
		color: var(--color-text-muted);
	}

	/* Catégories : cartes plus aérées et plus fines. */
	.jewel-section--cats {
		padding-block: var(--space-lg) var(--space-xl);
	}

	.jewel-cats {
		gap: var(--space-md) var(--space-sm);
	}

	.jewel-card {
		-webkit-tap-highlight-color: transparent;
	}

	.jewel-card__media {
		border-color: rgba(199, 164, 103, 0.5);
		border-radius: 8px;
		box-shadow: 0 2px 10px rgba(17, 17, 18, 0.09);
	}

	.jewel-card:active .jewel-card__media {
		transform: scale(0.985);
		box-shadow: 0 1px 4px rgba(17, 17, 18, 0.12);
	}

	.jewel-card__label {
		align-items: center;
		padding: 0.8rem 0.2rem 0;
	}

	.jewel-card__name {
		letter-spacing: 0.1em;
	}

	/* Flèche en petit médaillon champagne, alignée sur le titre. */
	.jewel-card__more {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		width: 24px;
		height: 24px;
		border: 1px solid rgba(199, 164, 103, 0.6);
		border-radius: 50%;
	}

	.jewel-card__more::after {
		font-size: 0.8rem;
		line-height: 1;
	}

	/* Sélection : bande blanc cassé après le moment sombre "Hoaji Signature". */
	.jewel-selection {
		padding-block: var(--space-xl);
		background-color: var(--color-surface);
		border-bottom: 1px solid rgba(199, 164, 103, 0.3);
	}

	.jewel-selection .eyebrow {
		text-align: center;
	}

	.jewel-selection .jewel-heading {
		margin-bottom: 0.4rem;
		font-size: var(--text-3xl);
	}

	.jewel-selection__intro {
		margin-bottom: var(--space-lg);
	}

	.jewel-selection .jewel-products {
		gap: var(--space-md) var(--space-sm);
	}

	.jewel-selection .product-card__media {
		border-color: rgba(199, 164, 103, 0.4);
		box-shadow: 0 2px 10px rgba(17, 17, 18, 0.08);
	}

	.jewel-cta--signature {
		margin-top: var(--space-lg);
	}

	.jewel-selection .button--slim {
		min-width: min(100%, 300px);
		min-height: 50px;
		letter-spacing: 0.16em;
		color: var(--color-ink);
		background-color: transparent;
		border-color: var(--color-accent);
	}

	.jewel-selection .button--slim:hover,
	.jewel-selection .button--slim:focus-visible,
	.jewel-selection .button--slim:active {
		background-color: var(--color-accent-soft);
		border-color: var(--color-accent-hover);
	}
	/* Bande guide : gris perle, sous la sélection. */
	.jewel-guide {
		border-top: 0;
		padding-block: var(--space-xl);
		background-color: var(--color-bg-soft);
	}
}

/* Cartes de même hauteur sur une rangée : le lien reste calé en bas. */
.shape-cards__item {
	display: flex;
}

.shape-card {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.shape-card__text {
	margin-bottom: 0.6rem;
}

.shape-card__more {
	margin-top: auto;
}

/* ---- Bijoux : moment signature (photo sombre, texte à gauche) -------------------- */
.jewel-signature {
	align-items: center;
	min-height: 400px;
}

.jewel-signature .photo-band__media img {
	object-position: 82% 40%;
}

/* Voile sombre à gauche seulement : la pierre, à droite, reste lumineuse. */
.jewel-signature .photo-band__scrim {
	background: linear-gradient(90deg, rgba(17, 17, 18, 0.9) 0%, rgba(17, 17, 18, 0.62) 45%, rgba(17, 17, 18, 0.05) 78%);
}

.jewel-signature .photo-band__inner {
	padding-block: var(--space-xl);
	text-align: left;
}

.jewel-signature .photo-band__inner > * {
	max-width: 15rem;
}

.jewel-signature__title {
	margin: 0 0 0.7rem;
	font-size: var(--text-3xl);
	line-height: 1.1;
	color: var(--color-dark-text);
	text-wrap: balance;
}

.jewel-signature__title::after {
	content: "";
	display: block;
	width: 44px;
	height: 1px;
	margin: 0.8rem 0 0;
	background: linear-gradient(90deg, var(--color-accent), transparent);
}

.jewel-signature__text {
	margin: 0;
	font-family: var(--font-serif);
	font-size: var(--text-lg);
	font-style: italic;
	line-height: 1.4;
	color: rgba(247, 244, 238, 0.88);
}

@media (max-width: 767px) {
	/* Cadre étroit : la pierre (à 70 % de la source) se place à droite du texte, vers 300 px sur 390. */
	.jewel-signature .photo-band__media img {
		object-position: 62% 40%;
	}

	.jewel-signature .photo-band__inner > * {
		max-width: 14.5rem;
	}
}

@media (min-width: 768px) {
	.jewel-signature .photo-band__inner > * {
		max-width: 26rem;
	}
}
/* ---- Signature de chaque catégorie de bijoux (hero) --------------------------- */
.hero-page__signature {
	margin: var(--space-sm) 0 0;
	padding-top: 0.6rem;
	border-top: 1px solid rgba(199, 164, 103, 0.55);
	max-width: 22ch;
	font-family: var(--font-serif);
	font-size: var(--text-lg);
	font-style: italic;
	color: var(--color-accent-light);
}

/* ---- Guide : comparatif moissanite / diamant en cartes verticales (mobile) ----- */
@media (max-width: 599px) {
	.compare {
		overflow: visible;
	}

	.compare table,
	.compare tbody,
	.compare tr,
	.compare th,
	.compare td {
		display: block;
		width: 100%;
	}

	.compare table {
		background: transparent;
		border: 0;
	}

	.compare caption {
		display: block;
		margin-bottom: var(--space-xs);
	}

	.compare thead {
		position: absolute;
		left: -9999px;
	}

	.compare tbody tr {
		margin-bottom: 0.75rem;
		padding: 0.8rem 0.95rem 0.6rem;
		background-color: var(--color-surface);
		border: 1px solid var(--color-border);
		border-top-color: var(--color-accent);
		border-radius: var(--radius-medium);
	}

	.compare tbody td {
		padding: 0;
		border: 0;
	}

	.compare tbody td:first-child {
		padding-bottom: 0.4rem;
		font-family: var(--font-serif);
		font-size: var(--text-lg);
		font-weight: var(--weight-semibold);
		color: var(--color-text);
	}

	.compare tbody td[data-label] {
		display: grid;
		grid-template-columns: 5.6rem 1fr;
		gap: 0.6rem;
		padding: 0.45rem 0;
		border-top: 1px solid rgba(199, 164, 103, 0.28);
		font-size: var(--text-sm);
		line-height: 1.45;
	}

	.compare tbody td[data-label]::before {
		content: attr(data-label);
		font-size: var(--text-xs);
		font-weight: var(--weight-semibold);
		letter-spacing: 0.1em;
		text-transform: uppercase;
		color: var(--color-focus);
	}
}

/* ---- À propos : récit court, grande photo, trois valeurs ------------------------ */
.about-intro {
	text-align: center;
}

.about-intro__title {
	margin: 0 0 var(--space-sm);
	font-size: var(--text-3xl);
	line-height: 1.1;
	text-wrap: balance;
}

.about-intro__title::after {
	content: "";
	display: block;
	width: 44px;
	height: 1px;
	margin: 0.8rem auto 0;
	background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.about-intro__text p {
	max-width: 36ch;
	margin: 0 auto 0.75rem;
	line-height: 1.65;
	color: var(--color-text-muted);
}

.about-photo {
	position: relative;
	aspect-ratio: 1 / 1;
	margin: 0;
	overflow: hidden;
	background-color: var(--color-dark-bg);
}

.about-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 64% 50%;
}

.about-values {
	margin: 0;
	padding: 0;
	list-style: none;
	border-bottom: 1px solid rgba(199, 164, 103, 0.35);
}

.about-values__item {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	padding: var(--space-sm) 0;
	text-align: center;
	border-top: 1px solid rgba(199, 164, 103, 0.35);
}

.about-values__label {
	font-family: var(--font-serif);
	font-size: var(--text-xl);
	font-weight: var(--weight-semibold);
}

.about-values__text {
	font-size: var(--text-sm);
	line-height: 1.5;
	color: var(--color-text-muted);
}

@media (min-width: 768px) {
	.about-photo {
		aspect-ratio: 21 / 9;
	}

	.about-values {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: var(--space-md);
		border-bottom: 0;
	}
}

/* ---- Contact : carte "avant de nous écrire" (sans formulaire) --------------------- */
.contact-card {
	padding: var(--space-md);
	text-align: center;
	background-color: var(--color-surface);
	border: 1px solid rgba(199, 164, 103, 0.4);
	border-radius: var(--radius-medium);
}

.contact-card__title {
	margin: 0 0 0.4rem;
	font-family: var(--font-serif);
	font-size: var(--text-xl);
	line-height: 1.2;
}

.contact-card__text {
	max-width: 36ch;
	margin: 0 auto var(--space-sm);
	font-size: var(--text-sm);
	line-height: 1.55;
	color: var(--color-text-muted);
}

.contact-card__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.6rem;
	margin: 0;
}

/* ---- Boutique : pré-ouverture -------------------------------------------------------- */
.shop-entries {
	display: grid;
	gap: var(--space-sm);
	margin: 0;
	padding: 0;
	list-style: none;
}

.shop-entry {
	position: relative;
	display: block;
	aspect-ratio: 16 / 11;
	overflow: hidden;
	color: var(--color-dark-text);
	text-decoration: none;
	background-color: var(--color-dark-bg);
	border: 1px solid rgba(199, 164, 103, 0.45);
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(17, 17, 18, 0.1);
	-webkit-tap-highlight-color: transparent;
	transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.shop-entry__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms var(--ease-luxe);
}

.shop-entry__sheen {
	position: absolute;
	inset: 0;
	background: linear-gradient(115deg, transparent 42%, rgba(238, 244, 245, 0.2) 50%, transparent 58%);
	transform: translateX(-120%);
	transition: transform 900ms var(--ease-luxe);
	pointer-events: none;
}

.shop-entry__label {
	position: absolute;
	inset: auto 0 0;
	display: block;
	padding: 2.6rem 3.4rem 1rem 1rem;
	background: linear-gradient(0deg, rgba(17, 17, 18, 0.9) 0%, rgba(17, 17, 18, 0) 100%);
}

.shop-entry__name {
	display: block;
	font-family: var(--font-serif);
	font-size: var(--text-2xl);
	line-height: 1.1;
	color: var(--color-dark-text);
}

.shop-entry__text {
	display: block;
	margin-top: 0.2rem;
	font-size: var(--text-sm);
	line-height: 1.4;
	color: rgba(247, 244, 238, 0.85);
}

.shop-entry__arrow {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	color: var(--color-accent-light);
	border: 1px solid rgba(199, 164, 103, 0.75);
	border-radius: 50%;
	transition: transform var(--transition-base);
}

.shop-entry__arrow svg {
	width: 16px;
	height: 16px;
}

.shop-entry:active {
	transform: scale(0.99);
}

.shop-entry:active .shop-entry__sheen {
	transform: translateX(120%);
}

@media (hover: hover) {
	.shop-entry:hover {
		transform: translateY(-2px);
		box-shadow: 0 14px 30px rgba(17, 17, 18, 0.2);
	}

	.shop-entry:hover .shop-entry__media img {
		transform: scale(1.02);
	}

	.shop-entry:hover .shop-entry__sheen {
		transform: translateX(120%);
	}

	.shop-entry:hover .shop-entry__arrow {
		transform: translateX(3px);
	}
}

.shop-preopening {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	margin: var(--space-lg) 0 0;
	font-size: var(--text-xs);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.shop-preopening__dot {
	width: 6px;
	height: 6px;
	background-color: var(--color-accent);
	border-radius: 50%;
}

@media (min-width: 900px) {
	.shop-entries {
		grid-template-columns: repeat(3, 1fr);
		gap: var(--space-md);
	}

	.shop-entry {
		aspect-ratio: 4 / 5;
	}
}

@media (prefers-reduced-motion: reduce) {
	.shop-entry__sheen {
		display: none;
	}
}


/* ==========================================================================
   Finition desktop (0.9.27)
   ========================================================================== */

/* Titres de section : plus de présence sur grand écran (même serif). */
@media (min-width: 1024px) {
	.section-title,
	.jewel-heading {
		margin-bottom: var(--space-lg);
		font-size: var(--text-3xl);
		font-weight: var(--weight-medium);
		line-height: 1.12;
		letter-spacing: -0.005em;
		color: var(--color-text);
	}

	.band--dark .section-title {
		color: var(--color-dark-text);
	}

	.section-title::after {
		width: 56px;
		margin-top: var(--space-sm);
	}

	.band {
		padding-block: clamp(3.5rem, 2.6rem + 1.8vw, 5rem);
	}
}

@media (min-width: 1600px) {
	.section-title,
	.jewel-heading {
		font-size: clamp(2.75rem, 2.2rem + 0.9vw, 3.25rem);
	}
}

/* Guide : le contenu ouvert se retire légèrement, avec un filet champagne, et
   apparaît en cascade (opacité + léger glissement). Desktop uniquement. */
@keyframes hoaji-guide-in {
	from {
		opacity: 0;
		transform: translate(8px, 6px);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

@media (min-width: 1024px) {
	.guide-list {
		max-width: 860px;
	}

	.guide-item__head {
		padding-inline: var(--space-sm);
	}

	.guide-item__title {
		font-size: var(--text-2xl);
	}

	.guide-item__lead {
		font-size: var(--text-base);
	}

	.guide-item[open] > .guide-item__body {
		position: relative;
		margin: 0 var(--space-sm) var(--space-lg) calc(var(--space-sm) + 1.75rem);
		padding: 0.25rem 0 0.25rem 1.75rem;
		font-size: var(--text-base);
		border-left: 1px solid var(--color-accent-line);
		animation: hoaji-guide-in 320ms var(--ease-luxe) both;
	}

	.guide-item[open] > .guide-item__body > * {
		animation: hoaji-guide-in 340ms var(--ease-luxe) both;
	}

	.guide-item[open] > .guide-item__body > *:nth-child(1) { animation-delay: 60ms; }
	.guide-item[open] > .guide-item__body > *:nth-child(2) { animation-delay: 120ms; }
	.guide-item[open] > .guide-item__body > *:nth-child(3) { animation-delay: 180ms; }
	.guide-item[open] > .guide-item__body > *:nth-child(n+4) { animation-delay: 230ms; }

	/* Fermeture : l'inverse, plus courte (voir le script de la page Guide). */
	.guide-item.is-closing[open] > .guide-item__body,
	.guide-item.is-closing[open] > .guide-item__body > * {
		animation: hoaji-guide-out 220ms var(--ease-luxe) both;
	}

	.guide-item__arrow {
		transition: transform 260ms var(--ease-luxe);
	}

	.guide-item.is-closing .guide-item__arrow {
		transform: none;
	}
}

@keyframes hoaji-guide-out {
	from {
		opacity: 1;
		transform: none;
	}

	to {
		opacity: 0;
		transform: translate(6px, 4px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.guide-item[open] > .guide-item__body,
	.guide-item[open] > .guide-item__body > *,
	.guide-item.is-closing[open] > .guide-item__body,
	.guide-item.is-closing[open] > .guide-item__body > * {
		animation: none;
	}
}

/* Bijoux : l'intitulé de la sélection suit le titre centré sur desktop. */
@media (min-width: 768px) {
	.jewel-selection .eyebrow,
	.jewel-selection__intro {
		text-align: center;
	}
}


/* Contact sans formulaire : carte et photo s'équilibrent (hauteurs proches). */
@media (min-width: 1024px) {
	.contact-grid:has(.contact-card) {
		align-items: center;
	}

	.contact-grid:has(.contact-card) .contact-side__media {
		aspect-ratio: 4 / 3;
		margin-bottom: 0;
	}

	.contact-card {
		padding: var(--space-lg) var(--space-xl);
	}

	.contact-card__title {
		font-size: var(--text-2xl);
	}

	.contact-card__text {
		font-size: var(--text-base);
	}
}


/* Guide (mobile) : contenu ouvert légèrement en retrait (1 rem), filet
   champagne de 1 px, apparition douce et fermeture inverse ; un seul repère
   ouvert à la fois (script de la page). */
@media (max-width: 1023px) {
	.guide-item__arrow {
		transition: transform 260ms var(--ease-luxe);
	}

	.guide-item.is-closing .guide-item__arrow {
		transform: none;
	}

	.guide-item[open] > .guide-item__body {
		margin: 0.15rem var(--space-xs) var(--space-md) 1.1rem;
		padding: 0.2rem 0 0.2rem 0.85rem;
		border-left: 1px solid var(--color-accent-line);
		animation: hoaji-guide-in 300ms var(--ease-luxe) both;
	}

	.guide-item[open] > .guide-item__body > * {
		animation: hoaji-guide-in 320ms var(--ease-luxe) both;
	}

	.guide-item[open] > .guide-item__body > *:nth-child(1) { animation-delay: 50ms; }
	.guide-item[open] > .guide-item__body > *:nth-child(2) { animation-delay: 100ms; }
	.guide-item[open] > .guide-item__body > *:nth-child(n+3) { animation-delay: 150ms; }

	.guide-item.is-closing[open] > .guide-item__body,
	.guide-item.is-closing[open] > .guide-item__body > * {
		animation: hoaji-guide-out 220ms var(--ease-luxe) both;
	}
}

@media (prefers-reduced-motion: reduce) {
	.guide-item[open] > .guide-item__body,
	.guide-item[open] > .guide-item__body > *,
	.guide-item.is-closing[open] > .guide-item__body,
	.guide-item.is-closing[open] > .guide-item__body > * {
		animation: none;
	}
}

/* ==========================================================================
   Formes spéciales : mini-navigation entre coupes et zones (0.9.30)
   ========================================================================== */
.cut-nav {
	display: grid;
	gap: 0.6rem;
	max-width: 32rem;
	margin: 0 auto;
}

.cut-nav__item {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	column-gap: 0.75rem;
	padding: 0.85rem 2.6rem 0.85rem 1.15rem;
	color: var(--color-text);
	text-decoration: none;
	background-color: var(--color-surface);
	border: 1px solid rgba(199, 164, 103, 0.4);
	border-radius: 8px;
	box-shadow: 0 1px 2px rgba(17, 17, 18, 0.04), 0 6px 14px rgba(17, 17, 18, 0.04);
	-webkit-tap-highlight-color: transparent;
	transition: border-color var(--transition-base), background-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}

.cut-nav__item::before {
	content: "";
	position: absolute;
	top: 22%;
	bottom: 22%;
	left: 0;
	width: 2px;
	background: var(--color-accent);
	opacity: 0;
	transform: scaleY(0.4);
	transition: opacity var(--transition-base), transform var(--transition-base);
}

.cut-nav__label {
	font-family: var(--font-serif);
	font-size: var(--text-xl);
	font-weight: var(--weight-semibold);
	line-height: 1.15;
}

.cut-nav__meta {
	font-size: var(--text-xs);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-text-soft);
}

.cut-nav__arrow {
	position: absolute;
	top: 50%;
	right: 1.15rem;
	width: 8px;
	height: 8px;
	margin-top: -6px;
	border-right: 1px solid var(--color-focus);
	border-bottom: 1px solid var(--color-focus);
	transform: rotate(45deg);
	transition: transform var(--transition-base);
}

.cut-nav__item:active {
	transform: scale(0.99);
	background-color: var(--color-accent-soft);
}

.cut-nav__item.is-active {
	border-color: var(--color-accent);
	background-color: rgba(199, 164, 103, 0.08);
}

.cut-nav__item.is-active::before {
	opacity: 1;
	transform: none;
}

@media (hover: hover) {
	.cut-nav__item:hover,
	.cut-nav__item:focus-visible {
		border-color: var(--color-accent);
		box-shadow: 0 1px 2px rgba(17, 17, 18, 0.05), 0 10px 22px rgba(17, 17, 18, 0.07);
	}

	.cut-nav__item:hover .cut-nav__arrow {
		transform: translateY(3px) rotate(45deg);
	}
}

@media (min-width: 768px) {
	.cut-nav {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: var(--space-md);
		max-width: 62rem;
	}

	.cut-nav__item {
		grid-template-columns: 1fr;
		row-gap: 0.35rem;
		padding: 1.15rem 1.4rem 1.6rem;
	}

	.cut-nav__arrow {
		top: auto;
		right: 50%;
		bottom: 0.7rem;
		margin: 0 -4px 0 0;
	}
}

.cut-zone {
	scroll-margin-top: 16px;
}

.cut-zone--alt {
	background-color: var(--color-bg-soft);
	border-block: 1px solid rgba(199, 164, 103, 0.3);
}

.cut-zone__head {
	margin-bottom: var(--space-md);
	text-align: center;
}

.cut-zone__head .eyebrow {
	margin-bottom: 0.35rem;
}

.cut-zone__head .section-title {
	margin-bottom: 0.5rem;
}

.cut-zone__text {
	max-width: 34ch;
	margin: 0 auto;
	font-size: var(--text-sm);
	line-height: 1.55;
	color: var(--color-text-muted);
}

.cut-soon {
	max-width: 26rem;
	margin: 0 auto;
	padding: 1.75rem 1.5rem 1.6rem;
	text-align: center;
	background-color: var(--color-surface);
	border: 1px solid rgba(199, 164, 103, 0.4);
	border-radius: 10px;
	box-shadow: 0 1px 2px rgba(17, 17, 18, 0.04), 0 8px 18px rgba(17, 17, 18, 0.05);
}

.cut-soon__mark {
	position: relative;
	display: block;
	width: 110px;
	height: 9px;
	margin: 0 auto 1rem;
	background:
		linear-gradient(90deg, transparent, var(--color-accent-line)) left center / 42px 1px no-repeat,
		linear-gradient(270deg, transparent, var(--color-accent-line)) right center / 42px 1px no-repeat;
}

.cut-soon__mark::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 7px;
	height: 7px;
	margin-left: -4px;
	border: 1px solid var(--color-accent);
	transform: rotate(45deg);
}
.cut-soon__title {
	margin: 0 0 0.35rem;
	font-family: var(--font-serif);
	font-size: var(--text-xl);
	font-weight: var(--weight-semibold);
	line-height: 1.2;
}

.cut-soon__text {
	margin: 0;
	font-size: var(--text-sm);
	line-height: 1.55;
	color: var(--color-text-muted);
}

/* ==========================================================================
   Passe desktop 0.9.32 : netteté, densité des pages catégories, couleurs
   ========================================================================== */

/* Images sources limitées à ~1670 px : sur très grand écran on borne la
   largeur de l'image (bords fondus dans le noir) au lieu de l'agrandir. */
@media (min-width: 1600px) {
	.hero-page__media {
		left: max(46%, calc(100% - 1150px));
		-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 16%);
		mask-image: linear-gradient(90deg, transparent 0, #000 16%);
	}

	.photo-band__media {
		left: 50%;
		right: auto;
		width: min(100%, 1800px);
		transform: translateX(-50%);
		-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
		mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
	}
}

/* Bijoux : "L'éclat dans chaque détail" — la pierre du pendentif reste entière. */
@media (min-width: 768px) {
	.jewel-signature {
		min-height: 470px;
	}

	.jewel-signature .photo-band__media img {
		object-position: 80% 64%;
	}
}

/* Pages catégories : plus de densité, moins de vide. */
@media (min-width: 1024px) {
	.band--tight {
		padding-block: clamp(2rem, 1.6rem + 1.2vw, 3rem);
	}

	.page-jewelry-category .intro-text {
		max-width: 46rem;
		margin-inline: auto;
	}

	.page-jewelry-category .intro-text p {
		font-family: var(--font-serif);
		font-size: var(--text-xl);
		line-height: 1.5;
		color: var(--color-text);
	}

	.detail-cards {
		gap: var(--space-md);
	}

	.detail-card {
		gap: 0.5rem;
		padding: 1.5rem 1.4rem 1.7rem;
		border-radius: 8px;
		box-shadow: 0 1px 2px rgba(17, 17, 18, 0.04), 0 8px 20px rgba(17, 17, 18, 0.05);
		transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
	}

	.detail-card:hover {
		transform: translateY(-2px);
		box-shadow: 0 1px 2px rgba(17, 17, 18, 0.05), 0 14px 28px rgba(17, 17, 18, 0.08);
	}

	.detail-card__label {
		font-size: 1.55rem;
	}

	.detail-card__text {
		font-size: var(--text-base);
		line-height: 1.55;
	}
}

/* Sélections : la largeur des cartes suit le nombre de produits. 1 à 3 -> 3
   colonnes (cartes plus présentes), 4 -> 4, 5 ou 6 -> 3, 7 et plus -> 4. La
   dernière rangée reste centrée. */
@media (min-width: 1024px) {
	.product-grid--pair:not(:has(> :nth-child(4))),
	.product-grid--pair:has(> :nth-child(5)):not(:has(> :nth-child(7))) {
		--cols: 3;
	}

	.product-grid--pair > * {
		max-width: 26rem;
	}
}

/* Pierres : familles de couleur (Blanc, Bleu, Violet…) puis nuances. */
.chip--family {
	gap: 0.5rem;
	padding-inline: 1.15rem;
	background-color: var(--color-surface);
	border-color: rgba(199, 164, 103, 0.45);
}

.chip__swatch {
	display: inline-block;
	width: 11px;
	height: 11px;
	background: var(--swatch, #ccc);
	border: 1px solid rgba(17, 17, 18, 0.22);
	border-radius: 50%;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.chip-row--nuances {
	margin-top: var(--space-sm);
	padding-top: var(--space-sm);
	border-top: 1px solid rgba(199, 164, 103, 0.3);
}

.chip--nuance {
	min-height: 36px;
	font-size: var(--text-xs);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background-color: transparent;
}

/* ==========================================================================
   Pierres : bande "Carat / Couleurs" sombre et immersive (0.9.34)
   ========================================================================== */
.filters-band {
	position: relative;
	padding-block: clamp(3.25rem, 2.4rem + 3vw, 5.5rem);
	background:
		radial-gradient(70% 85% at 50% 0%, rgba(199, 164, 103, 0.14) 0%, rgba(199, 164, 103, 0) 62%),
		radial-gradient(50% 60% at 100% 100%, rgba(199, 164, 103, 0.06) 0%, rgba(199, 164, 103, 0) 70%),
		linear-gradient(180deg, #141413 0%, #1b1a19 52%, #111112 100%);
	border-block: 1px solid rgba(199, 164, 103, 0.3);
}

.filters-band .container {
	max-width: 56rem;
}

.filters-band .section-title {
	color: var(--color-dark-text);
}

.filters-band .section-title--sub {
	margin-top: var(--space-lg);
	padding-top: var(--space-lg);
	border-top: 1px solid rgba(199, 164, 103, 0.18);
}

.filters-band .chip-row {
	gap: 0.6rem;
}

.filters-band .chip {
	min-height: 42px;
	padding-inline: 1.15rem;
	color: rgba(247, 244, 238, 0.9);
	background-color: rgba(247, 244, 238, 0.04);
	border: 1px solid rgba(199, 164, 103, 0.38);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
	transition: background-color var(--transition-base), border-color var(--transition-base), color var(--transition-base), transform var(--transition-base);
}

.filters-band .chip:hover,
.filters-band .chip:focus-visible {
	color: #fff;
	background-color: rgba(199, 164, 103, 0.14);
	border-color: var(--color-accent);
	transform: translateY(-1px);
}

.filters-band .chip.is-active {
	color: var(--color-ink);
	font-weight: var(--weight-semibold);
	background: linear-gradient(180deg, #d8b97f 0%, #c7a467 100%);
	border-color: var(--color-accent-light);
	box-shadow: 0 6px 16px rgba(199, 164, 103, 0.22);
}

.filters-band .chip__swatch {
	border-color: rgba(247, 244, 238, 0.45);
}

.filters-band .chip-row--nuances {
	border-top-color: rgba(199, 164, 103, 0.28);
}

.filters-band .chip--nuance {
	background-color: transparent;
}

.filters-band .chip-reset a {
	color: var(--color-accent-light);
}

@media (max-width: 767px) {
	.filters-band .chip {
		min-height: 40px;
		padding-inline: 0.95rem;
		font-size: var(--text-sm);
	}
}
/* ==========================================================================
   Page Contact (0.9.35) — hero sombre, section « contact privé » anthracite
   (un seul panneau formulaire + photo), bandeau de réassurance, FAQ ivoire.
   Alternance : noir / ivoire / noir. Le champagne reste un accent.
   ========================================================================== */
.page-contact .hero-page {
	min-height: 380px;
}

@media (min-width: 1024px) {
	.page-contact .hero-page {
		min-height: 400px;
	}

	.page-contact .hero-page__media {
		-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 20%);
		mask-image: linear-gradient(90deg, transparent 0, #000 20%);
	}
}

.contact-section {
	position: relative;
	isolation: isolate;
	padding-block: clamp(2.5rem, 2rem + 3vw, 5rem) clamp(2rem, 1.6rem + 2.4vw, 3.75rem);
	background-color: #131211;
	background-image:
		radial-gradient(60% 55% at 12% 0%, rgba(199, 164, 103, 0.11), transparent 70%),
		radial-gradient(45% 50% at 100% 100%, rgba(199, 164, 103, 0.06), transparent 70%),
		linear-gradient(180deg, #131211 0%, #161514 55%, #121211 100%);
	border-top: 1px solid rgba(199, 164, 103, 0.28);
	border-bottom: 1px solid rgba(199, 164, 103, 0.3);
}

.contact-section::before {
	content: "";
	position: absolute;
	top: -1px;
	left: 50%;
	z-index: 1;
	width: 96px;
	height: 1px;
	transform: translateX(-50%);
	background: linear-gradient(90deg, transparent, var(--color-accent-light), transparent);
}

.contact-section .container {
	padding-inline: 1.25rem;
}

.contact-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	max-width: 1240px;
	margin-inline: auto;
}

.contact-intro {
	margin-bottom: clamp(1.5rem, 1.2rem + 1.4vw, 2.25rem);
}

.contact-intro__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.95rem, 1.5rem + 1.7vw, 2.7rem);
	line-height: 1.08;
	color: var(--color-dark-text);
	text-wrap: balance;
}

.contact-intro__text {
	max-width: 60ch;
	text-wrap: pretty;
	margin: 0;
	line-height: 1.6;
	color: #bcb5a8;
}

/* ---- Champs : même largeur, même hauteur, même rythme ---------------------- */
.contact-section .contact-form {
	color-scheme: dark;
}

.contact-form__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0 1.25rem;
}

.contact-section .contact-form .field {
	min-width: 0;
	margin: 0 0 1.2rem;
}

.contact-section .contact-form label {
	display: block;
	margin: 0 0 0.5rem;
	font-size: var(--text-xs);
	font-weight: var(--weight-medium);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #d3ccbf;
	transition: color 250ms var(--ease-luxe);
}

.contact-section .contact-form .field:focus-within label {
	color: var(--color-accent-light);
}

.contact-section .contact-form .field__optional {
	font-size: 0.8125rem;
	font-weight: var(--weight-regular);
	letter-spacing: 0.02em;
	text-transform: none;
	color: #9d968a;
}

.contact-section .contact-form .field :is(input, select, textarea) {
	display: block;
	width: 100%;
	min-height: 52px;
	margin: 0;
	padding: 0.8rem 1rem;
	font-family: var(--font-sans);
	font-size: 1rem;
	line-height: 1.4;
	color: var(--color-dark-text);
	background-color: rgba(247, 244, 238, 0.045);
	border: 1px solid rgba(247, 244, 238, 0.17);
	border-radius: var(--radius-small);
	outline: 2px solid transparent;
	box-shadow: none;
	transition: border-color 250ms var(--ease-luxe), background-color 250ms var(--ease-luxe), box-shadow 250ms var(--ease-luxe);
	-webkit-appearance: none;
	appearance: none;
}

.contact-section .contact-form .field textarea {
	min-height: 150px;
	line-height: 1.55;
	resize: vertical;
}

.contact-section .contact-form .field select {
	padding-right: 2.75rem;
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none' stroke='%23c7a467' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 1.5l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1.1rem center;
	background-size: 14px 9px;
}

.contact-section .contact-form .field select:required:invalid {
	color: #9d968a;
}

.contact-section .contact-form .field select option {
	color: var(--color-dark-text);
	background-color: #1b1a19;
}

.contact-section .contact-form .field :is(input, select, textarea):hover {
	border-color: rgba(199, 164, 103, 0.42);
}

.contact-section .contact-form .field :is(input, select, textarea):focus {
	background-color: rgba(247, 244, 238, 0.07);
	border-color: var(--color-accent);
	box-shadow: 0 0 0 1px rgba(199, 164, 103, 0.55);
}

.contact-section .contact-form .field :is(input, select, textarea):user-invalid {
	border-color: #c8776b;
}

.contact-section .contact-form .field input:-webkit-autofill {
	-webkit-text-fill-color: var(--color-dark-text);
	-webkit-box-shadow: 0 0 0 100px #1f1e1c inset;
	caret-color: var(--color-dark-text);
}

/* ---- Bouton ------------------------------------------------------------------ */
.contact-section .contact-form__submit {
	margin: 1.9rem 0 0;
}

.contact-section .contact-form__submit .button {
	width: 100%;
	min-height: 54px;
	padding: 1rem 2.75rem;
	font-size: 0.8125rem;
	letter-spacing: 0.18em;
	border-radius: var(--radius-small);
}

.contact-section .contact-form__submit .button:hover,
.contact-section .contact-form__submit .button:focus-visible {
	box-shadow: 0 14px 28px -14px rgba(199, 164, 103, 0.55);
}

/* ---- Messages d'état ----------------------------------------------------------- */
.contact-section .form-notice {
	margin: 0 0 1.4rem;
	padding: 0.9rem 1.1rem;
	color: var(--color-dark-text);
	background-color: rgba(247, 244, 238, 0.05);
	border: 1px solid rgba(247, 244, 238, 0.14);
	border-left: 2px solid var(--color-accent);
	border-radius: var(--radius-small);
}

.contact-section .form-notice--error {
	border-left-color: #d0857a;
}

.contact-done {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 320px;
}

.contact-done__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: 1.25rem;
	color: var(--color-accent-light);
	border: 1px solid rgba(199, 164, 103, 0.5);
	border-radius: 50%;
}

.contact-done__again {
	margin: 1.5rem 0 0;
}

.contact-done__again a {
	font-size: var(--text-xs);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-accent-light);
	border-bottom: 1px solid rgba(199, 164, 103, 0.5);
}

.contact-section .contact-card {
	background: none;
	border-color: rgba(199, 164, 103, 0.3);
}

/* ---- Photo : partie de la composition -------------------------------------------- */
.contact-panel__visual {
	display: flex;
	flex-direction: column;
	margin-top: 2rem;
}

.contact-visual {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background-color: #0f0e0d;
	border: 1px solid rgba(199, 164, 103, 0.24);
	border-radius: 4px;
}

.contact-visual img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 88% 50%;
	transition: transform 600ms var(--ease-luxe);
}

.contact-visual::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(17, 17, 18, 0) 55%, rgba(17, 17, 18, 0.38) 100%);
	box-shadow: inset 0 0 0 1px rgba(247, 244, 238, 0.04);
}

.contact-caption {
	padding: 1rem 0.5rem 0;
	text-align: center;
}

.contact-caption__note {
	max-width: 34ch;
	margin: 0 auto;
	font-family: var(--font-serif);
	font-size: clamp(1.15rem, 1.05rem + 0.4vw, 1.3rem);
	font-style: italic;
	line-height: 1.4;
	color: #c8c0b1;
}

.contact-caption__line {
	margin: 0.9rem 0 0;
	font-size: var(--text-sm);
	color: var(--color-dark-text);
}

.contact-caption__line span {
	display: block;
	font-size: var(--text-xs);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #9d968a;
}

.contact-section .contact-caption__social {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin: 0.9rem 0 0;
}

/* ---- Réassurance discrète ------------------------------------------------------------ */
.contact-section .contact-assurances {
	display: flex;
	flex-direction: column;
	max-width: 1240px;
	margin: clamp(1.5rem, 1.2rem + 1.4vw, 2.5rem) auto 0;
	padding: 0;
	list-style: none;
}

.contact-assurances li {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.9rem 0;
	font-size: var(--text-xs);
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: #d3ccbf;
	border-top: 1px solid rgba(199, 164, 103, 0.18);
}

.contact-assurances li svg {
	flex: none;
	color: var(--color-accent);
}

/* ---- FAQ ivoire ------------------------------------------------------------------------- */
.contact-faq {
	position: relative;
	padding-block: clamp(3.25rem, 2.4rem + 3.6vw, 5.75rem) clamp(3rem, 2.2rem + 3.2vw, 5rem);
	background-color: var(--color-bg);
	box-shadow: inset 0 28px 40px -34px rgba(17, 17, 18, 0.2);
}

.contact-faq::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 9px;
	height: 9px;
	background-color: var(--color-bg);
	border: 1px solid var(--color-accent);
	transform: translate(-50%, -50%) rotate(45deg);
}

.contact-faq .container {
	padding-inline: 1.25rem;
}

.contact-faq__head {
	text-align: center;
}

.contact-faq__head .eyebrow {
	color: #7a6132;
}

.contact-faq__title {
	margin: 0;
	font-size: clamp(2rem, 1.6rem + 1.8vw, 3rem);
	line-height: 1.1;
	color: var(--color-ink);
}

:is(.page-contact, .page-guide .guide-faq, .page-guide .guide-more-band) .faq-list {
	display: block;
	max-width: 780px;
	margin: clamp(1.75rem, 1.4rem + 1.4vw, 2.75rem) auto 0;
	border-top: 1px solid rgba(143, 116, 64, 0.32);
}

:is(.page-contact, .page-guide .guide-faq, .page-guide .guide-more-band) .faq-item {
	padding: 0;
	border-bottom: 1px solid rgba(143, 116, 64, 0.28);
}

:is(.page-contact, .page-guide .guide-faq, .page-guide .guide-more-band) .faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: 44px;
	padding: 1.3rem 0;
	font-family: var(--font-serif);
	font-size: clamp(1.2rem, 1.1rem + 0.5vw, 1.45rem);
	font-weight: var(--weight-medium);
	line-height: 1.3;
	color: var(--color-ink);
	cursor: pointer;
	list-style: none;
	transition: color 250ms var(--ease-luxe);
}

:is(.page-contact, .page-guide .guide-faq, .page-guide .guide-more-band) .faq-item summary:focus-visible {
	outline: 2px solid #7a6132;
	outline-offset: 4px;
}

:is(.page-contact, .page-guide .guide-faq, .page-guide .guide-more-band) .faq-item summary::after,
:is(.page-contact, .page-guide .guide-faq, .page-guide .guide-more-band) .faq-item[open] summary::after {
	content: "";
	float: none;
	flex: none;
	width: 14px;
	height: 14px;
	color: #7a6132;
	background:
		linear-gradient(currentColor, currentColor) center / 100% 1px no-repeat,
		linear-gradient(currentColor, currentColor) center / 1px 100% no-repeat;
	transition: background-size 300ms var(--ease-luxe);
}

:is(.page-contact, .page-guide .guide-faq, .page-guide .guide-more-band) .faq-item[open]:not(.is-closing) summary::after {
	background-size: 100% 1px, 1px 0;
}

:is(.page-contact, .page-guide .guide-faq, .page-guide .guide-more-band) .faq-item p {
	max-width: 62ch;
	margin: 0;
	padding: 0 3rem 1.5rem 0;
	line-height: 1.7;
	color: #5c564d;
}

:is(.page-contact, .page-guide .guide-faq, .page-guide .guide-more-band) .faq-item[open]:not(.is-closing) p {
	animation: hoaji-faq-in 380ms var(--ease-luxe) both;
}

@keyframes hoaji-faq-in {
	from {
		opacity: 0;
		transform: translateY(-4px);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.contact-faq__more {
	margin: 2rem 0 0;
	text-align: center;
}

.contact-faq__more a {
	padding-bottom: 0.3rem;
	font-size: var(--text-xs);
	font-weight: var(--weight-medium);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #6b5428;
	border-bottom: 1px solid rgba(143, 116, 64, 0.5);
	transition: color 250ms var(--ease-luxe), border-color 250ms var(--ease-luxe);
}

.contact-faq__more a:hover,
.contact-faq__more a:focus-visible {
	color: var(--color-ink);
	border-color: var(--color-ink);
}

/* ---- Tablette ---------------------------------------------------------------------------- */
@media (min-width: 640px) {
	.contact-form__row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.contact-section .contact-form__row .field__optional {
		display: block;
		margin-top: 0.2rem;
	}
}

@media (min-width: 640px) and (max-width: 1023px) {
	.contact-visual {
		aspect-ratio: 16 / 9;
	}

	.contact-section .contact-form__submit .button {
		width: auto;
	}
}

/* ---- Desktop : une seule composition 58 / 42 --------------------------------------------- */
@media (min-width: 1024px) {
	.contact-intro__text {
		text-wrap: balance;
	}

	.contact-panel {
		grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.88fr);
		overflow: hidden;
		background: linear-gradient(180deg, #1b1a18 0%, #151413 100%);
		border: 1px solid rgba(199, 164, 103, 0.24);
		border-radius: 4px;
		box-shadow: 0 34px 80px -30px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(247, 244, 238, 0.05);
	}

	.contact-panel__form {
		padding: clamp(2.5rem, 1.6rem + 2.6vw, 3.75rem) clamp(2.5rem, 1.2rem + 3.6vw, 4.5rem);
	}

	.contact-panel__visual {
		margin-top: 0;
		border-left: 1px solid rgba(199, 164, 103, 0.22);
	}

	.contact-visual {
		flex: 1 1 auto;
		aspect-ratio: auto;
		min-height: 420px;
		border: 0;
		border-radius: 0;
	}

	.contact-visual img {
		object-position: 92% 50%;
	}

	.contact-visual::after {
		background:
			linear-gradient(90deg, rgba(21, 20, 19, 0.5) 0%, rgba(21, 20, 19, 0) 26%),
			linear-gradient(180deg, rgba(17, 17, 18, 0) 60%, rgba(17, 17, 18, 0.45) 100%);
	}

	.contact-caption {
		padding: 1.4rem 2rem 1.6rem;
		background-color: #161514;
		border-top: 1px solid rgba(199, 164, 103, 0.22);
	}

	.contact-section .contact-form__submit .button {
		width: auto;
	}

	.contact-section .contact-assurances {
		flex-direction: row;
		justify-content: center;
	}

	.contact-assurances li {
		padding: 0.25rem clamp(1.25rem, 0.4rem + 2.6vw, 2.75rem);
		border-top: 0;
	}

	.contact-assurances li + li {
		border-left: 1px solid rgba(199, 164, 103, 0.28);
	}
}

@media (min-width: 1920px) {
	.contact-panel,
	.contact-assurances {
		max-width: 1320px;
	}
}

@media (hover: hover) and (pointer: fine) {
	.contact-panel__visual:hover .contact-visual img {
		transform: scale(1.01);
	}

	:is(.page-contact, .page-guide .guide-faq, .page-guide .guide-more-band) .faq-item summary:hover {
		color: #7a6132;
	}
}

@media (prefers-reduced-motion: reduce) {
	.contact-visual img,
	.contact-section .contact-form .field :is(input, select, textarea),
	:is(.page-contact, .page-guide .guide-faq, .page-guide .guide-more-band) .faq-item summary::after {
		transition: none;
	}

	.contact-panel__visual:hover .contact-visual img {
		transform: none;
	}

	:is(.page-contact, .page-guide .guide-faq, .page-guide .guide-more-band) .faq-item[open] p {
		animation: none;
	}
}
/* ==========================================================================
   Guide (0.9.36) — rythme éditorial : intro calme, repères, forme choisie,
   tableau, ressources sombres, FAQ ivoire.
   ========================================================================== */
.eyebrow--center {
	text-align: center;
}

.guide-intro .intro-text {
	text-align: center;
}

.guide-intro .intro-text .eyebrow {
	margin-bottom: 0.9rem;
	font-family: var(--font-sans);
	font-size: var(--text-xs);
	font-weight: var(--weight-semibold);
	letter-spacing: 0.22em;
	line-height: 1.4;
	color: #7a6132;
}

.guide-intro .intro-text > p:not(.eyebrow) {
	max-width: 46ch;
	margin-inline: auto;
	font-size: clamp(1.2rem, 1.08rem + 0.6vw, 1.5rem);
	line-height: 1.6;
	letter-spacing: 0;
	text-wrap: balance;
}

.guide-reperes {
	background-color: #fbfaf7;
	border-block: 1px solid rgba(199, 164, 103, 0.3);
}

.guide-reperes .guide-list {
	margin-inline: auto;
}

.guide-item {
	transition: background-color 400ms var(--ease-luxe), box-shadow 400ms var(--ease-luxe);
}

.guide-item[open] {
	background: linear-gradient(90deg, rgba(199, 164, 103, 0.11), rgba(199, 164, 103, 0) 70%);
	box-shadow: inset 2px 0 0 var(--color-accent);
}

/* Le retrait en cascade du titre n'existe que sur bureau : sur mobile, ouvrir un repère ne déplace jamais l'en-tête. */
@media (min-width: 1024px) {
	.guide-item__head {
		transition: background-color var(--transition-base), padding-left 420ms var(--ease-luxe);
	}

	.guide-item[open] > .guide-item__head {
		padding-left: calc(var(--space-sm) + 0.75rem);
	}
}

/* ---- « Choisissez une forme » : quatre pierres, un vrai moment ---- */
.page-guide .photo-band {
	min-height: 420px;
}

.page-guide .photo-band__inner {
	padding-block: clamp(3rem, 2.4rem + 2.4vw, 4.75rem);
}

.page-guide .photo-band__scrim {
	background: radial-gradient(75% 95% at 50% 50%, rgba(17, 17, 18, 0.78), rgba(17, 17, 18, 0.9));
}

.page-guide .photo-band .section-title {
	margin-bottom: 0.6rem;
	font-size: clamp(2rem, 1.6rem + 1.8vw, 3rem);
	text-align: center;
}

.photo-band__text {
	max-width: 58ch;
	text-wrap: balance;
	margin: 0.9rem auto 0;
	color: #cfc8ba;
	line-height: 1.6;
}

.photo-band .forme-picks {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem clamp(1.25rem, 0.6rem + 2.8vw, 3.5rem);
	margin: clamp(1.75rem, 1.4rem + 1.4vw, 2.75rem) 0 0;
	padding: 0;
	list-style: none;
}

.forme-pick {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.85rem;
	color: var(--color-dark-text);
	text-decoration: none;
}

.forme-pick__disc {
	display: block;
	width: clamp(84px, 5.6vw, 108px);
	aspect-ratio: 1;
	padding: 3px;
	overflow: hidden;
	background: var(--color-ink);
	border: 1px solid rgba(199, 164, 103, 0.6);
	border-radius: 50%;
	box-shadow: 0 0 0 5px rgba(199, 164, 103, 0.08), 0 16px 30px -14px rgba(0, 0, 0, 0.85);
	transition: transform 400ms var(--ease-luxe), border-color 400ms var(--ease-luxe), box-shadow 400ms var(--ease-luxe);
}

.forme-pick__disc img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: var(--sx, 50%) var(--sy, 50%);
	border-radius: 50%;
	transform: scale(var(--z, 1.2));
	transition: transform 500ms var(--ease-luxe);
}

.forme-pick__label {
	font-size: var(--text-xs);
	font-weight: var(--weight-medium);
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

@media (hover: hover) and (pointer: fine) {
	.forme-pick:hover .forme-pick__disc,
	.forme-pick:focus-visible .forme-pick__disc {
		transform: translateY(-3px);
		border-color: var(--color-accent-light);
		box-shadow: 0 0 0 6px rgba(199, 164, 103, 0.14), 0 20px 34px -14px rgba(0, 0, 0, 0.9);
	}

	.forme-pick:hover .forme-pick__disc img {
		transform: scale(calc(var(--z, 1.2) * 1.05));
	}
}

/* ---- Tableau comparatif : lignes fines, pas de « tableau WordPress » ---- */
.page-guide .compare {
	max-width: 860px;
	margin-inline: auto;
}

.page-guide .compare > p {
	max-width: 62ch;
	margin-inline: auto;
	text-align: center;
	line-height: 1.7;
}

.page-guide .compare table {
	margin: 1.5rem 0;
	background: transparent;
	border: 0;
	border-top: 1px solid rgba(143, 116, 64, 0.55);
	border-bottom: 1px solid rgba(143, 116, 64, 0.55);
}

.page-guide .compare caption {
	padding-bottom: 0.75rem;
	text-align: center;
	letter-spacing: 0.02em;
}

.page-guide .compare th,
.page-guide .compare td {
	padding: 1.05rem 1.1rem;
	border-bottom: 1px solid rgba(143, 116, 64, 0.16);
}

.page-guide .compare thead th {
	padding-block: 1.15rem;
	font-size: var(--text-xs);
	font-weight: var(--weight-semibold);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #7a6132;
	background: transparent;
	border-bottom: 1px solid rgba(143, 116, 64, 0.4);
}

.page-guide .compare tbody tr:last-child td,
.page-guide .compare tbody tr:last-child th {
	border-bottom: 0;
}

.page-guide .compare tbody td:first-child,
.page-guide .compare tbody th:first-child {
	font-family: var(--font-serif);
	font-size: 1.15rem;
	font-weight: var(--weight-medium);
	color: var(--color-ink);
}

/* ---- Ressources (sombre) et FAQ (ivoire) ---- */
.guide-more-band {
	background: linear-gradient(180deg, #151413 0%, #111112 100%);
	border-block: 1px solid rgba(199, 164, 103, 0.22);
}

.guide-more-band .eyebrow {
	color: var(--color-accent-light);
}

.page-guide .guide-more-band .faq-list {
	border-top-color: rgba(199, 164, 103, 0.32);
}

.page-guide .guide-more-band .faq-item {
	border-bottom-color: rgba(199, 164, 103, 0.22);
}

.page-guide .guide-more-band .faq-item summary {
	color: var(--color-dark-text);
}

.page-guide .guide-more-band .faq-item summary::after,
.page-guide .guide-more-band .faq-item[open] summary::after {
	color: var(--color-accent-light);
}

.page-guide .guide-more-band .faq-item p,
.page-guide .guide-more-band .faq-item__body {
	color: #bcb5a8;
}

.page-guide .guide-more-band .faq-item__body p {
	padding: 0 3rem 1.5rem 0;
}

.page-guide .guide-more-band .faq-item summary:focus-visible {
	outline-color: var(--color-accent-light);
}

.guide-faq {
	background-color: var(--color-bg);
}

.guide-faq .eyebrow {
	color: #7a6132;
}

@media (hover: hover) and (pointer: fine) {
	.page-guide .guide-more-band .faq-item summary:hover {
		color: var(--color-accent-light);
	}
}

@media (prefers-reduced-motion: reduce) {
	.guide-item,
	.guide-item__head,
	.forme-pick__disc,
	.forme-pick__disc img {
		transition: none;
	}
}
/* ==========================================================================
   0.9.36 — Pierres, Boutique, micro-interactions communes
   ========================================================================== */
:root {
	--head-gap: clamp(1.75rem, 1.4rem + 1.4vw, 2.75rem);
}

.shop-head {
	margin-bottom: var(--head-gap);
	text-align: center;
}

.shop-head .section-title {
	margin: 0;
}

/* ---- Sélecteurs (puces) : plus proches d'un outil de joaillerie -------------- */
.chip {
	font-size: var(--text-xs);
	font-weight: var(--weight-medium);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border-radius: 2px;
	transition: background-color 300ms var(--ease-luxe), border-color 300ms var(--ease-luxe), color 300ms var(--ease-luxe), transform 300ms var(--ease-luxe);
}

.filters-band .chip {
	min-height: 42px;
	padding-inline: 1.25rem;
	border-radius: 2px;
}

.filters-band .section-title {
	font-size: clamp(1.75rem, 1.45rem + 1.2vw, 2.4rem);
}

.filters-band .eyebrow {
	color: var(--color-accent-light);
}

.chip--nuance {
	text-transform: none;
	letter-spacing: 0.02em;
	font-size: var(--text-sm);
}

/* ---- Pierres : « Lire une pierre » et appel final ------------------------------ */
.page-pierres .detail-card__label::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-right: 0.65rem;
	background-color: var(--color-accent);
	transform: rotate(45deg) translateY(-3px);
}

.page-pierres .detail-card {
	transition: transform 350ms var(--ease-luxe), box-shadow 350ms var(--ease-luxe), border-color 350ms var(--ease-luxe);
}

.detail-note {
	letter-spacing: 0.04em;
}

.band--dark .band__cta .button--slim-inverse::after,
.guide-more-band .band__cta .button--slim-inverse::after {
	content: "\2192";
	margin-left: 0.7rem;
	transition: transform 300ms var(--ease-luxe);
}

/* ---- Boutique : catégories (ivoire, cartes éditoriales) ------------------------- */
.shop-cats {
	margin-top: 0;
	padding-block: clamp(3rem, 2.3rem + 3vw, 5.25rem);
	background-color: #fbfaf7;
	border-block: 1px solid rgba(199, 164, 103, 0.3);
}

.shop-cats .jewel-card__media {
	background-color: #151413;
	border-color: rgba(199, 164, 103, 0.22);
}

.shop-cats .jewel-card__label {
	align-items: center;
	justify-content: space-between;
	padding: 0.85rem 0.15rem 0;
}

.shop-cats .jewel-card__name {
	font-family: var(--font-serif);
	font-size: 1.25rem;
	font-weight: var(--weight-medium);
	letter-spacing: 0;
	text-transform: none;
}

.shop-cats .jewel-card__more {
	display: inline-block;
	transition: transform 350ms var(--ease-luxe), color 350ms var(--ease-luxe);
}

@media (min-width: 1024px) {
	.shop-cats .jewel-cats--six {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 2.25rem 1.75rem;
		max-width: 1120px;
		margin-inline: auto;
	}

	.shop-cats .jewel-card__media {
		aspect-ratio: 1 / 1;
	}

	.shop-cats .jewel-card__label {
		flex-direction: row;
		gap: 1rem;
		padding-bottom: 0.85rem;
		border-bottom: 1px solid rgba(143, 116, 64, 0.28);
	}

	.shop-cats .jewel-cats--six .jewel-card__name {
		font-size: 1.4rem;
	}

	.shop-cats .jewel-card__more {
		font-size: var(--text-xs);
		letter-spacing: 0.16em;
		text-transform: uppercase;
		color: #7a6132;
	}
}

@media (hover: hover) and (pointer: fine) {
	.shop-cats .jewel-card:hover .jewel-card__more {
		transform: translateX(5px);
		color: var(--color-ink);
	}

	.shop-cats .jewel-card:hover .jewel-card__media,
	.shop-cats .jewel-card:focus-visible .jewel-card__media {
		border-color: rgba(199, 164, 103, 0.7);
		box-shadow: 0 22px 40px -22px rgba(17, 17, 18, 0.5), 0 0 0 1px rgba(199, 164, 103, 0.18);
	}
}

/* ---- Boutique : sélection Hoaji (sombre) ----------------------------------------- */
.shop-selection {
	position: relative;
	padding-block: clamp(3.25rem, 2.4rem + 3.4vw, 5.75rem);
	background:
		radial-gradient(60% 70% at 50% 0%, rgba(199, 164, 103, 0.1), rgba(199, 164, 103, 0) 70%),
		linear-gradient(180deg, #151413 0%, #101011 100%);
	border-bottom: 1px solid rgba(199, 164, 103, 0.28);
}

.shop-selection .eyebrow {
	color: var(--color-accent-light);
}

.shop-selection .product-card__media {
	border-color: rgba(199, 164, 103, 0.2);
	box-shadow: 0 18px 34px -20px rgba(0, 0, 0, 0.8);
}

.shop-selection .product-card__price {
	color: var(--color-accent-light);
}

/* ---- Boutique : catalogue (ivoire, sobre) ------------------------------------------ */
.shop-catalogue {
	background-color: var(--color-bg);
}

.shop-catalogue .shop-filters {
	padding: 0;
	background: transparent;
	border: 0;
	border-block: 1px solid rgba(143, 116, 64, 0.35);
	border-radius: 0;
}

.shop-catalogue .shop-filters summary {
	min-height: 56px;
	letter-spacing: 0.2em;
	color: var(--color-ink);
}

.shop-catalogue .shop-filters__group {
	border-top-color: rgba(143, 116, 64, 0.18);
	padding-block: 1.1rem;
}

.shop-catalogue .chip {
	background: transparent;
	border-color: rgba(143, 116, 64, 0.35);
}

.shop-catalogue .chip:hover,
.shop-catalogue .chip:focus-visible {
	border-color: #7a6132;
	background-color: rgba(199, 164, 103, 0.1);
}

.shop-catalogue .chip.is-active {
	color: var(--color-ink);
	background-color: var(--color-accent);
	border-color: var(--color-accent);
}

.shop-catalogue .shop-sort {
	margin-block: 1.25rem 1.75rem;
}

.shop-catalogue .shop-sort select {
	min-height: 44px;
	padding: 0 2.5rem 0 1rem;
	font-size: var(--text-xs);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-ink);
	background-color: transparent;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none' stroke='%237a6132' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 1.5l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 14px 9px;
	border: 1px solid rgba(143, 116, 64, 0.35);
	border-radius: 2px;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
}

.shop-catalogue .shop-sort select:focus {
	outline: 2px solid transparent;
	border-color: var(--color-accent);
	box-shadow: 0 0 0 1px rgba(199, 164, 103, 0.55);
}

.woocommerce nav.woocommerce-pagination {
	margin-top: var(--space-lg);
}

.woocommerce nav.woocommerce-pagination ul {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
	border: 0;
	float: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0;
	font-size: var(--text-sm);
	border: 1px solid rgba(143, 116, 64, 0.3);
	border-radius: 2px;
	transition: background-color 300ms var(--ease-luxe), border-color 300ms var(--ease-luxe);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
	color: var(--color-ink);
	background-color: var(--color-accent);
	border-color: var(--color-accent);
	box-shadow: none;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li a:focus {
	background-color: rgba(199, 164, 103, 0.12);
	border-color: #7a6132;
	box-shadow: none;
}

/* ---- Micro-interactions communes (bureau uniquement, 250-450 ms) ------------------- */
.product-card__media img {
	transition: transform 450ms var(--ease-luxe);
}

.product-card__media {
	transition: box-shadow 350ms var(--ease-luxe), border-color 350ms var(--ease-luxe), transform 350ms var(--ease-luxe);
}

@media (hover: hover) and (pointer: fine) {
	.product-card:hover .product-card__media,
	.product-card:focus-visible .product-card__media {
		transform: translateY(-3px);
	}

	.product-card:hover .product-card__media img {
		transform: scale(1.025);
	}

	.jewel-card:hover .jewel-card__media img,
	.jewel-card:focus-visible .jewel-card__media img {
		transform: scale(1.025);
	}

	.band--dark .band__cta .button--slim-inverse:hover::after,
	.band--dark .band__cta .button--slim-inverse:focus-visible::after {
		transform: translateX(4px);
	}

	.shape-card:hover,
	.shape-card:focus-visible {
		transform: translateY(-3px);
		border-color: rgba(199, 164, 103, 0.75);
		box-shadow: 0 0 0 1px rgba(199, 164, 103, 0.16), 0 20px 36px -20px rgba(17, 17, 18, 0.35);
	}
}

@media (prefers-reduced-motion: reduce) {
	.product-card:hover .product-card__media,
	.shape-card:hover,
	.jewel-card:hover .jewel-card__media {
		transform: none;
	}
}
/* ==========================================================================
   0.9.37 — Contact : lumière, profondeur, matière (halo, carte, reflets)
   Tout est très lent (400-800 ms) et quasi imperceptible ; rien de continu
   hormis un souffle de lumière de 10 s autour de la bague.
   ========================================================================== */
.contact-section {
	overflow-x: clip;
}

.contact-section .container {
	position: relative;
}

/* Halo champagne / brun chaud derrière la carte : elle semble flotter. */
.contact-section .container::before {
	content: "";
	position: absolute;
	inset: -10% -6% -14%;
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(50% 56% at 50% 46%, rgba(199, 164, 103, 0.22) 0%, rgba(150, 104, 58, 0.11) 50%, rgba(150, 104, 58, 0) 80%);
	filter: blur(18px);
}

.contact-panel,
.contact-assurances {
	position: relative;
	z-index: 1;
}

@media (min-width: 1024px) {
	.contact-panel {
		background:
			radial-gradient(70% 38% at 28% 0%, rgba(199, 164, 103, 0.06), rgba(199, 164, 103, 0) 70%),
			linear-gradient(180deg, #1c1b19 0%, #141312 100%);
		border-color: rgba(199, 164, 103, 0.34);
		box-shadow:
			0 60px 120px -44px rgba(0, 0, 0, 0.9),
			0 22px 46px -24px rgba(0, 0, 0, 0.65),
			inset 0 1px 0 rgba(255, 236, 200, 0.09),
			inset 0 0 0 1px rgba(255, 255, 255, 0.015);
	}

	/* Séparation formulaire / photo : filet lumineux + ombre portée côté formulaire. */
	.contact-panel__visual {
		position: relative;
		border-left: 0;
		box-shadow: -34px 0 56px -34px rgba(0, 0, 0, 0.7);
	}

	.contact-panel__visual::before {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		z-index: 3;
		width: 1px;
		pointer-events: none;
		background: linear-gradient(180deg, rgba(226, 201, 148, 0) 0%, rgba(226, 201, 148, 0.6) 32%, rgba(226, 201, 148, 0.34) 70%, rgba(226, 201, 148, 0) 100%);
	}
}

/* Lueur localisée autour de la bague (la pierre devient une source de lumière). */
.contact-visual {
	--gx: 74%;
	--gy: 54%;
}

@media (min-width: 1024px) {
	.contact-visual {
		--gx: 50%;
	}
}

.contact-visual::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	mix-blend-mode: screen;
	background: radial-gradient(circle at var(--gx) var(--gy), rgba(255, 228, 176, 0.24) 0%, rgba(255, 228, 176, 0.09) 20%, rgba(255, 228, 176, 0) 44%);
	animation: hoaji-breathe 10s ease-in-out infinite alternate;
}

@keyframes hoaji-breathe {
	from {
		opacity: 0.7;
	}

	to {
		opacity: 1;
	}
}

/* Éclats : un reflet traverse rarement les filets dorés (≈ 0,8 s toutes les 14 s). */
.contact-section::before {
	width: 120px;
	background:
		linear-gradient(100deg, rgba(255, 246, 225, 0) 0 42%, rgba(255, 246, 225, 0.95) 50%, rgba(255, 246, 225, 0) 58% 100%) 160% 0 / 300% 100% no-repeat,
		linear-gradient(90deg, transparent, var(--color-accent-light), transparent);
	animation: hoaji-glint 14s ease-in-out 3s infinite;
}

@keyframes hoaji-glint {
	0% {
		background-position: 160% 0, 0 0;
	}

	5.5%,
	100% {
		background-position: -60% 0, 0 0;
	}
}

/* Reflet qui traverse occasionnellement le bouton (≈ 0,8 s toutes les 13 s). */
.contact-section .contact-form__submit .button::after {
	animation: hoaji-btn-sheen 13s ease-in-out 5s infinite;
}

.contact-section .contact-form__submit .button:hover::after,
.contact-section .contact-form__submit .button:focus-visible::after {
	animation: none;
}

@keyframes hoaji-btn-sheen {
	0% {
		transform: translateX(-120%);
	}

	6% {
		transform: translateX(120%);
	}

	6.01%,
	100% {
		transform: translateX(-120%);
	}
}

/* Focus premium : filet champagne plus lumineux + glow très discret. */
.contact-section .contact-form .field :is(input, select, textarea) {
	transition: border-color 500ms var(--ease-luxe), background-color 500ms var(--ease-luxe), box-shadow 600ms var(--ease-luxe);
}

.contact-section .contact-form .field :is(input, select, textarea):focus {
	background-color: rgba(247, 244, 238, 0.075);
	border-color: var(--color-accent-light);
	box-shadow: 0 0 0 1px rgba(226, 201, 148, 0.7), 0 0 20px rgba(199, 164, 103, 0.17);
}

/* Bandeau de réassurance : profondeur, lueur centrale, filet + petit diamant. */
.contact-section .contact-assurances {
	padding-top: 1.75rem;
	background: radial-gradient(55% 130% at 50% 0%, rgba(199, 164, 103, 0.1) 0%, rgba(199, 164, 103, 0) 72%);
}

.contact-assurances::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: min(560px, 80%);
	height: 1px;
	transform: translateX(-50%);
	background:
		linear-gradient(100deg, rgba(255, 246, 225, 0) 0 42%, rgba(255, 246, 225, 0.9) 50%, rgba(255, 246, 225, 0) 58% 100%) 160% 0 / 300% 100% no-repeat,
		linear-gradient(90deg, transparent, rgba(226, 201, 148, 0.55) 50%, transparent);
	animation: hoaji-glint 14s ease-in-out 9s infinite;
}

.contact-assurances::after {
	content: "";
	position: absolute;
	top: -3px;
	left: 50%;
	width: 7px;
	height: 7px;
	background-color: #131211;
	border: 1px solid var(--color-accent-light);
	transform: translateX(-50%) rotate(45deg);
}

@media (prefers-reduced-motion: reduce) {
	.contact-section::before,
	.contact-assurances::before,
	.contact-visual::before,
	.contact-section .contact-form__submit .button::after {
		animation: none;
	}
}

/* ==========================================================================
   0.9.37 — « Les détails qui comptent » / « Lire une pierre » et
   « Conseil d'entretien » : relief, matière, lumière (toutes les pages).
   ========================================================================== */
.band--soft:has(.detail-cards) {
	background:
		radial-gradient(70% 90% at 50% 0%, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 72%),
		linear-gradient(180deg, #f2efe8 0%, #ebe7de 100%);
}

.detail-card {
	position: relative;
	overflow: hidden;
	padding: 1.6rem 1.35rem 1.85rem;
	background: linear-gradient(165deg, #fffdf9 0%, #f8f4ec 100%);
	border: 1px solid rgba(199, 164, 103, 0.38);
	border-top-color: rgba(199, 164, 103, 0.75);
	border-radius: 6px;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.95),
		inset 0 -1px 0 rgba(143, 116, 64, 0.08),
		0 2px 4px rgba(17, 17, 18, 0.04),
		0 18px 36px -18px rgba(17, 17, 18, 0.24);
	transition: transform 500ms var(--ease-luxe), box-shadow 600ms var(--ease-luxe), border-color 600ms var(--ease-luxe);
}

/* Reflet doux dans l'angle : matière satinée, pas un aplat. */
.detail-card::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(120% 70% at 0% 0%, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 60%);
}

/* Balayage de lumière lent, uniquement au survol. */
.detail-card::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(115deg, transparent 42%, rgba(255, 244, 220, 0.5) 50%, transparent 58%);
	transform: translateX(-120%);
	transition: transform 900ms var(--ease-luxe);
}

.detail-card > * {
	position: relative;
	z-index: 1;
}

.detail-card__label {
	font-size: 1.5rem;
	font-weight: var(--weight-semibold);
	color: var(--color-ink);
}

.detail-card__label::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-right: 0.65rem;
	background-color: var(--color-accent);
	transform: rotate(45deg) translateY(-3px);
}

.detail-card__text {
	margin-top: 0.15rem;
	color: #5c564d;
}

@media (min-width: 1024px) {
	.detail-card {
		padding: 1.9rem 1.6rem 2.1rem;
		border-radius: 6px;
	}

	.detail-card__label {
		font-size: 1.65rem;
	}
}

@media (hover: hover) and (pointer: fine) {
	.detail-card:hover {
		transform: translateY(-4px);
		border-color: rgba(199, 164, 103, 0.7);
		box-shadow:
			inset 0 1px 0 rgba(255, 255, 255, 0.95),
			inset 0 -1px 0 rgba(143, 116, 64, 0.1),
			0 2px 4px rgba(17, 17, 18, 0.05),
			0 28px 48px -20px rgba(17, 17, 18, 0.34),
			0 0 0 1px rgba(199, 164, 103, 0.14);
	}

	.detail-card:hover::after {
		transform: translateX(120%);
	}
}

/* Conseil d'entretien : encart joaillerie, halo chaud derrière. */
.band--tight:has(.care-note) {
	padding-block: clamp(2.5rem, 2rem + 2.4vw, 4.25rem);
	background: radial-gradient(48% 110% at 50% 50%, rgba(199, 164, 103, 0.16) 0%, rgba(199, 164, 103, 0.05) 55%, rgba(199, 164, 103, 0) 78%);
}

.care-note {
	position: relative;
	max-width: 720px;
	margin-inline: auto;
	padding: 2.25rem 2rem 2.4rem;
	background: linear-gradient(170deg, #fffdf9 0%, #f6f1e7 100%);
	border: 1px solid rgba(199, 164, 103, 0.55);
	border-radius: 6px;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.95),
		inset 0 0 0 1px rgba(255, 255, 255, 0.4),
		0 2px 4px rgba(17, 17, 18, 0.04),
		0 26px 52px -24px rgba(90, 60, 20, 0.36);
}

/* Double filet intérieur : l'encart ressemble à un écrin. */
.care-note::before {
	content: "";
	position: absolute;
	inset: 7px;
	pointer-events: none;
	border: 1px solid rgba(199, 164, 103, 0.24);
	border-radius: 3px;
}

.care-note__icon {
	display: block;
	margin-bottom: 0.55rem;
	color: #8f7440;
}

.care-note__icon svg {
	display: inline-block;
}

.care-note__label {
	margin-bottom: 0;
	color: #7a6132;
	font-size: var(--text-xs);
	letter-spacing: 0.24em;
}

.care-note__rule {
	position: relative;
	display: block;
	width: 132px;
	height: 1px;
	margin: 0.9rem auto 1.1rem;
	background: linear-gradient(90deg, transparent, rgba(199, 164, 103, 0.75), transparent);
}

.care-note__rule::after {
	content: "";
	position: absolute;
	top: -3px;
	left: 50%;
	width: 7px;
	height: 7px;
	background-color: #fbf8f1;
	border: 1px solid var(--color-accent);
	transform: translateX(-50%) rotate(45deg);
}

.care-note p {
	max-width: 46ch;
	font-size: var(--text-base);
	line-height: 1.7;
	color: #4c473f;
	text-wrap: balance;
}

@media (max-width: 767px) {
	.care-note {
		padding: 1.85rem 1.35rem 2rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.detail-card,
	.detail-card::after {
		transition: none;
	}

	.detail-card:hover {
		transform: none;
	}
}
/* ==========================================================================
   0.9.38 — Système Hoaji : 3 effets réutilisables, sections sombres,
   À propos, catégories bijoux, comparatif, transitions.
   La retenue fait le luxe : chaque effet n'est posé qu'à quelques endroits.
   ========================================================================== */

/* 1. Hoaji soft glow — halo radial très léger derrière un titre ou une carte. */
.hoaji-glow {
	position: relative;
	isolation: isolate;
}

.hoaji-glow::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: -1;
	width: min(760px, 92%);
	height: min(380px, 92%);
	transform: translate(-50%, -50%);
	pointer-events: none;
	background: radial-gradient(closest-side, rgba(199, 164, 103, 0.14) 0%, rgba(150, 104, 58, 0.06) 58%, rgba(150, 104, 58, 0) 100%);
	filter: blur(10px);
}

/* 2. Hoaji premium hover — légère élévation, bordure plus visible, transition lente. */
.hoaji-lift {
	transition: transform 500ms var(--ease-luxe), border-color 600ms var(--ease-luxe), box-shadow 600ms var(--ease-luxe);
}

@media (hover: hover) and (pointer: fine) {
	.hoaji-lift:hover {
		transform: translateY(-3px);
		border-color: rgba(199, 164, 103, 0.75);
		box-shadow: 0 26px 46px -22px rgba(17, 17, 18, 0.34), 0 0 0 1px rgba(199, 164, 103, 0.14);
	}
}

/* 3. Hoaji subtle shine — reflet champagne qui traverse rarement un bouton (≈ 0,8 s / 14 s). */
.hoaji-shine,
.about-cta .button,
.page-jewelry-category .band--dark .button {
	position: relative;
	overflow: hidden;
}

.hoaji-shine::before,
.about-cta .button::before,
.page-jewelry-category .band--dark .button::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(115deg, transparent 40%, rgba(255, 246, 225, 0.3) 50%, transparent 60%);
	transform: translateX(-120%);
	animation: hoaji-btn-sheen 14s ease-in-out 6s infinite;
}

.hoaji-shine:hover::before,
.about-cta .button:hover::before,
.page-jewelry-category .band--dark .button:hover::before {
	animation: none;
}

/* ---- Sections sombres : dégradé, halo derrière le titre, bouton champagne ---------- */
.band--dark.section--dark:not(.shop-selection):not(.filters-band):not(.guide-more-band) {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background-image: linear-gradient(180deg, #151413 0%, #101011 100%);
	border-top: 1px solid rgba(199, 164, 103, 0.26);
}

.band--dark.section--dark:not(.shop-selection):not(.filters-band):not(.guide-more-band)::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 46%;
	z-index: -1;
	width: min(820px, 96%);
	height: min(360px, 90%);
	transform: translate(-50%, -50%);
	pointer-events: none;
	background: radial-gradient(closest-side, rgba(199, 164, 103, 0.16) 0%, rgba(150, 104, 58, 0.06) 60%, rgba(150, 104, 58, 0) 100%);
	filter: blur(8px);
}

.band--dark.section--dark:not(.shop-selection):not(.filters-band):not(.guide-more-band)::after {
	content: "";
	position: absolute;
	top: -1px;
	left: 50%;
	width: 96px;
	height: 1px;
	transform: translateX(-50%);
	background: linear-gradient(90deg, transparent, var(--color-accent-light), transparent);
}

.band--dark .band__cta .button--slim-inverse {
	padding-inline: 1.7rem;
	border-color: rgba(199, 164, 103, 0.72);
	color: var(--color-dark-text);
	transition: background-color 450ms var(--ease-luxe), border-color 450ms var(--ease-luxe), color 450ms var(--ease-luxe);
}

.band--dark .band__cta .button--slim-inverse:hover,
.band--dark .band__cta .button--slim-inverse:focus-visible {
	color: #fff;
	background-color: rgba(199, 164, 103, 0.14);
	border-color: var(--color-accent-light);
}

.band--dark .band__text {
	max-width: 48ch;
	line-height: 1.7;
}

/* Transitions : ombre douce au passage sombre → ivoire. */
.band--dark + .band:not(.band--dark),
.band--dark + section:not(.band--dark) {
	box-shadow: inset 0 26px 34px -30px rgba(17, 17, 18, 0.22);
}

/* ==========================================================================
   À propos — présentation de la maison
   ========================================================================== */
.about-approach {
	padding-block: clamp(3.5rem, 2.6rem + 4vw, 6.5rem);
	text-align: center;
	background: linear-gradient(180deg, #f8f5ef 0%, #f3efe6 100%);
}

.about-approach .eyebrow {
	color: #7a6132;
}

.about-approach__title {
	margin: 0;
	font-size: clamp(2.3rem, 1.7rem + 2.5vw, 3.7rem);
	line-height: 1.08;
	text-wrap: balance;
}

.about-approach__rule {
	position: relative;
	display: block;
	width: 96px;
	height: 1px;
	margin: 1.5rem auto 1.9rem;
	background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.about-approach__rule::after {
	content: "";
	position: absolute;
	top: -3px;
	left: 50%;
	width: 7px;
	height: 7px;
	background-color: #f6f2ea;
	border: 1px solid var(--color-accent);
	transform: translateX(-50%) rotate(45deg);
}

.about-approach__text p {
	max-width: 46ch;
	margin: 0 auto 1.1rem;
	font-size: 1.06rem;
	line-height: 1.75;
	color: #4c473f;
	text-wrap: pretty;
}

.about-approach__text p:first-child {
	font-family: var(--font-serif);
	font-size: clamp(1.4rem, 1.2rem + 0.9vw, 1.75rem);
	line-height: 1.5;
	color: var(--color-ink);
}

.about-immersive {
	position: relative;
	overflow: hidden;
	padding-block: clamp(3.5rem, 2.6rem + 4vw, 6.5rem);
	background-color: #121112;
	background-image: linear-gradient(180deg, #161514 0%, #0f0f10 100%);
	border-block: 1px solid rgba(199, 164, 103, 0.26);
}

.about-immersive.hoaji-glow::before {
	left: 28%;
	top: 50%;
	width: min(900px, 90%);
	height: min(620px, 90%);
}

.about-immersive__grid {
	display: grid;
	gap: 2.5rem;
	align-items: center;
	max-width: 1240px;
}

.about-immersive__media {
	position: relative;
	margin: 0;
}

.about-immersive__media::before {
	content: "";
	position: absolute;
	inset: 12px -12px -12px 12px;
	z-index: -1;
	border: 1px solid rgba(199, 164, 103, 0.3);
	border-radius: 4px;
}

.about-immersive__media img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: 64% 50%;
	border: 1px solid rgba(199, 164, 103, 0.34);
	border-radius: 4px;
	box-shadow: 0 44px 80px -36px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.about-immersive__body .eyebrow {
	color: var(--color-accent-light);
}

.about-immersive__title {
	margin: 0 0 1.1rem;
	font-size: clamp(2rem, 1.6rem + 1.7vw, 3.1rem);
	line-height: 1.1;
	color: var(--color-dark-text);
	text-wrap: balance;
}

.about-immersive__lead {
	max-width: 44ch;
	margin: 0 0 1.75rem;
	line-height: 1.7;
	color: #bcb5a8;
}

.about-criteria {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0 2rem;
	margin: 0;
	padding: 0;
}

.about-criteria__item {
	padding: 1rem 0;
	border-top: 1px solid rgba(199, 164, 103, 0.24);
}

.about-criteria dt {
	margin: 0 0 0.3rem;
	font-size: var(--text-xs);
	font-weight: var(--weight-semibold);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-accent-light);
}

.about-criteria dd {
	margin: 0;
	font-size: var(--text-sm);
	line-height: 1.6;
	color: #bcb5a8;
}

@media (min-width: 640px) {
	.about-criteria {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.about-immersive__grid {
		grid-template-columns: minmax(0, 1.32fr) minmax(0, 1fr);
		gap: clamp(3.5rem, 5vw, 6rem);
	}

	.about-immersive__media img {
		aspect-ratio: 5 / 4;
	}

	.about-immersive__media::before {
		inset: 16px -16px -16px 16px;
	}
}

.about-values-band {
	padding-block: clamp(3.5rem, 2.6rem + 4vw, 6rem);
	background: #fbfaf7;
}

.about-values-band .eyebrow {
	color: #7a6132;
}

.about-values-band .about-values {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	max-width: 1080px;
	margin: 1.75rem auto 0;
	padding: 0;
	border: 0;
}

.about-values-band .about-values__item {
	position: relative;
	align-items: center;
	gap: 0.35rem;
	padding: 2rem 1.6rem 2.15rem;
	text-align: center;
	background: linear-gradient(165deg, #fffdf9 0%, #f8f4ec 100%);
	border: 1px solid rgba(199, 164, 103, 0.4);
	border-top-color: rgba(199, 164, 103, 0.75);
	border-radius: 6px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 2px 4px rgba(17, 17, 18, 0.04), 0 20px 38px -20px rgba(17, 17, 18, 0.25);
}

.about-values__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: 0.6rem;
	color: #8f7440;
	border: 1px solid rgba(199, 164, 103, 0.5);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(199, 164, 103, 0.14), rgba(199, 164, 103, 0) 70%);
}

.about-values-band .about-values__label {
	font-size: 1.65rem;
	color: var(--color-ink);
}

.about-values-band .about-values__text {
	max-width: 28ch;
	margin-inline: auto;
	font-size: var(--text-base);
	line-height: 1.6;
	color: #5c564d;
}

@media (min-width: 768px) {
	.about-values-band .about-values {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.75rem;
	}
}

.about-cert {
	position: relative;
	max-width: 720px;
	margin: clamp(2.5rem, 2rem + 2vw, 3.75rem) auto 0;
	padding-top: 2.25rem;
	text-align: center;
}

.about-cert__rule {
	position: absolute;
	top: 0;
	left: 50%;
	width: min(360px, 70%);
	height: 1px;
	transform: translateX(-50%);
	background: linear-gradient(90deg, transparent, rgba(199, 164, 103, 0.7), transparent);
}

.about-cert__rule::after {
	content: "";
	position: absolute;
	top: -3px;
	left: 50%;
	width: 7px;
	height: 7px;
	background-color: #fbfaf7;
	border: 1px solid var(--color-accent);
	transform: translateX(-50%) rotate(45deg);
}

.about-cert__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	color: #8f7440;
	border: 1px solid rgba(199, 164, 103, 0.5);
	border-radius: 50%;
}

.about-cert__icon svg {
	width: 21px;
	height: 21px;
	stroke-width: 1.2;
}

.about-cert__title {
	margin: 0.9rem 0 0.35rem;
	font-family: var(--font-serif);
	font-size: clamp(1.3rem, 1.15rem + 0.6vw, 1.6rem);
	font-style: italic;
	line-height: 1.4;
	color: var(--color-ink);
	text-wrap: balance;
}

.about-cert__note {
	margin: 0;
	font-size: var(--text-sm);
	color: #6a645c;
}

.about-cta {
	padding-block: clamp(3.75rem, 2.8rem + 4vw, 6.5rem);
}

.about-cta .section-title {
	font-size: clamp(2rem, 1.6rem + 1.8vw, 3.1rem);
}

/* ==========================================================================
   Catégories bijoux — introduction, sélection, conseils
   ========================================================================== */
.page-jewelry-category .intro-text {
	position: relative;
	padding-bottom: 2rem;
}

.page-jewelry-category .intro-text::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 7px;
	height: 7px;
	background-color: #f7f4ee;
	border: 1px solid var(--color-accent);
	transform: translateX(-50%) rotate(45deg);
}

.page-jewelry-category .band:has(.product-grid) {
	background: linear-gradient(180deg, #f7f4ee 0%, #f4f0e8 100%);
}

.product-card__category {
	letter-spacing: 0.18em;
	color: #7a6132;
}

.product-card__price {
	font-weight: var(--weight-medium);
	letter-spacing: 0.02em;
	transition: color 500ms var(--ease-luxe);
}

.product-card__name {
	transition: color 500ms var(--ease-luxe);
}

.product-card__media img {
	transition: transform 600ms var(--ease-luxe), filter 600ms var(--ease-luxe);
}

@media (hover: hover) and (pointer: fine) {
	.product-card:hover .product-card__media img {
		transform: scale(1.025);
		filter: brightness(1.04);
	}

	.product-card:hover .product-card__price {
		color: #7a6132;
	}

	.shop-selection .product-card:hover .product-card__price {
		color: var(--color-dark-text);
	}
}

/* Conseil d'entretien : écrin, éclat supérieur plus travaillé. */
.care-note::after {
	content: "";
	position: absolute;
	top: -1px;
	left: 50%;
	width: 84px;
	height: 1px;
	transform: translateX(-50%);
	background: linear-gradient(90deg, transparent, rgba(226, 201, 148, 0.95), transparent);
}

.care-note__icon svg {
	width: 30px;
	height: 30px;
	padding: 0;
	filter: drop-shadow(0 0 6px rgba(199, 164, 103, 0.35));
}

.care-note {
	background: linear-gradient(170deg, #fffdf9 0%, #f9f4ea 55%, #f5efe3 100%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.95),
		inset 0 0 0 1px rgba(255, 255, 255, 0.45),
		0 2px 4px rgba(17, 17, 18, 0.04),
		0 0 60px -12px rgba(199, 164, 103, 0.28),
		0 28px 52px -24px rgba(90, 60, 20, 0.36);
}

/* ==========================================================================
   Guide — comparatif : la moissanite légèrement mise en valeur
   (lecture honnête : le diamant reste neutre et parfaitement lisible)
   ========================================================================== */
.page-guide .compare thead th:nth-child(2) {
	position: relative;
	color: #6b5428;
	background: linear-gradient(180deg, rgba(199, 164, 103, 0.16), rgba(199, 164, 103, 0.04));
	box-shadow: inset 0 2px 0 var(--color-accent);
}

.page-guide .compare thead th:nth-child(2)::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-right: 0.6rem;
	background-color: var(--color-accent);
	transform: rotate(45deg) translateY(-2px);
}

.page-guide .compare tbody td:nth-child(2) {
	color: var(--color-ink);
	background: linear-gradient(180deg, rgba(199, 164, 103, 0.07), rgba(199, 164, 103, 0.03));
	border-left: 1px solid rgba(199, 164, 103, 0.4);
	border-right: 1px solid rgba(199, 164, 103, 0.4);
}

.page-guide .compare thead th:nth-child(3) {
	color: #4c473f;
}

@media (max-width: 599px) {
	.page-guide .compare tbody td[data-label="Moissanite"] {
		margin-inline: -0.4rem;
		padding-inline: 0.55rem;
		background: linear-gradient(90deg, rgba(199, 164, 103, 0.12), rgba(199, 164, 103, 0.02));
		border-left: 2px solid var(--color-accent);
		border-right: 0;
		color: var(--color-ink);
	}

	.page-guide .compare tbody td[data-label="Moissanite"]::before {
		color: #6b5428;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hoaji-shine::before,
	.about-cta .button::before,
	.page-jewelry-category .band--dark .button::before,
	.hoaji-lift {
		animation: none;
		transition: none;
	}
}
/* ==========================================================================
   0.9.41 — Cartes « détails » : un composant, un alignement.
   Trois zones fixes : losange (toujours en haut à gauche, sur sa propre ligne),
   titre, texte. La position du losange ne dépend plus de la longueur du titre ;
   quand les cartes d'une même rangée n'ont pas le même nombre de lignes de
   titre, les textes restent alignés (sous-grille). Valable pour les 5 pages
   bijoux et « Lire une pierre ».
   ========================================================================== */
.detail-card__label {
	display: block;
	line-height: 1.18;
	text-wrap: balance;
	overflow-wrap: break-word;
	-webkit-hyphens: auto;
	hyphens: auto;
}

.detail-card__label::before {
	display: block;
	margin: 0 0 0.9rem 0.15rem;
	transform: rotate(45deg);
}

.detail-card__text {
	display: block;
}

@supports (grid-template-rows: subgrid) {
	.detail-card {
		display: grid;
		grid-row: span 2;
		grid-template-rows: subgrid;
		align-content: start;
		row-gap: 0.45rem;
	}
}

@media (max-width: 767px) {
	.detail-card {
		padding: 1.35rem 1.1rem 1.5rem;
	}

	.detail-card__label {
		font-size: 1.32rem;
	}

	.detail-card__label::before {
		margin-bottom: 0.8rem;
	}
}
/* Mobile : les cartes « détails » sont toujours en nombre pair (4) : vraie grille à
   2 colonnes (au lieu de la rangée flex de grids.css) pour que titres et textes
   s'alignent d'une carte à l'autre. Un nombre impair garde le centrage flex. */
@media (max-width: 767px) {
	body ul.detail-cards.detail-cards:not(.detail-cards--three):not(:has(> :nth-child(odd):last-child)) {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: var(--space-sm) !important;
	}

	body ul.detail-cards.detail-cards:not(.detail-cards--three):not(:has(> :nth-child(odd):last-child)) > li.detail-card {
		flex: none !important;
		width: auto !important;
		max-width: none;
	}
}
/* ==========================================================================
   0.9.49 — Contact : alléger la masse sombre. Le hero et la section restent
   sombres ; la zone du formulaire devient un panneau ivoire premium (filet
   doré, coins nets), encadré par la carte sombre et la photo. Mobile : on
   garde le sombre, le conteneur du formulaire est seulement un peu plus clair.
   ========================================================================== */
@media (max-width: 767px) {
	.contact-section .contact-panel__form {
		padding: 1.5rem 1.2rem 1.6rem;
		background:
			radial-gradient(90% 40% at 20% 0%, rgba(199, 164, 103, 0.1), rgba(199, 164, 103, 0) 70%),
			linear-gradient(180deg, #24211e 0%, #1b1a18 100%);
		border: 1px solid rgba(199, 164, 103, 0.3);
		border-radius: 4px;
		box-shadow: 0 24px 50px -30px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 236, 200, 0.07);
	}

	.contact-section .contact-panel__visual {
		margin-top: 1.25rem;
	}
}

@media (min-width: 768px) {
	.contact-section .contact-panel__form {
		position: relative;
		background:
			radial-gradient(80% 45% at 18% 0%, rgba(199, 164, 103, 0.13), rgba(199, 164, 103, 0) 70%),
			linear-gradient(180deg, #faf7f0 0%, #f4efe4 100%);
		color: #1b1a19;
		box-shadow: inset 0 0 0 1px rgba(199, 164, 103, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.9);
	}

	.contact-section .contact-panel__form::before {
		content: "";
		position: absolute;
		top: 0;
		left: 50%;
		width: 96px;
		height: 1px;
		transform: translateX(-50%);
		background: linear-gradient(90deg, transparent, #b99555, transparent);
	}

	.contact-section .contact-panel__form .eyebrow {
		color: #7a6132;
	}

	.contact-section .contact-panel__form .contact-intro__title {
		color: #1b1a19;
	}

	.contact-section .contact-panel__form .contact-intro__text {
		color: #5c554a;
	}

	.contact-section .contact-panel__form .contact-form {
		color-scheme: light;
	}

	.contact-section .contact-panel__form .contact-form label {
		color: #3d382f;
	}

	.contact-section .contact-panel__form .contact-form .field:focus-within label {
		color: #7a6132;
	}

	.contact-section .contact-panel__form .contact-form .field__optional {
		color: #746e65;
	}

	.contact-section .contact-panel__form .contact-form .field :is(input, select, textarea) {
		color: #1b1a19;
		background-color: #fffdf9;
		border: 1px solid rgba(27, 26, 25, 0.2);
		box-shadow: inset 0 1px 2px rgba(27, 26, 25, 0.05);
	}

	.contact-section .contact-panel__form .contact-form .field :is(input, select, textarea):hover {
		border-color: rgba(154, 122, 63, 0.65);
	}

	.contact-section .contact-panel__form .contact-form .field :is(input, select, textarea):focus {
		background-color: #ffffff;
		border-color: #a98443;
		box-shadow: 0 0 0 3px rgba(199, 164, 103, 0.24);
	}

	.contact-section .contact-panel__form .contact-form .field :is(input, select, textarea):user-invalid {
		border-color: #b25b4d;
	}

	.contact-section .contact-panel__form .contact-form .field select {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none' stroke='%237a6132' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 1.5l6 6 6-6'/%3E%3C/svg%3E");
	}

	.contact-section .contact-panel__form .contact-form .field select:required:invalid {
		color: #746e65;
	}

	.contact-section .contact-panel__form .contact-form .field select option {
		color: #1b1a19;
		background-color: #fffdf9;
	}

	.contact-section .contact-panel__form .contact-form .field input:-webkit-autofill {
		-webkit-text-fill-color: #1b1a19;
		-webkit-box-shadow: 0 0 0 100px #fffdf9 inset;
		caret-color: #1b1a19;
	}

	/* Bouton : anthracite, texte et filet champagne — très lisible sur l'ivoire. */
	.contact-section .contact-panel__form .contact-form__submit .button {
		color: #f0dfb8;
		background: linear-gradient(180deg, #24211e 0%, #131211 100%);
		border: 1px solid rgba(199, 164, 103, 0.75);
		box-shadow: 0 14px 26px -16px rgba(27, 26, 25, 0.7);
	}

	.contact-section .contact-panel__form .contact-form__submit .button:hover,
	.contact-section .contact-panel__form .contact-form__submit .button:focus-visible {
		color: #fff4d6;
		background: linear-gradient(180deg, #2c2824 0%, #171514 100%);
		border-color: #c7a467;
		box-shadow: 0 16px 30px -14px rgba(122, 97, 50, 0.65);
	}

	.contact-section .contact-panel__form .form-notice {
		color: #2b2721;
		background-color: rgba(199, 164, 103, 0.13);
		border-color: rgba(122, 97, 50, 0.3);
		border-left-color: #a98443;
	}

	.contact-section .contact-panel__form .form-notice--error {
		border-left-color: #b25b4d;
	}

	.contact-section .contact-panel__form .contact-done__mark,
	.contact-section .contact-panel__form .contact-done__again a {
		color: #7a6132;
		border-color: rgba(122, 97, 50, 0.5);
	}

	.contact-section .contact-panel__form .contact-card__title {
		color: #1b1a19;
	}

	.contact-section .contact-panel__form .contact-card__text {
		color: #5c554a;
	}

	.contact-section .contact-panel__form .contact-card .button {
		color: #1b1a19;
		border-color: #7a6132;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.contact-section .contact-panel__form {
		padding: 2.25rem 2rem 2.4rem;
		border-radius: 4px;
		box-shadow: inset 0 0 0 1px rgba(199, 164, 103, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 30px 60px -34px rgba(0, 0, 0, 0.8);
	}

	.contact-section .contact-panel__visual {
		margin-top: 1.25rem;
	}
}

@media (min-width: 1024px) {
	/* Côté photo : la séparation est déjà portée par le filet lumineux de la photo. */
	.contact-section .contact-panel__form {
		box-shadow: inset 0 0 0 1px rgba(199, 164, 103, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.9);
	}
}
