/* ==========================================================================
   Secondary pages — contact, legal, brand story, blog
   ========================================================================== */

.sahri-page { background-color: var(--cream); }

.sahri-page__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: start;
}

.sahri-page__main { min-width: 0; }

.sahri-page__content {
	font-size: 1.05rem;
	line-height: 1.8;
	color: rgba(28, 28, 28, 0.82);
}

.sahri-page__content > *:first-child { margin-top: 0; }
.sahri-page__content h2,
.sahri-page__content h3 {
	font-family: var(--font-head);
	color: var(--green-dark);
	margin-top: 2.25rem;
	margin-bottom: 0.85rem;
}

.sahri-page__content h2 { font-size: 1.75rem; }
.sahri-page__content h3 { font-size: 1.3rem; }

.sahri-page__content p,
.sahri-page__content ul,
.sahri-page__content ol {
	margin-bottom: 1.1rem;
}

.sahri-page__content ul,
.sahri-page__content ol {
	padding-left: 1.25rem;
}

.sahri-page__content a {
	color: var(--green-mid);
	text-decoration: underline;
	text-underline-offset: 3px;
	font-weight: 500;
}

.sahri-page__content a:hover { color: var(--accent); }

.sahri-page__aside {
	position: sticky;
	top: 7rem;
	padding: 1.35rem;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: 0 12px 36px rgba(27, 41, 76, 0.06);
}

.sahri-page__aside-title {
	font-family: var(--font-head);
	font-size: 1.35rem;
	margin: 0 0 1rem;
	color: var(--green-dark);
}

.sahri-page__aside-links {
	list-style: none;
	padding: 0;
	margin: 0 0 1.25rem;
	display: grid;
	gap: 0.35rem;
}

.sahri-page__aside-links a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	padding: 0.55rem 0;
	font-size: 0.88rem;
	color: rgba(28, 28, 28, 0.72);
	border-bottom: 1px solid rgba(27, 41, 76, 0.06);
	transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}
.sahri-page__aside-links a:hover {
	color: var(--green-dark);
	transform: translateX(4px);
}

.sahri-page__aside-cta p {
	font-size: 0.78rem;
	color: rgba(28, 28, 28, 0.55);
	margin: 0 0 0.75rem;
	line-height: 1.5;
}

.sahri-page__bottom-cta {
	margin-top: 2.5rem;
	padding: 1.5rem;
	border-radius: var(--radius-lg);
	background: linear-gradient(135deg, var(--cream-deep), var(--white));
	border: 1px solid var(--line);
}
.sahri-page__bottom-cta p {
	margin: 0 0 1rem;
	font-family: var(--font-head);
	font-size: 1.2rem;
	color: var(--green-dark);
}
.sahri-page__bottom-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.sahri-page__empty {
	text-align: center;
	color: rgba(28, 28, 28, 0.6);
}

.sahri-blog .sahri-container { max-width: 1100px; }

.sahri-post__date {
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(28, 28, 28, 0.45);
	margin-bottom: 0.5rem;
}

