/* =========================================================================
   Tonton Malin Conseil — Section Hero "Appelle-nous"
   Direction visuelle : BLEU NUIT + OR MOUTARDE
   Charte : terracotta #C85A2E, bleu nuit #2B3A55, moutarde #E8A33D,
            crème #FBF5EC, blanc cassé #FAF7F2
   Vibe : club privé / livre relié / édition pratique chaleureuse.
   ========================================================================= */

.tch-hero {
	/* --- Variables locales ------------------------------------------ */
	--tch-terracotta: #C85A2E;
	--tch-terracotta-deep: #A8481F;
	--tch-bleu-nuit: #2B3A55;
	--tch-bleu-nuit-deep: #1F2C42;
	--tch-bleu-nuit-soft: #3A4D70;
	--tch-moutarde: #E8A33D;
	--tch-moutarde-bright: #F3B552;
	--tch-creme: #FBF5EC;
	--tch-creme-soft: rgba(251, 245, 236, 0.85);
	--tch-creme-muted: rgba(251, 245, 236, 0.65);
	--tch-blanc-casse: #FAF7F2;

	--tch-radius: 18px;
	--tch-radius-lg: 24px;

	/* Ombres : profondes pour donner du relief sur fond sombre. */
	--tch-shadow-card: 0 14px 36px rgba(0, 0, 0, 0.30), 0 4px 12px rgba(0, 0, 0, 0.18);
	--tch-shadow-card-hover: 0 22px 48px rgba(0, 0, 0, 0.36), 0 6px 16px rgba(0, 0, 0, 0.22);
	--tch-shadow-cta:
		0 16px 40px rgba(232, 163, 61, 0.35),
		0 6px 14px rgba(0, 0, 0, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.18);
	--tch-shadow-cta-hover:
		0 24px 56px rgba(232, 163, 61, 0.50),
		0 10px 22px rgba(0, 0, 0, 0.40),
		inset 0 1px 0 rgba(255, 255, 255, 0.25);

	/* --- Background : bleu nuit profond + halo moutarde discret ----- */
	background:
		radial-gradient(ellipse 800px 500px at 80% 0%, rgba(232, 163, 61, 0.22) 0%, transparent 55%),
		radial-gradient(ellipse 700px 500px at 10% 100%, rgba(200, 90, 46, 0.16) 0%, transparent 60%),
		linear-gradient(180deg, var(--tch-bleu-nuit) 0%, var(--tch-bleu-nuit-deep) 100%);
	color: var(--tch-creme);
	padding: 96px 20px 88px;
	position: relative;
	overflow: hidden;
	font-family: inherit;
}

/* Filet décoratif terracotta → moutarde tout en haut. */
.tch-hero::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--tch-terracotta) 0%, var(--tch-moutarde) 50%, var(--tch-terracotta) 100%);
	z-index: 1;
}

/* Texture pointillée discrète (donne du grain à l'arrière-plan). */
.tch-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(232, 163, 61, 0.08) 1px, transparent 1px);
	background-size: 26px 26px;
	pointer-events: none;
	opacity: 0.6;
	mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.tch-hero__container {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 2.2rem;
	position: relative;
	z-index: 2;
}

/* -------------------------------------------------------------------------
   En-tête (eyebrow + titre + sous-titre)
   ------------------------------------------------------------------------- */

.tch-hero__intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	max-width: 880px;
}

.tch-hero__eyebrow {
	display: inline-block;
	padding: 0.4rem 1.1rem;
	background: rgba(232, 163, 61, 0.16);
	color: var(--tch-moutarde);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	border-radius: 999px;
	border: 1px solid rgba(232, 163, 61, 0.35);
}

.tch-hero__title {
	margin: 0;
	font-family: 'Fraunces', 'Georgia', 'Times New Roman', serif;
	font-size: clamp(2.3rem, 5.4vw, 4.2rem);
	line-height: 1.08;
	font-weight: 800;
	color: var(--tch-creme);
	letter-spacing: -0.015em;
	text-wrap: balance;
}

/* Highlight "marker pen" sur le span dans le titre (« pour ton bien »). */
.tch-hero__title-mark {
	color: var(--tch-moutarde);
	font-style: italic;
	background: linear-gradient(180deg, transparent 0%, transparent 62%, rgba(232, 163, 61, 0.22) 62%, rgba(232, 163, 61, 0.22) 94%, transparent 94%);
	padding: 0 0.12em;
	white-space: nowrap;
}

.tch-hero__subtitle {
	margin: 0;
	font-size: clamp(1.2rem, 2.4vw, 1.55rem);
	font-weight: 500;
	font-style: italic;
	color: var(--tch-creme);
	line-height: 1.4;
	max-width: 720px;
	opacity: 0.92;
}

/* -------------------------------------------------------------------------
   Corps de texte
   ------------------------------------------------------------------------- */

.tch-hero__body {
	max-width: 700px;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.tch-hero__body p {
	margin: 0;
	color: var(--tch-creme-soft);
	font-size: 1.05rem;
	line-height: 1.7;
}

/* -------------------------------------------------------------------------
   CTA téléphone — moutarde dorée sur navy, IMPOSSIBLE à rater
   ------------------------------------------------------------------------- */

.tch-hero__cta-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.9rem;
	margin: 0.4rem 0;
	position: relative;
}

