/* =========================================================================
   Tonton Malin — Styles spécifiques aux pages additionnelles
   (Section RDV, page de recherche, page Qui sommes-nous)

   Variables `--tm-*` héritées de tontonmalin.css. Ce fichier est chargé
   en cascade après le principal — voir inc/enqueues.php.
   ========================================================================= */

/* -------------------------------------------------------------------------
   Section "Prendre rendez-vous" (homepage)
   ------------------------------------------------------------------------- */

.tm-rdv {
	background:
		radial-gradient(ellipse 700px 400px at 90% 10%, rgba(232, 163, 61, 0.18) 0%, transparent 60%),
		radial-gradient(ellipse 600px 400px at 5% 90%, rgba(200, 90, 46, 0.12) 0%, transparent 60%),
		var(--tm-creme, #FBF5EC);
	padding: 64px 0 72px;
	border-top: 1px solid rgba(43, 58, 85, 0.06);
	border-bottom: 1px solid rgba(43, 58, 85, 0.06);
}

.tm-rdv__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: start;
}

@media (min-width: 920px) {
	.tm-rdv__inner {
		grid-template-columns: 0.95fr 1.05fr;
		gap: 3.5rem;
	}
}

.tm-rdv__intro .tm-overline {
	color: var(--tm-terracotta, #C85A2E);
}

.tm-rdv__intro .tm-h2 {
	margin: 0.5rem 0 1rem;
	font-family: 'Fraunces', Georgia, serif;
	color: var(--tm-bleu-nuit, #2B3A55);
	font-size: clamp(1.7rem, 3.2vw, 2.4rem);
	line-height: 1.15;
}

.tm-rdv__text {
	color: var(--tm-encre, #2B3A55);
	font-size: 1.05rem;
	line-height: 1.65;
	margin: 0 0 1.25rem;
}

.tm-rdv__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	color: var(--tm-bleu-nuit, #2B3A55);
	font-weight: 500;
}

.tm-rdv__list li {
	background: #fff;
	padding: 0.65rem 1rem;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(43, 58, 85, 0.06);
}

.tm-rdv__form-wrap {
	background: #fff;
	border-radius: 16px;
	padding: 1.75rem 1.6rem;
	box-shadow: 0 12px 32px rgba(43, 58, 85, 0.10);
	border: 1px solid rgba(43, 58, 85, 0.08);
}

/* CTA card — alternative au form inline (ouvre une modal). */
.tm-rdv__cta-card {
	background:
		radial-gradient(ellipse at top right, rgba(232, 163, 61, 0.20) 0%, transparent 60%),
		linear-gradient(180deg, #fff 0%, var(--tm-creme, #FBF5EC) 100%);
	border-radius: 18px;
	padding: 2.5rem 2rem;
	text-align: center;
	box-shadow: 0 16px 40px rgba(43, 58, 85, 0.12);
	border-top: 4px solid var(--tm-moutarde, #E8A33D);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
}
.tm-rdv__cta-card-icon {
	font-size: 3rem;
	line-height: 1;
}
.tm-rdv__cta-card h3 {
	margin: 0;
	font-family: 'Fraunces', Georgia, serif;
	color: var(--tm-bleu-nuit, #2B3A55);
	font-size: 1.5rem;
	line-height: 1.2;
}
.tm-rdv__cta-card p {
	margin: 0;
	color: var(--tm-encre, #2B3A55);
	font-size: 1rem;
	line-height: 1.5;
}
.tm-rdv__cta-card .tm-btn,
.tm-rdv__cta-card-btn {
	margin-top: 0.5rem;
	background: var(--tm-terracotta, #C85A2E);
	color: #fff;
	border: 0;
	padding: 1rem 2rem;
	border-radius: 12px;
	font-weight: 700;
	font-size: 1.1rem;
	cursor: pointer;
	font-family: inherit;
	box-shadow: 0 10px 24px rgba(200, 90, 46, 0.25);
	transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.tm-rdv__cta-card .tm-btn:hover,
.tm-rdv__cta-card-btn:hover {
	background: #A8481F;
	transform: translateY(-2px);
	box-shadow: 0 14px 32px rgba(200, 90, 46, 0.35);
}
.tm-rdv__cta-card-meta {
	color: var(--tm-ink-quiet, #6B7280);
	font-size: 0.85rem !important;
	font-weight: 500;
}

/* -------------------------------------------------------------------------
   Modal générique — utilisée pour le formulaire RDV (et tout autre futur)
   ------------------------------------------------------------------------- */

body.tm-modal-open {
	overflow: hidden;
	/* Compense le retrait de la scrollbar pour éviter le saut de mise en page. */
	padding-right: var(--tm-scrollbar-width, 0px);
}

/* La modal reste TOUJOURS dans le DOM (display: flex) pour que Gravity Forms
   puisse s'initialiser au chargement. On la cache via visibility/opacity et
   on coupe les pointer-events. visibility: hidden la retire aussi du flux
   d'accessibilité — équivalent à display:none côté lecteur d'écran. */
.tm-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .25s ease, visibility 0s linear .25s;
}

.tm-modal.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition: opacity .25s ease, visibility 0s linear 0s;
}

.tm-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(43, 58, 85, 0.55);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	cursor: pointer;
}

.tm-modal__panel {
	position: relative;
	background: #fff;
	border-radius: 18px;
	padding: 2.25rem 2rem 1.75rem;
	max-width: 580px;
	width: 100%;
	max-height: calc(100vh - 2rem);
	overflow-y: auto;
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.30), 0 8px 18px rgba(0, 0, 0, 0.12);
	transform: translateY(20px) scale(0.97);
	transition: transform .25s ease;
	border-top: 4px solid var(--tm-moutarde, #E8A33D);
}

.tm-modal.is-open .tm-modal__panel {
	transform: translateY(0) scale(1);
}

.tm-modal__close {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	width: 36px;
	height: 36px;
	border: 0;
	background: transparent;
	color: var(--tm-bleu-nuit, #2B3A55);
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
	border-radius: 50%;
	font-family: inherit;
	transition: background-color .15s ease, transform .15s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.tm-modal__close:hover {
	background: rgba(43, 58, 85, 0.08);
	transform: scale(1.05);
}

.tm-modal__close:focus-visible {
	outline: 3px solid var(--tm-terracotta, #C85A2E);
	outline-offset: 2px;
}

.tm-modal__title {
	margin: 0 2rem 0.4rem 0;
	font-family: 'Fraunces', Georgia, serif;
	color: var(--tm-bleu-nuit, #2B3A55);
	font-size: 1.5rem;
	font-weight: 800;
	line-height: 1.2;
}

.tm-modal__lede {
	margin: 0 0 1.25rem;
	color: var(--tm-encre, #2B3A55);
	font-size: 0.95rem;
	line-height: 1.5;
	opacity: 0.85;
}

.tm-modal__body {
	margin-top: 0.5rem;
}

/* Reuse des styles GF dans la modal — réutilise tm-rdv__form-wrap. */
.tm-modal__body .gform_wrapper input[type="text"],
.tm-modal__body .gform_wrapper input[type="email"],
.tm-modal__body .gform_wrapper input[type="tel"],
.tm-modal__body .gform_wrapper textarea,
.tm-modal__body .gform_wrapper select {
	border-radius: 10px;
	border: 2px solid rgba(43, 58, 85, 0.12);
	padding: 0.7rem 0.9rem;
	font-family: inherit;
	font-size: 1rem;
	width: 100%;
	box-sizing: border-box;
}

.tm-modal__body .gform_wrapper input:focus,
.tm-modal__body .gform_wrapper textarea:focus,
.tm-modal__body .gform_wrapper select:focus {
	outline: none;
	border-color: var(--tm-terracotta, #C85A2E);
	box-shadow: 0 0 0 3px rgba(200, 90, 46, 0.15);
}

.tm-modal__body .gform_wrapper .gform_button,
.tm-modal__body .gform_wrapper button[type="submit"] {
	background: var(--tm-terracotta, #C85A2E);
	color: #fff;
	border: 0;
	padding: 0.85rem 1.6rem;
	border-radius: 10px;
	font-weight: 700;
	font-size: 1.05rem;
	cursor: pointer;
	transition: background-color .15s ease, transform .15s ease;
}

.tm-modal__body .gform_wrapper .gform_button:hover {
	background: #A8481F;
	transform: translateY(-1px);
}

@media (max-width: 540px) {
	.tm-modal__panel {
		padding: 1.75rem 1.25rem 1.25rem;
		border-radius: 14px;
	}
	.tm-modal__title {
		font-size: 1.25rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tm-modal,
	.tm-modal__panel {
		transition: none;
	}
}

.tm-rdv__fallback {
	padding: 1rem 1.2rem;
	background: var(--tm-creme, #FBF5EC);
	border-radius: 10px;
	color: var(--tm-bleu-nuit, #2B3A55);
	font-style: italic;
	text-align: center;
}

/* Override léger pour Gravity Forms — accord chromatique avec la charte. */
.tm-rdv__form-wrap .gform_wrapper input[type="text"],
.tm-rdv__form-wrap .gform_wrapper input[type="email"],
.tm-rdv__form-wrap .gform_wrapper input[type="tel"],
.tm-rdv__form-wrap .gform_wrapper textarea,
.tm-rdv__form-wrap .gform_wrapper select {
	border-radius: 10px;
	border: 2px solid rgba(43, 58, 85, 0.12);
	padding: 0.7rem 0.9rem;
	font-family: inherit;
	font-size: 1rem;
}

.tm-rdv__form-wrap .gform_wrapper input:focus,
.tm-rdv__form-wrap .gform_wrapper textarea:focus,
.tm-rdv__form-wrap .gform_wrapper select:focus {
	outline: none;
	border-color: var(--tm-terracotta, #C85A2E);
	box-shadow: 0 0 0 3px rgba(200, 90, 46, 0.15);
}

.tm-rdv__form-wrap .gform_wrapper .gform_button,
.tm-rdv__form-wrap .gform_wrapper button[type="submit"] {
	background: var(--tm-terracotta, #C85A2E);
	color: #fff;
	border: 0;
	padding: 0.85rem 1.6rem;
	border-radius: 10px;
	font-weight: 700;
	font-size: 1.05rem;
	cursor: pointer;
	transition: background-color .15s ease, transform .15s ease;
}

.tm-rdv__form-wrap .gform_wrapper .gform_button:hover {
	background: #A8481F;
	transform: translateY(-1px);
}

/* -------------------------------------------------------------------------
   Newsletter — flash messages (succès / erreur)
   ------------------------------------------------------------------------- */

.tm-newsletter__flash {
	padding: 0.85rem 1rem;
	border-radius: 10px;
	margin-bottom: 1rem;
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1.4;
}

.tm-newsletter__flash--ok {
	background: rgba(47, 143, 79, 0.15);
	color: #2F8F4F;
	border: 1px solid rgba(47, 143, 79, 0.3);
}

.tm-newsletter__flash--err {
	background: rgba(200, 90, 46, 0.15);
	color: #A8481F;
	border: 1px solid rgba(200, 90, 46, 0.3);
}

/* -------------------------------------------------------------------------
   Page de recherche
   ------------------------------------------------------------------------- */

.tm-search {
	padding: 56px 0 72px;
}

.tm-search__head {
	max-width: 760px;
	margin: 0 auto 2.5rem;
	text-align: center;
}

.tm-search__head .tm-overline {
	color: var(--tm-terracotta, #C85A2E);
}

.tm-search__title {
	margin: 0.5rem 0 0.75rem;
	font-family: 'Fraunces', Georgia, serif;
	color: var(--tm-bleu-nuit, #2B3A55);
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.1;
	font-weight: 800;
}

.tm-search__title em {
	color: var(--tm-terracotta, #C85A2E);
	font-style: italic;
	font-weight: 700;
}

.tm-search__count {
	color: var(--tm-encre, #2B3A55);
	font-size: 1.05rem;
	margin: 0 0 1.5rem;
	opacity: 0.85;
}

.tm-search__form {
	display: flex;
	gap: 0.5rem;
	max-width: 560px;
	margin: 0 auto;
}

.tm-search__input {
	flex: 1 1 auto;
	min-width: 0;
}

.tm-search__results {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	max-width: 880px;
	margin: 0 auto;
}

.tm-search__item {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	padding: 1.4rem 1.5rem;
	background: #fff;
	border: 1px solid rgba(43, 58, 85, 0.08);
	border-radius: 14px;
	box-shadow: 0 4px 18px rgba(43, 58, 85, 0.06);
	transition: transform .2s ease, box-shadow .2s ease;
}

@media (min-width: 720px) {
	.tm-search__item {
		grid-template-columns: 180px 1fr;
		align-items: start;
	}
}

.tm-search__item:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 26px rgba(43, 58, 85, 0.10);
}

.tm-search__item-thumb {
	display: block;
	overflow: hidden;
	border-radius: 10px;
	aspect-ratio: 4/3;
}

.tm-search__item-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tm-search__item-type {
	display: inline-block;
	padding: 0.15rem 0.6rem;
	background: rgba(200, 90, 46, 0.10);
	color: var(--tm-terracotta, #C85A2E);
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

.tm-search__item-title {
	margin: 0 0 0.5rem;
	font-family: 'Fraunces', Georgia, serif;
	font-size: 1.3rem;
	line-height: 1.25;
	font-weight: 700;
}

.tm-search__item-title a {
	color: var(--tm-bleu-nuit, #2B3A55);
	text-decoration: none;
}

.tm-search__item-title a:hover {
	color: var(--tm-terracotta, #C85A2E);
}

.tm-search__item-excerpt {
	color: var(--tm-encre, #2B3A55);
	font-size: 0.97rem;
	line-height: 1.55;
	margin-bottom: 0.5rem;
	opacity: 0.9;
}

.tm-search__item-meta {
	font-size: 0.85rem;
	color: var(--tm-ink-quiet, #6B7280);
}

.tm-search__pagination {
	margin-top: 2.5rem;
	display: flex;
	justify-content: center;
}

.tm-search__pagination .nav-links {
	display: flex;
	gap: 0.4rem;
	flex-wrap: wrap;
}

.tm-search__pagination a,
.tm-search__pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 0.85rem;
	border-radius: 999px;
	font-weight: 600;
	color: var(--tm-bleu-nuit, #2B3A55);
	text-decoration: none;
	background: #fff;
	border: 1px solid rgba(43, 58, 85, 0.10);
	transition: all .15s ease;
}

.tm-search__pagination a:hover {
	background: var(--tm-creme, #FBF5EC);
	border-color: var(--tm-terracotta, #C85A2E);
}

.tm-search__pagination .current {
	background: var(--tm-terracotta, #C85A2E);
	color: #fff;
	border-color: var(--tm-terracotta, #C85A2E);
}

.tm-search__empty {
	max-width: 560px;
	margin: 2rem auto;
	text-align: center;
	padding: 2.5rem 1.5rem;
	background: var(--tm-creme, #FBF5EC);
	border-radius: 16px;
}

.tm-search__empty-icon {
	font-size: 3.5rem;
	margin-bottom: 0.5rem;
}

.tm-search__empty p {
	color: var(--tm-encre, #2B3A55);
	margin: 0.5rem 0 1.25rem;
}

.tm-search__empty-links {
	display: flex;
	gap: 0.6rem;
	flex-wrap: wrap;
	justify-content: center;
}

.tm-btn--ghost {
	background: transparent;
	color: var(--tm-bleu-nuit, #2B3A55);
	border: 2px solid rgba(43, 58, 85, 0.15);
	padding: 0.7rem 1.3rem;
	border-radius: 10px;
	font-weight: 700;
	text-decoration: none;
	transition: all .15s ease;
}

.tm-btn--ghost:hover {
	background: #fff;
	border-color: var(--tm-bleu-nuit, #2B3A55);
}

/* -------------------------------------------------------------------------
   Page Qui sommes-nous
   ------------------------------------------------------------------------- */

.tm-about {
	background: var(--tm-blanc, #FAF7F2);
}

/* --- Hero éditorial --- */
.tm-about__hero {
	background:
		radial-gradient(ellipse 800px 500px at 80% 0%, rgba(232, 163, 61, 0.20) 0%, transparent 55%),
		linear-gradient(180deg, var(--tm-creme, #FBF5EC) 0%, var(--tm-blanc, #FAF7F2) 100%);
	padding: 72px 0 64px;
	border-bottom: 1px solid rgba(43, 58, 85, 0.06);
}

.tm-about__hero-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: center;
}

@media (min-width: 920px) {
	.tm-about__hero-inner {
		grid-template-columns: 1.4fr 1fr;
	}
}

.tm-about__hero-copy .tm-overline {
	color: var(--tm-terracotta, #C85A2E);
}

.tm-about__title {
	margin: 0.6rem 0 1rem;
	font-family: 'Fraunces', Georgia, serif;
	font-size: clamp(2.2rem, 5vw, 3.6rem);
	line-height: 1.08;
	color: var(--tm-bleu-nuit, #2B3A55);
	font-weight: 800;
	letter-spacing: -0.01em;
}

.tm-about__title em {
	color: var(--tm-terracotta, #C85A2E);
	font-style: italic;
	font-weight: 700;
}

.tm-about__lede {
	color: var(--tm-encre, #2B3A55);
	font-size: 1.1rem;
	line-height: 1.65;
	max-width: 600px;
}

.tm-about__hero-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.9rem;
}

.tm-about__stat {
	background: #fff;
	border: 1px solid rgba(43, 58, 85, 0.08);
	border-radius: 14px;
	padding: 1.1rem 1rem;
	box-shadow: 0 4px 16px rgba(43, 58, 85, 0.06);
	text-align: center;
}

.tm-about__stat:first-child {
	grid-column: span 2;
	border-top: 3px solid var(--tm-moutarde, #E8A33D);
}

.tm-about__stat b {
	display: block;
	font-family: 'Fraunces', Georgia, serif;
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 800;
	color: var(--tm-bleu-nuit, #2B3A55);
	line-height: 1;
	margin-bottom: 0.25rem;
}

.tm-about__stat span {
	color: var(--tm-ink-quiet, #6B7280);
	font-size: 0.85rem;
}

/* --- Story --- */
.tm-about__story {
	padding: 64px 0;
}

.tm-about__story-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 920px) {
	.tm-about__story-inner {
		grid-template-columns: 1.6fr 1fr;
		gap: 3rem;
	}
}

.tm-about__story-text .tm-overline {
	color: var(--tm-terracotta, #C85A2E);
}

.tm-about__story-text .tm-h2 {
	margin: 0.5rem 0 1.25rem;
	font-family: 'Fraunces', Georgia, serif;
	color: var(--tm-bleu-nuit, #2B3A55);
	font-size: clamp(1.8rem, 3.2vw, 2.5rem);
	line-height: 1.15;
}

.tm-about__story-text p {
	color: var(--tm-encre, #2B3A55);
	font-size: 1.05rem;
	line-height: 1.7;
	margin: 0 0 1rem;
}

.tm-about__story-card {
	background: var(--tm-bleu-nuit, #2B3A55);
	color: var(--tm-creme, #FBF5EC);
	border-radius: 18px;
	padding: 2rem 1.75rem;
	box-shadow: 0 16px 40px rgba(43, 58, 85, 0.20);
	position: relative;
	overflow: hidden;
}

.tm-about__story-card::after {
	content: "";
	position: absolute;
	top: -40px; right: -40px;
	width: 160px; height: 160px;
	background: radial-gradient(circle, rgba(232, 163, 61, 0.25), transparent 70%);
	pointer-events: none;
}

.tm-about__story-card-icon {
	font-size: 2.5rem;
	margin-bottom: 0.75rem;
}

.tm-about__quote {
	margin: 0;
	padding: 0;
	border: 0;
}

.tm-about__quote p {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 1.25rem;
	line-height: 1.4;
	font-style: italic;
	margin: 0 0 1rem;
	color: var(--tm-creme, #FBF5EC);
}

.tm-about__quote cite {
	font-style: normal;
	font-weight: 600;
	color: var(--tm-moutarde, #E8A33D);
	font-size: 0.9rem;
	letter-spacing: 0.04em;
}

/* --- Valeurs --- */
.tm-about__values {
	background: var(--tm-creme, #FBF5EC);
	padding: 64px 0;
}

.tm-about__values .tm-section-head {
	text-align: center;
	margin-bottom: 2.5rem;
}

.tm-about__values .tm-overline {
	color: var(--tm-terracotta, #C85A2E);
}

.tm-about__values-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 720px) {
	.tm-about__values-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.tm-about__value {
	background: #fff;
	border-radius: 16px;
	padding: 1.75rem 1.5rem;
	box-shadow: 0 4px 18px rgba(43, 58, 85, 0.06);
	border-top: 3px solid var(--tm-moutarde, #E8A33D);
	transition: transform .2s ease, box-shadow .2s ease;
}

.tm-about__value:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(43, 58, 85, 0.12);
}

.tm-about__value-icon {
	font-size: 2rem;
	margin-bottom: 0.65rem;
}

.tm-about__value h3 {
	margin: 0 0 0.5rem;
	font-family: 'Fraunces', Georgia, serif;
	color: var(--tm-bleu-nuit, #2B3A55);
	font-size: 1.2rem;
}

.tm-about__value p {
	color: var(--tm-encre, #2B3A55);
	margin: 0;
	font-size: 0.97rem;
	line-height: 1.55;
}

/* --- Contact --- */
.tm-about__contact {
	padding: 72px 0 80px;
	background:
		radial-gradient(ellipse 600px 400px at 10% 100%, rgba(200, 90, 46, 0.10) 0%, transparent 60%),
		var(--tm-blanc, #FAF7F2);
}

.tm-about__contact-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: start;
}

@media (min-width: 920px) {
	.tm-about__contact-inner {
		grid-template-columns: 1fr 1.2fr;
		gap: 3rem;
	}
}

.tm-about__contact-intro .tm-overline {
	color: var(--tm-terracotta, #C85A2E);
}

.tm-about__contact-intro .tm-h2 {
	margin: 0.5rem 0 1rem;
	font-family: 'Fraunces', Georgia, serif;
	color: var(--tm-bleu-nuit, #2B3A55);
	font-size: clamp(1.7rem, 3vw, 2.3rem);
	line-height: 1.15;
}

.tm-about__contact-intro p {
	color: var(--tm-encre, #2B3A55);
	font-size: 1.05rem;
	line-height: 1.65;
}

.tm-about__contact-list {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	font-weight: 500;
}

.tm-about__contact-list a {
	color: var(--tm-bleu-nuit, #2B3A55);
	text-decoration: none;
	border-bottom: 1px dashed rgba(200, 90, 46, 0.4);
}

.tm-about__contact-list a:hover {
	color: var(--tm-terracotta, #C85A2E);
	border-bottom-color: var(--tm-terracotta, #C85A2E);
}

.tm-about__contact-form-wrap {
	background: #fff;
	border-radius: 18px;
	padding: 1.75rem 1.6rem;
	box-shadow: 0 16px 40px rgba(43, 58, 85, 0.10);
	border: 1px solid rgba(43, 58, 85, 0.08);
}

/* Inputs Gravity dans le bloc contact (réutilise le style de tm-rdv__form-wrap). */
.tm-about__contact-form-wrap .gform_wrapper input[type="text"],
.tm-about__contact-form-wrap .gform_wrapper input[type="email"],
.tm-about__contact-form-wrap .gform_wrapper input[type="tel"],
.tm-about__contact-form-wrap .gform_wrapper textarea,
.tm-about__contact-form-wrap .gform_wrapper select {
	border-radius: 10px;
	border: 2px solid rgba(43, 58, 85, 0.12);
	padding: 0.7rem 0.9rem;
	font-family: inherit;
	font-size: 1rem;
}

.tm-about__contact-form-wrap .gform_wrapper input:focus,
.tm-about__contact-form-wrap .gform_wrapper textarea:focus {
	outline: none;
	border-color: var(--tm-terracotta, #C85A2E);
	box-shadow: 0 0 0 3px rgba(200, 90, 46, 0.15);
}

.tm-about__contact-form-wrap .gform_wrapper .gform_button {
	background: var(--tm-terracotta, #C85A2E);
	color: #fff;
	border: 0;
	padding: 0.85rem 1.6rem;
	border-radius: 10px;
	font-weight: 700;
	font-size: 1.05rem;
	cursor: pointer;
	transition: background-color .15s ease;
}

.tm-about__contact-form-wrap .gform_wrapper .gform_button:hover {
	background: #A8481F;
}