.sahri-post--single .sahri-post__hero-media {
	margin-bottom: 2rem;
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.sahri-post--single .sahri-post__hero-media img {
	width: 100%;
	height: auto;
	display: block;
}

.sahri-post__footer { margin-top: 2.5rem; }

/* Tall articles: IntersectionObserver threshold can never fire → content
   stayed invisible (same fix as legal pages). Keep blog body always shown. */
.js-observe .sahri-post--single .entry-content.reveal,
.js-observe .sahri-post--single.reveal,
.js-observe .sahri-post--single .sahri-post__hero-media.reveal {
	opacity: 1;
	transform: none;
	transition: none;
}

/* Blog article body — readable + conversion */
.sahri-post--single .entry-content {
	max-width: 42rem;
	margin-inline: auto;
	font-size: 1.05rem;
	line-height: 1.75;
	color: rgba(28, 28, 28, 0.88);
}
.sahri-post--single .entry-content h2 {
	font-size: clamp(1.45rem, 3vw, 1.85rem);
	font-weight: 400;
	margin: 2.4rem 0 1rem;
	letter-spacing: 0.01em;
}
.sahri-post--single .entry-content h3 {
	font-size: 1.15rem;
	font-weight: 600;
	margin: 1.75rem 0 0.65rem;
}
.sahri-post--single .entry-content p { margin: 0 0 1.1rem; }
.sahri-post--single .entry-content ul {
	margin: 0 0 1.25rem;
	padding-left: 1.2rem;
}
.sahri-post--single .entry-content li { margin-bottom: 0.45rem; }
.sahri-post--single .entry-content a {
	color: var(--green-mid);
	text-decoration: underline;
	text-underline-offset: 0.18em;
}
.sahri-post__figure {
	margin: 1.75rem 0 2rem;
	border-radius: var(--radius-lg);
	overflow: hidden;
}
.sahri-post__figure img {
	width: 100%;
	height: auto;
	display: block;
}
.sahri-post__figure figcaption {
	font-size: 0.82rem;
	color: rgba(28, 28, 28, 0.5);
	padding: 0.65rem 0.15rem 0;
	letter-spacing: 0.02em;
}
.sahri-post__cta {
	margin: 2rem 0;
	padding: 1.35rem 1.4rem;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(245, 240, 230, 0.95));
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
}
.sahri-post__cta p:last-child { margin-bottom: 0; }
.sahri-post__cta .sahri-btn {
	display: inline-flex;
	margin-top: 0.35rem;
	text-decoration: none;
}
.sahri-post__cta--end {
	border-color: rgba(45, 90, 70, 0.25);
	background: linear-gradient(145deg, rgba(45, 90, 70, 0.06), rgba(255, 255, 255, 0.95));
}

.sahri-pagination { margin-top: 2.5rem; text-align: center; }
.sahri-pagination .nav-links { display: inline-flex; gap: 0.5rem; }
.sahri-pagination a,
.sahri-pagination span {
	display: inline-grid;
	place-items: center;
	min-width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	border: 1px solid var(--line);
	font-size: 0.85rem;
}
.sahri-pagination span.current {
	background: var(--green-dark);
	color: var(--cream);
	border-color: var(--green-dark);
}

@media (max-width: 900px) {
	.sahri-page__layout { grid-template-columns: 1fr; }
	.sahri-page__aside { position: static; }
}

/* --------------------------------------------------------------------------
   Page Nos Ingrédients
   -------------------------------------------------------------------------- */
.sahri-page--ingredients .sahri-page__main { max-width: 100%; }

.sahri-ingredients__hero {
	margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
	max-width: 720px;
}

.sahri-ingredients__title {
	font-family: var(--font-head);
	font-size: clamp(2rem, 4.5vw, 2.75rem);
	color: var(--green-dark);
	margin: 0.5rem 0 1rem;
	line-height: 1.15;
}

.sahri-ingredients__lead {
	font-size: 1.08rem;
	line-height: 1.75;
	color: rgba(28, 28, 28, 0.72);
	margin: 0;
}

.sahri-ingredients__section {
	margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.sahri-ingredients__section-head {
	margin-bottom: 1.75rem;
	max-width: 640px;
}

.sahri-ingredients__section-title {
	font-family: var(--font-head);
	font-size: clamp(1.5rem, 3vw, 1.9rem);
	color: var(--green-dark);
	margin: 0 0 0.5rem;
}

.sahri-ingredients__section-head p {
	margin: 0;
	color: rgba(28, 28, 28, 0.65);
	line-height: 1.6;
}

.sahri-ingredients__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1.5rem, 3vw, 2rem);
}