/* Halo lumineux derrière le CTA — donne l'impression que le bouton "rayonne". */
.tch-hero__cta-wrap::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 120%;
	height: 100%;
	transform: translate(-50%, -50%);
	background: radial-gradient(ellipse at center, rgba(232, 163, 61, 0.18) 0%, transparent 65%);
	z-index: 0;
	pointer-events: none;
}

.tch-hero__cta {
	position: relative;
	z-index: 1;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 0.3rem;
	padding: 1.5rem 2.8rem;
	background: linear-gradient(180deg, var(--tch-moutarde-bright) 0%, var(--tch-moutarde) 100%);
	color: var(--tch-bleu-nuit-deep);
	border-radius: var(--tch-radius-lg);
	text-decoration: none;
	box-shadow: var(--tch-shadow-cta);
	transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
	font-family: inherit;
	font-weight: 700;
	will-change: transform;
}

.tch-hero__cta:hover,
.tch-hero__cta:focus-visible {
	background: linear-gradient(180deg, #F8C16A 0%, var(--tch-moutarde-bright) 100%);
	transform: scale(1.03) translateY(-2px);
	box-shadow: var(--tch-shadow-cta-hover);
	color: var(--tch-bleu-nuit-deep);
	text-decoration: none;
}

.tch-hero__cta:focus-visible {
	outline: 3px solid var(--tch-creme);
	outline-offset: 4px;
}

.tch-hero__cta:active { transform: scale(0.99); }

.tch-hero__cta-prefix {
	font-size: clamp(1rem, 1.6vw, 1.15rem);
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--tch-bleu-nuit);
	opacity: 0.85;
}

.tch-hero__cta-number {
	font-size: clamp(1.8rem, 4.5vw, 2.8rem);
	font-weight: 900;
	letter-spacing: 0.10em;
	line-height: 1.05;
	font-variant-numeric: tabular-nums;
	color: var(--tch-bleu-nuit-deep);
}

.tch-hero__hours {
	margin: 0;
	color: var(--tch-creme-muted);
	font-size: 0.95rem;
	font-weight: 500;
}

/* -------------------------------------------------------------------------
   Cards bénéfices — fond crème sur navy, accent moutarde
   ------------------------------------------------------------------------- */

.tch-hero__benefits {
	list-style: none;
	margin: 1rem 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	width: 100%;
	max-width: 1000px;
	text-align: left;
}

.tch-hero__benefit {
	background: var(--tch-creme);
	color: var(--tch-bleu-nuit);
	border-radius: var(--tch-radius);
	padding: 1.6rem 1.4rem;
	box-shadow: var(--tch-shadow-card);
	transition: transform .25s ease, box-shadow .25s ease;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	border-top: 3px solid var(--tch-moutarde);
	position: relative;
}

.tch-hero__benefit:hover {
	transform: translateY(-5px);
	box-shadow: var(--tch-shadow-card-hover);
}

/* Cercle moutarde derrière l'icône emoji — uniformise le rendu cross-OS. */
.tch-hero__benefit-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(232, 163, 61, 0.18);
	font-size: 1.7rem;
	line-height: 1;
}

.tch-hero__benefit-title {
	margin: 0;
	font-family: 'Fraunces', 'Georgia', serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--tch-bleu-nuit);
	line-height: 1.3;
}

.tch-hero__benefit-text {
	margin: 0;
	color: var(--tch-bleu-nuit-soft);
	font-size: 0.97rem;
	line-height: 1.55;
}

/* -------------------------------------------------------------------------
   Réassurance bas de section
   ------------------------------------------------------------------------- */

.tch-hero__reassurance {
	max-width: 720px;
	margin: 0.6rem 0 0;
	color: var(--tch-creme-muted);
	font-size: 0.85rem;
	font-style: italic;
	line-height: 1.55;
}

/* -------------------------------------------------------------------------
   Animations d'entrée (Intersection Observer)
   ------------------------------------------------------------------------- */

.tch-fade {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .7s ease, transform .7s ease;
}

.tch-fade.is-in {
	opacity: 1;
	transform: translateY(0);
}

.tch-hero__intro.is-in       { transition-delay: .05s; }
.tch-hero__body.is-in        { transition-delay: .15s; }
.tch-hero__cta-wrap.is-in    { transition-delay: .25s; }
.tch-hero__benefits.is-in    { transition-delay: .35s; }
.tch-hero__reassurance.is-in { transition-delay: .45s; }

/* -------------------------------------------------------------------------
   Responsive — mobile first
   ------------------------------------------------------------------------- */

@media (max-width: 980px) {
	.tch-hero__benefits {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 720px) {
	.tch-hero {
		padding: 56px 18px 64px;
	}
	.tch-hero__container {
		gap: 1.6rem;
	}
	.tch-hero__cta {
		padding: 1.15rem 1.6rem;
		width: 100%;
		max-width: 380px;
	}
	.tch-hero__benefits {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	.tch-hero__benefit {
		padding: 1.3rem 1.2rem;
	}
}

/* -------------------------------------------------------------------------
   Accessibilité — respect du mode "reduced motion"
   ------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
	.tch-fade {
		opacity: 1;
		transform: none;
		transition: none;
	}
	.tch-hero__cta,
	.tch-hero__benefit {
		transition: none;
	}
	.tch-hero__cta:hover,
	.tch-hero__cta:focus-visible {
		transform: none;
	}
	.tch-hero__benefit:hover {
		transform: none;
	}
}