.sahri-ingredients__grid--parfums {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sahri-ingredient-card {
	display: flex;
	flex-direction: column;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 14px 40px rgba(27, 41, 76, 0.06);
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.sahri-ingredient-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 48px rgba(27, 41, 76, 0.1);
}

.sahri-ingredient-card__media {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	background: var(--cream-deep);
}

.sahri-ingredient-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.sahri-ingredient-card__tag {
	position: absolute;
	top: 0.85rem;
	left: 0.85rem;
	padding: 0.35rem 0.7rem;
	font-size: 0.68rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--cream);
	background: rgba(27, 41, 76, 0.82);
	border-radius: 999px;
}

.sahri-ingredient-card__body {
	padding: 1.35rem 1.35rem 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.sahri-ingredient-card__name {
	font-family: var(--font-head);
	font-size: 1.45rem;
	color: var(--green-dark);
	margin: 0 0 0.25rem;
}

.sahri-ingredient-card__origin {
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent);
	margin: 0 0 0.85rem;
}

.sahri-ingredient-card__intro {
	font-size: 0.95rem;
	line-height: 1.65;
	color: rgba(28, 28, 28, 0.78);
	margin: 0 0 1rem;
}

.sahri-ingredient-card__benefits-title {
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(28, 28, 28, 0.5);
	margin: 0 0 0.5rem;
	font-weight: 600;
}

.sahri-ingredient-card__benefits {
	list-style: none;
	padding: 0;
	margin: 0 0 1rem;
	display: grid;
	gap: 0.4rem;
}

.sahri-ingredient-card__benefits li {
	position: relative;
	padding-left: 1.1rem;
	font-size: 0.9rem;
	line-height: 1.5;
	color: rgba(28, 28, 28, 0.8);
}

.sahri-ingredient-card__benefits li::before {
	content: "✦";
	position: absolute;
	left: 0;
	color: var(--sand);
	font-size: 0.65rem;
	top: 0.35rem;
}

.sahri-ingredient-card__products {
	margin: auto 0 0;
	padding-top: 0.85rem;
	border-top: 1px solid var(--line);
	font-size: 0.82rem;
	line-height: 1.55;
	color: rgba(28, 28, 28, 0.65);
}

.sahri-ingredient-card__products strong {
	color: var(--green-dark);
	font-weight: 600;
}

.sahri-ingredients__cta {
	text-align: center;
	padding: clamp(1.75rem, 3vw, 2.25rem);
	border-radius: var(--radius-lg);
	background: linear-gradient(135deg, var(--green-dark), #243a5c);
	color: var(--cream);
}

.sahri-ingredients__cta p {
	margin: 0 0 1.25rem;
	font-size: 1.05rem;
	line-height: 1.6;
	max-width: 560px;
	margin-inline: auto;
}

@media (max-width: 1024px) {
	.sahri-ingredients__grid--parfums { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
	.sahri-ingredients__grid,
	.sahri-ingredients__grid--parfums { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Page Contact
   -------------------------------------------------------------------------- */
.sahri-contact { background: var(--cream); }

.sahri-contact__hero {
	position: relative;
	padding-block: clamp(1.75rem, 4vw, 4rem);
	overflow: hidden;
}

.sahri-contact__hero-ambient {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.sahri-contact__hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 1fr);
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: center;
	position: relative;
	z-index: 1;
}

.sahri-contact__crumb { margin-bottom: 1rem; font-size: 0.78rem; }

.sahri-contact__title {
	font-family: var(--font-head);
	font-size: clamp(2.2rem, 5vw, 3.25rem);
	line-height: 1.08;
	color: var(--green-dark);
	margin: 0.5rem 0 1rem;
}

.sahri-contact__lead {
	font-size: 1.05rem;
	line-height: 1.75;
	color: rgba(28, 28, 28, 0.72);
	max-width: 48ch;
	margin: 0;
}

.sahri-contact__hero-form {
	position: relative;
	z-index: 1;
}

.sahri-contact__form-panel--hero {
	margin: 0;
	box-shadow: 0 24px 60px rgba(27, 41, 76, 0.12);
	opacity: 1;
	visibility: visible;
}

.sahri-contact__fields--compact {
	grid-template-columns: 1fr;
}

.sahri-contact__channels-only {
	max-width: 960px;
	margin-inline: auto;
}

.sahri-contact__cards--wide {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sahri-contact__cards--wide .sahri-contact-card:last-child:nth-child(odd) {
	grid-column: span 1;
}

.sahri-contact__promo--inline {
	margin-top: 1.5rem;
	max-width: 520px;
	margin-inline: auto;
	text-align: center;
}

.sahri-contact__promo--inline .sahri-contact__wa-btn {
	width: auto;
	min-width: 220px;
}

.sahri-contact__hero-visual--logo {
	display: flex;
	justify-content: center;
	align-items: center;
}

.sahri-contact__logo-card {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 420px;
	min-height: 280px;
	padding: clamp(2rem, 5vw, 3rem);
	border-radius: var(--radius-lg);
	background: linear-gradient(145deg, var(--white) 0%, var(--cream-deep) 55%, rgba(200, 169, 126, 0.18) 100%);
	border: 1px solid rgba(200, 169, 126, 0.35);
	box-shadow: 0 24px 60px rgba(27, 41, 76, 0.1);
}

.sahri-contact__logo {
	width: min(100%, 300px);
	height: auto;
	display: block;
	object-fit: contain;
}

.sahri-contact__hero-visual img:not(.sahri-contact__logo) {
	width: 100%;
	height: auto;
	border-radius: var(--radius-lg);
	box-shadow: 0 24px 60px rgba(27, 41, 76, 0.12);
	display: block;
	mask-image: linear-gradient(to bottom, #000 72%, transparent 100%);
	-webkit-mask-image: linear-gradient(to bottom, #000 72%, transparent 100%);
}

.sahri-contact__trust {
	background: linear-gradient(135deg, var(--green-dark), #243a5c);
	color: var(--cream);
	padding-block: 1.25rem;
}

.sahri-contact__trust-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
	text-align: center;
}

.sahri-contact__trust-grid strong {
	display: block;
	font-family: var(--font-head);
	font-size: 0.95rem;
	margin-bottom: 0.2rem;
}

.sahri-contact__trust-grid span {
	font-size: 0.78rem;
	opacity: 0.75;
}

.sahri-contact__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
	gap: clamp(2rem, 4vw, 3rem);
	align-items: start;
}

.sahri-contact__channels-head { margin-bottom: 1.5rem; }

.sahri-contact__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.sahri-contact-card:last-child:nth-child(odd) {
	grid-column: 1 / -1;
	max-width: 100%;
}

.sahri-contact-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding: 1.25rem 1.35rem 1.35rem;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	text-decoration: none;
	color: inherit;
	box-shadow: 0 12px 36px rgba(27, 41, 76, 0.05);
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
	overflow: hidden;
}

.sahri-contact-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(200, 169, 126, 0.08), transparent 55%);
	opacity: 0;
	transition: opacity 0.35s var(--ease);
	pointer-events: none;
}

.sahri-contact-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 48px rgba(27, 41, 76, 0.1);
	border-color: rgba(200, 169, 126, 0.45);
}

.sahri-contact-card:hover::before { opacity: 1; }

.sahri-contact-card--accent {
	background: linear-gradient(145deg, var(--green-dark), #2a4268);
	border-color: transparent;
	color: var(--cream);
}

.sahri-contact-card--accent .sahri-contact-card__icon-wrap {
	background: rgba(255, 255, 255, 0.12);
	color: var(--sand);
}

.sahri-contact-card--accent .sahri-contact-card__label,
.sahri-contact-card--accent .sahri-contact-card__desc {
	color: rgba(255, 255, 255, 0.72);
}

.sahri-contact-card--accent .sahri-contact-card__value { color: var(--cream); }

.sahri-contact-card--accent .sahri-contact-card__arrow { color: var(--sand); }

.sahri-contact-card__icon-wrap {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--cream-deep);
	color: var(--green-mid);
	margin-bottom: 0.35rem;
}

.sahri-contact-card__label {
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(28, 28, 28, 0.5);
}

.sahri-contact-card__value {
	font-family: var(--font-head);
	font-size: 1.1rem;
	color: var(--green-dark);
	line-height: 1.3;
}

.sahri-contact-card__desc {
	font-size: 0.82rem;
	line-height: 1.45;
	color: rgba(28, 28, 28, 0.58);
	margin-top: 0.15rem;
}

.sahri-contact-card__arrow {
	position: absolute;
	top: 1.1rem;
	right: 1.1rem;
	font-size: 1rem;
	color: var(--accent);
	opacity: 0;
	transform: translateX(-6px);
	transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.sahri-contact-card:hover .sahri-contact-card__arrow {
	opacity: 1;
	transform: translateX(0);
}

.sahri-contact__aside {
	display: grid;
	gap: 1.25rem;
	position: sticky;
	top: 7rem;
}

.sahri-contact__form-panel {
	padding: clamp(1.35rem, 3vw, 2rem);
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: 0 20px 50px rgba(27, 41, 76, 0.08);
}

.sahri-contact__form-title {
	font-family: var(--font-head);
	font-size: clamp(1.5rem, 2.5vw, 1.85rem);
	color: var(--green-dark);
	margin: 0 0 0.5rem;
}

.sahri-contact__form-lead {
	font-size: 0.95rem;
	line-height: 1.6;
	color: rgba(28, 28, 28, 0.65);
	margin: 0 0 1.25rem;
}

.sahri-contact__fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.85rem;
	margin-bottom: 1.15rem;
}

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

.sahri-contact-field label {
	display: block;
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	margin-bottom: 0.35rem;
	color: var(--green-dark);
}

.sahri-contact-field label span { color: var(--accent); }

.sahri-contact-field input,
.sahri-contact-field textarea {
	width: 100%;
	padding: 0.75rem 0.9rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-family: var(--font-body);
	font-size: 0.95rem;
	background: var(--cream);
	transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.sahri-contact-field textarea {
	border-radius: var(--radius-lg);
	resize: vertical;
	min-height: 120px;
}

.sahri-contact-field input:focus,
.sahri-contact-field textarea:focus {
	outline: none;
	border-color: var(--green-mid);
	background: var(--white);
	box-shadow: 0 0 0 3px rgba(27, 41, 76, 0.08);
}

.sahri-contact__submit { width: 100%; min-height: 52px; }

.sahri-contact__form-note {
	font-size: 0.72rem;
	color: rgba(28, 28, 28, 0.45);
	text-align: center;
	margin: 0.75rem 0 0;
}

.sahri-contact__form-message {
	margin-top: 1rem;
	padding: 0.85rem 1rem;
	border-radius: var(--radius);
	font-size: 0.9rem;
	line-height: 1.5;
}

.sahri-contact__form-message.is-success {
	background: rgba(27, 41, 76, 0.08);
	color: var(--green-dark);
	border: 1px solid rgba(27, 41, 76, 0.12);
}

.sahri-contact__form-message.is-error {
	background: rgba(180, 60, 60, 0.08);
	color: #8b3030;
	border: 1px solid rgba(180, 60, 60, 0.2);
}

.sahri-contact__form.is-loading .sahri-contact__submit {
	opacity: 0.65;
	pointer-events: none;
}

.sahri-contact__promo {
	padding: clamp(1.35rem, 3vw, 1.75rem);
	border-radius: var(--radius-lg);
	background: linear-gradient(145deg, var(--green-mid), var(--green-dark));
	color: var(--cream);
	box-shadow: 0 16px 40px rgba(27, 41, 76, 0.18);
}

.sahri-contact__promo-eyebrow {
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--sand);
	display: block;
	margin-bottom: 0.5rem;
}

.sahri-contact__promo-title {
	font-family: var(--font-head);
	font-size: 1.35rem;
	margin: 0 0 0.5rem;
}

.sahri-contact__promo-text {
	font-size: 0.9rem;
	line-height: 1.6;
	opacity: 0.88;
	margin: 0 0 1rem;
}

.sahri-contact__wa-btn { width: 100%; justify-content: center; }

.sahri-contact__map-wrap {
	padding-block: clamp(2.5rem, 5vw, 3.5rem);
	background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}

.sahri-contact__map-head {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 1.75rem;
}

.sahri-contact__map {
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--line);
	box-shadow: 0 20px 50px rgba(27, 41, 76, 0.08);
	aspect-ratio: 21 / 9;
	min-height: 280px;
	background: var(--cream-deep);
}

.sahri-contact__map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.sahri-contact__map-link-wrap {
	text-align: center;
	margin: 1rem 0 0;
}

.sahri-contact__cta {
	padding-block: clamp(2rem, 4vw, 3rem);
}

.sahri-contact__cta-inner {
	text-align: center;
	padding: clamp(1.75rem, 3vw, 2.25rem);
	border-radius: var(--radius-lg);
	background: linear-gradient(135deg, var(--green-dark), #243a5c);
	color: var(--cream);
}

.sahri-contact__cta-inner p {
	font-family: var(--font-head);
	font-size: clamp(1.25rem, 2.5vw, 1.6rem);
	margin: 0 0 1.25rem;
}

.sahri-contact__cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
}

@media (max-width: 960px) {
	.sahri-contact__hero-inner {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	.sahri-contact__hero-text { order: 1; }
	.sahri-contact__hero-form { order: 2; }
	.sahri-contact__hero-visual { order: 2; max-width: 520px; margin-inline: auto; width: 100%; }
	.sahri-contact__grid { grid-template-columns: 1fr; }
	.sahri-contact__aside { position: static; }
	.sahri-contact__trust-grid { grid-template-columns: repeat(2, 1fr); }
	.sahri-contact__cards--wide { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
	.sahri-contact__cards,
	.sahri-contact__cards--wide { grid-template-columns: 1fr; }
	.sahri-contact__fields { grid-template-columns: 1fr; }
	.sahri-contact__map { aspect-ratio: 4 / 3; }
}

/* --------------------------------------------------------------------------
   Page Notre Histoire — frise verticale (point sur la ligne + carte texte)
   Override complet du CSS inline de la page.
   -------------------------------------------------------------------------- */
.sahri-page--story .sh-tl-wrap {
	max-width: 720px;
	margin-inline: auto;
	padding-inline: 1rem;
}

.sahri-page--story .sh-tl-wrap h2 {
	text-align: center;
	margin-bottom: 2.5rem;
}

.sahri-page--story .sh-tl-track {
	position: relative;
	padding: 0.5rem 0 1rem;
	margin: 0;
	perspective: 900px;
}

.sahri-page--story .sh-tl-track::before {
	content: '' !important;
	position: absolute !important;
	left: 23px !important;
	top: 0 !important;
	bottom: 0 !important;
	width: 2px !important;
	transform: none !important;
	background: linear-gradient(to bottom, #c8a96e 0%, rgba(200, 169, 110, 0.25) 100%) !important;
	border-radius: 2px;
}

.sahri-page--story .sh-tl-item {
	display: grid !important;
	grid-template-columns: 48px minmax(0, 1fr) !important;
	grid-template-rows: auto !important;
	gap: 0 1rem !important;
	align-items: start !important;
	margin-bottom: 1.75rem !important;
	position: relative;
}

.sahri-page--story .sh-tl-l:empty,
.sahri-page--story .sh-tl-r:empty {
	display: none !important;
	width: 0 !important;
	height: 0 !important;
	overflow: hidden !important;
	padding: 0 !important;
	margin: 0 !important;
	border: none !important;
}

.sahri-page--story .sh-tl-mid {
	grid-column: 1 !important;
	grid-row: 1 !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	gap: 0.35rem !important;
	padding-top: 1.15rem !important;
	position: relative;
	z-index: 2;
}

.sahri-page--story .sh-tl-dot {
	width: 14px !important;
	height: 14px !important;
	border-radius: 50% !important;
	background: #c8a96e !important;
	border: 3px solid var(--cream, #faf6f1) !important;
	box-shadow: 0 0 0 2px #c8a96e !important;
	flex-shrink: 0;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sahri-page--story .sh-tl-item.is-active .sh-tl-dot,
.sahri-page--story .sh-tl-item:hover .sh-tl-dot {
	transform: scale(1.15);
	box-shadow: 0 0 0 2px #c8a96e, 0 0 12px rgba(200, 169, 110, 0.55);
}

.sahri-page--story .sh-tl-yr {
	font-size: 0.62rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	color: #c8a96e !important;
	text-align: center !important;
	white-space: nowrap !important;
	writing-mode: horizontal-tb !important;
	line-height: 1.2 !important;
	max-width: 48px;
	word-break: normal !important;
}

.sahri-page--story .sh-tl-l:not(:empty),
.sahri-page--story .sh-tl-r:not(:empty) {
	grid-column: 2 !important;
	grid-row: 1 !important;
	display: block !important;
	width: 100% !important;
	min-width: 0 !important;
	max-width: 100% !important;
	text-align: left !important;
	padding: 1.15rem 1.25rem !important;
	background: #faf6f1 !important;
	border: 1px solid rgba(200, 169, 110, 0.35) !important;
	border-radius: 8px !important;
	box-shadow: 0 10px 32px rgba(27, 41, 76, 0.06);
	transform-style: preserve-3d;
	will-change: transform;
	word-break: normal !important;
	overflow-wrap: break-word;
}

.sahri-page--story .sh-tl-h {
	font-size: 1rem !important;
	font-weight: 600 !important;
	color: #2c2018 !important;
	margin: 0 0 0.5rem !important;
	line-height: 1.35 !important;
}

.sahri-page--story .sh-tl-p {
	display: block !important;
	font-size: 0.9rem !important;
	line-height: 1.7 !important;
	color: #7a6855 !important;
	margin: 0 !important;
	word-break: normal !important;
	white-space: normal !important;
}

@media (max-width: 768px) {
	.sahri-page--story .sh-tl-track::before {
		left: 15px !important;
	}

	.sahri-page--story .sh-tl-item {
		grid-template-columns: 32px minmax(0, 1fr) !important;
		gap: 0 0.75rem !important;
	}

	.sahri-page--story .sh-tl-mid {
		padding-top: 1rem !important;
	}

	.sahri-page--story .sh-tl-l:not(:empty),
	.sahri-page--story .sh-tl-r:not(:empty) {
		padding: 1rem 1.05rem !important;
	}

	.sahri-page--story .sh-tl-yr {
		font-size: 0.55rem !important;
		max-width: 32px;
	}
}

@media (min-width: 769px) {
	.sahri-page--story .sh-tl-item:has(.sh-tl-r:empty),
	.sahri-page--story .sh-tl-item:has(.sh-tl-l:empty) {
		grid-template-columns: 48px minmax(0, 1fr) !important;
	}
}

/* 404 branded */
.sahri-404__inner {
	max-width: 640px;
	margin-inline: auto;
	text-align: center;
	padding-block: clamp(3rem, 8vw, 5rem);
}
.sahri-404__help {
	margin-top: 1.75rem;
	font-size: 0.88rem;
	color: rgba(28, 28, 28, 0.65);
}
.sahri-404__help a {
	color: var(--green-mid);
}
