/* ======================================================================
   test.css — page test.php uniquement
   Standalone, non inclus dans all.scss/all.css.
   Préfixes `.t-` pour éviter toute collision avec le thème Law Firm existant.
   ====================================================================== */

:root {
	--t-bg: #0e1b2c;
	--t-bg-soft: #16243a;
	--t-text: #1b2633;
	--t-text-soft: #5a6472;
	--t-text-mute: #8a93a0;
	--t-accent: #c9a961;
	--t-accent-dark: #a88a42;
	--t-accent-soft: rgba(201, 169, 97, 0.12);
	--t-white: #ffffff;
	--t-surface: #f7f5f0;
	--t-border: #e6e1d4;
	--t-success: #2ecc71;
	--t-danger: #e74c3c;
	--t-shadow-sm: 0 4px 14px rgba(14, 27, 44, 0.08);
	--t-shadow-md: 0 12px 40px rgba(14, 27, 44, 0.12);
	--t-shadow-lg: 0 24px 60px rgba(14, 27, 44, 0.18);
	--t-radius: 14px;
	--t-radius-sm: 8px;
	--t-ease: cubic-bezier(0.4, 0, 0.2, 1);
	--t-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

.test-page {
	font-family: "Source Sans Pro", "Roboto", sans-serif;
	color: var(--t-text);
	line-height: 1.6;
	overflow-x: hidden;
}

.test-page * {
	box-sizing: border-box;
}

.test-page img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* --- Reveal utility (scroll-trigger) ------------------------------- */
.t-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.8s var(--t-ease-out), transform 0.8s var(--t-ease-out);
	transition-delay: 0ms;
	will-change: opacity, transform;
}
.t-reveal.is-in {
	opacity: 1;
	transform: translateY(0);
}

/* --- Typography ---------------------------------------------------- */
.test-page h1, .test-page h2, .test-page h3 {
	font-family: "Source Sans Pro", "Roboto", sans-serif;
	color: var(--t-text);
	margin: 0 0 0.4em;
	line-height: 1.2;
}
.test-page h2 {
	font-size: 38px;
	font-weight: 300;
	letter-spacing: -0.01em;
}
.test-page h3 {
	font-size: 20px;
	font-weight: 600;
}
.test-page p { margin: 0 0 1em; }

.t-eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--t-accent-dark);
	margin-bottom: 12px;
}
.t-text-accent {
	color: var(--t-accent-dark);
	font-weight: 600;
}
.t-section__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 60px;
}
.t-section__sub {
	color: var(--t-text-soft);
	font-size: 16px;
	margin-top: 10px;
}
.t-lead {
	font-size: 18px;
	line-height: 1.7;
	color: var(--t-text-soft);
	margin-bottom: 28px;
}

/* --- Buttons ------------------------------------------------------- */
.t-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 28px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: var(--t-radius-sm);
	border: 2px solid transparent;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: all 0.3s var(--t-ease);
}
.t-btn--lg {
	padding: 18px 34px;
	font-size: 15px;
}
.t-btn--primary {
	background: var(--t-accent);
	color: #fff;
	border-color: var(--t-accent);
}
.t-btn--primary:hover,
.t-btn--primary:focus {
	background: var(--t-accent-dark);
	border-color: var(--t-accent-dark);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(201, 169, 97, 0.35);
	text-decoration: none;
}
.t-btn--ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.6);
}
.t-btn--ghost:hover,
.t-btn--ghost:focus {
	background: #fff;
	color: var(--t-bg);
	border-color: #fff;
	text-decoration: none;
	transform: translateY(-2px);
}
.t-cta-band .t-btn--ghost {
	color: #fff;
}
.t-contact .t-btn--ghost {
	color: var(--t-text);
	border-color: var(--t-text);
}
.t-contact .t-btn--ghost:hover {
	background: var(--t-text);
	color: #fff;
}

/* ==================================================================
   HERO
================================================================== */
.t-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	overflow: hidden;
}
.t-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.t-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.08);
	animation: t-hero-zoom 18s ease-in-out infinite alternate;
}
@keyframes t-hero-zoom {
	from { transform: scale(1.08); }
	to { transform: scale(1.18); }
}
.t-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(14, 27, 44, 0.82) 0%, rgba(14, 27, 44, 0.62) 60%, rgba(201, 169, 97, 0.28) 100%),
		radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 100%);
}
.t-hero__particles {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.t-particle {
	position: absolute;
	width: 3px;
	height: 3px;
	background: rgba(255, 255, 255, 0.55);
	border-radius: 50%;
	animation: t-float linear infinite;
}
@keyframes t-float {
	from { transform: translateY(110vh) translateX(0); opacity: 0; }
	10%  { opacity: 0.8; }
	90%  { opacity: 0.5; }
	to   { transform: translateY(-10vh) translateX(40px); opacity: 0; }
}

.t-hero__content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 100px 20px;
}
.test-page .t-hero__eyebrow {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--t-accent);
	margin: 0 auto 24px;
}
.test-page .t-hero__title {
	font-size: 74px;
	font-weight: 200;
	line-height: 1.05;
	margin: 0 0 24px;
	color: #fff;
	letter-spacing: -0.02em;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}
.test-page .t-hero__line {
	display: block;
	color: #fff;
}
.test-page .t-hero__line--accent {
	font-weight: 700;
	color: var(--t-accent);
	margin-top: 4px;
}
.test-page .t-hero__line--sub {
	font-size: 30px;
	font-weight: 300;
	color: #fff;
	margin-top: 18px;
	letter-spacing: 0.01em;
}
.test-page .t-hero__baseline {
	font-size: 18px;
	color: #fff;
	max-width: 780px;
	margin: 0 auto 40px;
	text-align: center;
	letter-spacing: 0.02em;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}
.t-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
}

.t-hero__scroll {
	position: absolute;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	opacity: 0.8;
	transition: opacity 0.3s;
}
.t-hero__scroll:hover { opacity: 1; }
.t-hero__mouse {
	display: inline-block;
	width: 26px;
	height: 42px;
	border: 2px solid rgba(255, 255, 255, 0.7);
	border-radius: 14px;
	position: relative;
}
.t-hero__mouse span {
	display: block;
	width: 4px;
	height: 8px;
	background: #fff;
	border-radius: 2px;
	position: absolute;
	top: 6px;
	left: 50%;
	transform: translateX(-50%);
	animation: t-scroll-dot 1.8s ease-in-out infinite;
}
@keyframes t-scroll-dot {
	0%   { transform: translate(-50%, 0); opacity: 1; }
	60%  { transform: translate(-50%, 16px); opacity: 0; }
	100% { transform: translate(-50%, 0); opacity: 0; }
}

/* ==================================================================
   STATS
================================================================== */
.t-stats {
	background: var(--t-bg);
	color: #fff;
	padding: 70px 0;
}
.t-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	text-align: center;
}
.t-stat__num {
	font-size: 58px;
	font-weight: 200;
	color: var(--t-accent);
	line-height: 1;
	margin-bottom: 10px;
	letter-spacing: -0.02em;
}
.t-stat__label {
	font-size: 13px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75);
}

/* ==================================================================
   ABOUT + TIMELINE
================================================================== */
.t-about {
	padding: 110px 0;
	background: #fff;
}
.t-about__grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 70px;
	align-items: start;
}
.t-about__media {
	position: sticky;
	top: 40px;
}
.t-about__photo {
	position: relative;
	border-radius: var(--t-radius);
	overflow: hidden;
	box-shadow: var(--t-shadow-lg);
}
.t-about__photo img {
	width: 100%;
	transition: transform 0.8s var(--t-ease-out);
}
.t-about__photo:hover img {
	transform: scale(1.04);
}
.t-about__badge {
	position: absolute;
	bottom: 20px;
	left: 20px;
	background: var(--t-accent);
	color: #fff;
	padding: 12px 18px;
	border-radius: var(--t-radius-sm);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.05em;
	display: flex;
	align-items: center;
	gap: 10px;
	box-shadow: 0 10px 25px rgba(201, 169, 97, 0.4);
}

.t-timeline {
	list-style: none;
	padding: 0;
	margin: 30px 0 0;
	position: relative;
}
.t-timeline::before {
	content: "";
	position: absolute;
	top: 8px;
	bottom: 8px;
	left: 8px;
	width: 2px;
	background: var(--t-border);
}
.t-timeline__item {
	position: relative;
	padding: 0 0 28px 36px;
}
.t-timeline__item:last-child { padding-bottom: 0; }
.t-timeline__dot {
	position: absolute;
	top: 4px;
	left: 0;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid var(--t-accent);
	transition: all 0.4s var(--t-ease);
}
.t-timeline__item--current .t-timeline__dot {
	background: var(--t-accent);
	box-shadow: 0 0 0 6px var(--t-accent-soft);
	animation: t-pulse 2.2s ease-out infinite;
}
@keyframes t-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.5); }
	70%  { box-shadow: 0 0 0 14px rgba(201, 169, 97, 0); }
	100% { box-shadow: 0 0 0 0 rgba(201, 169, 97, 0); }
}
.t-timeline__content h3 {
	font-size: 17px;
	margin-bottom: 4px;
	color: var(--t-text);
}
.t-timeline__content p {
	font-size: 14px;
	color: var(--t-text-soft);
	margin: 0;
}

/* ==================================================================
   DOMAINS — FLIP CARDS
================================================================== */
.t-domains {
	padding: 110px 0;
	background: var(--t-surface);
}
.t-domains__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
}
.t-card {
	perspective: 1200px;
	height: 320px;
	outline: none;
}
.t-card__inner {
	position: relative;
	width: 100%;
	height: 100%;
	transition: transform 0.8s var(--t-ease-out);
	transform-style: preserve-3d;
}
.t-card:hover .t-card__inner,
.t-card:focus .t-card__inner,
.t-card.is-flipped .t-card__inner {
	transform: rotateY(180deg);
}
.t-card__face {
	position: absolute;
	inset: 0;
	padding: 34px 26px;
	border-radius: var(--t-radius);
	background: #fff;
	box-shadow: var(--t-shadow-md);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}
.t-card__face--back {
	transform: rotateY(180deg);
	background: var(--t-bg);
	color: #fff;
	justify-content: flex-start;
	text-align: left;
	padding: 28px 24px;
}
.t-card__face--back h3 {
	color: var(--t-accent);
	font-size: 18px;
	margin-bottom: 14px;
	border-bottom: 1px solid rgba(201, 169, 97, 0.3);
	padding-bottom: 10px;
}
.t-card__face--back ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.t-card__face--back li {
	position: relative;
	padding: 6px 0 6px 20px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.85);
}
.t-card__face--back li::before {
	content: "›";
	position: absolute;
	left: 0;
	color: var(--t-accent);
	font-weight: 700;
}
.t-card__icon {
	font-size: 40px;
	color: var(--t-accent);
	margin-bottom: 18px;
}
.t-card__hint {
	margin-top: 18px;
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--t-accent-dark);
	font-weight: 600;
}

/* ==================================================================
   CITIES
================================================================== */
.t-cities {
	padding: 110px 0;
	background: #fff;
}
.t-cities__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 14px;
	margin-bottom: 30px;
}
.t-city {
	background: var(--t-surface);
	border: 2px solid var(--t-border);
	border-radius: var(--t-radius-sm);
	padding: 26px 14px;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	color: var(--t-text);
	cursor: pointer;
	transition: all 0.35s var(--t-ease);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}
.t-city i {
	font-size: 22px;
	color: var(--t-accent);
	transition: transform 0.3s var(--t-ease);
}
.t-city:hover,
.t-city:focus {
	background: var(--t-bg);
	border-color: var(--t-bg);
	color: #fff;
	transform: translateY(-4px);
	box-shadow: var(--t-shadow-md);
	outline: none;
}
.t-city:hover i,
.t-city:focus i {
	transform: scale(1.2) translateY(-2px);
}
.t-city--main {
	background: var(--t-accent);
	border-color: var(--t-accent);
	color: #fff;
}
.t-city--main i { color: #fff; }
.t-city--main:hover {
	background: var(--t-accent-dark);
	border-color: var(--t-accent-dark);
}

.t-cities__info {
	background: var(--t-surface);
	border-radius: var(--t-radius);
	padding: 22px 28px;
	text-align: center;
	min-height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	color: var(--t-text);
	transition: background 0.3s;
}
.t-cities__info-placeholder {
	color: var(--t-text-soft);
	font-style: italic;
}
.t-cities__info strong { color: var(--t-accent-dark); }
.t-cities__info-data {
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
	justify-content: center;
}
.t-cities__info-data span { letter-spacing: 0.04em; }

/* ==================================================================
   FAQ
================================================================== */
.t-faq {
	padding: 110px 0;
	background: var(--t-surface);
}
.t-faq__list {
	max-width: 820px;
	margin: 0 auto;
}
.t-faq__item {
	background: #fff;
	border-radius: var(--t-radius-sm);
	margin-bottom: 12px;
	box-shadow: var(--t-shadow-sm);
	overflow: hidden;
	transition: box-shadow 0.3s;
}
.t-faq__item[open] {
	box-shadow: var(--t-shadow-md);
}
.t-faq__item summary {
	list-style: none;
	padding: 20px 24px;
	font-weight: 600;
	font-size: 16px;
	color: var(--t-text);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	user-select: none;
}
.t-faq__item summary::-webkit-details-marker { display: none; }
.t-faq__icon {
	color: var(--t-accent);
	font-size: 16px;
	transition: transform 0.3s var(--t-ease);
	flex-shrink: 0;
}
.t-faq__item[open] .t-faq__icon {
	transform: rotate(45deg);
}
.t-faq__body {
	padding: 0 24px 22px;
	color: var(--t-text-soft);
	font-size: 15px;
	line-height: 1.7;
	animation: t-faq-open 0.4s var(--t-ease-out);
}
@keyframes t-faq-open {
	from { opacity: 0; transform: translateY(-6px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ==================================================================
   CTA BAND
================================================================== */
.t-cta-band {
	padding: 70px 0;
	background: linear-gradient(135deg, var(--t-bg) 0%, #1a2d47 100%);
	position: relative;
	overflow: hidden;
}
.t-cta-band::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -10%;
	width: 520px;
	height: 520px;
	background: radial-gradient(circle, rgba(201, 169, 97, 0.22) 0%, transparent 70%);
	border-radius: 50%;
}
.t-cta-band__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}
.t-cta-band__text h2 {
	color: #fff;
	font-size: 32px;
	font-weight: 300;
	margin-bottom: 6px;
}
.t-cta-band__text p {
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
	font-size: 15px;
}
.t-cta-band__actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

/* ==================================================================
   CONTACT FORM
================================================================== */
.t-contact {
	padding: 110px 0;
	background: #fff;
}
.t-form {
	max-width: 760px;
	margin: 0 auto;
}
.t-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 24px;
}
.t-form__row .t-field--full {
	grid-column: 1 / -1;
}
.t-field {
	position: relative;
}
.t-field__input {
	width: 100%;
	padding: 22px 14px 10px;
	border: none;
	border-bottom: 2px solid var(--t-border);
	background: transparent;
	font-size: 15px;
	font-family: inherit;
	color: var(--t-text);
	outline: none;
	transition: border-color 0.3s;
	border-radius: 0;
}
.t-field__input--area {
	resize: vertical;
	min-height: 130px;
	padding-top: 28px;
}
.t-field__label {
	position: absolute;
	left: 14px;
	top: 20px;
	font-size: 15px;
	color: var(--t-text-soft);
	pointer-events: none;
	transition: all 0.25s var(--t-ease);
	background: transparent;
}
.t-field__input:focus ~ .t-field__label,
.t-field__input:not(:placeholder-shown) ~ .t-field__label {
	top: 2px;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--t-accent-dark);
	font-weight: 600;
}
.t-field__underline {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 0;
	background: var(--t-accent);
	transition: width 0.4s var(--t-ease);
}
.t-field__input:focus ~ .t-field__underline {
	width: 100%;
}
.t-field.is-invalid .t-field__underline {
	background: var(--t-danger);
	width: 100%;
}
.t-field.is-valid .t-field__underline {
	background: var(--t-success);
	width: 100%;
}
.t-field__error {
	display: block;
	min-height: 18px;
	margin-top: 6px;
	font-size: 12px;
	color: var(--t-danger);
}

.t-form__actions {
	margin-top: 20px;
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}
.t-form__hint {
	font-size: 12px;
	color: var(--t-text-soft);
	margin: 0;
	flex: 1;
	min-width: 200px;
}

/* Ripple effect */
.t-btn--ripple { position: relative; overflow: hidden; }
.t-ripple {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	transform: scale(0);
	animation: t-ripple-anim 0.6s linear;
	pointer-events: none;
}
@keyframes t-ripple-anim {
	to { transform: scale(4); opacity: 0; }
}

/* ==================================================================
   RESPONSIVE
================================================================== */
@media (max-width: 991px) {
	.test-page h2 { font-size: 30px; }
	.test-page .t-hero__title { font-size: 56px; }
	.test-page .t-hero__line--sub { font-size: 24px; margin-top: 14px; }
	.t-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
	.t-about__grid { grid-template-columns: 1fr; gap: 40px; }
	.t-about__media { position: static; }
	.t-domains__grid { grid-template-columns: repeat(2, 1fr); }
	.t-cities__grid { grid-template-columns: repeat(3, 1fr); }
	.t-cta-band__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
	.t-hero { min-height: 88vh; }
	.test-page .t-hero__title { font-size: 42px; }
	.test-page .t-hero__line--sub { font-size: 20px; margin-top: 12px; }
	.test-page .t-hero__baseline { font-size: 16px; }
	.t-hero__cta { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
	.t-hero__cta .t-btn { width: 100%; }
	.test-page h2 { font-size: 26px; }
	.t-stat__num { font-size: 44px; }
	.t-about, .t-domains, .t-cities, .t-faq, .t-contact { padding: 70px 0; }
	.t-domains__grid { grid-template-columns: 1fr; }
	.t-card { height: 280px; }
	.t-cities__grid { grid-template-columns: repeat(2, 1fr); }
	.t-form__row { grid-template-columns: 1fr; }
	.t-cta-band__actions { width: 100%; justify-content: center; }
	.t-cta-band__actions .t-btn { flex: 1; min-width: 140px; }
}

/* ==================================================================
   A11Y — reduced motion
================================================================== */
@media (prefers-reduced-motion: reduce) {
	.t-reveal { opacity: 1; transform: none; transition: none; }
	.t-hero__bg img { animation: none; }
	.t-timeline__item--current .t-timeline__dot { animation: none; }
	.t-hero__mouse span { animation: none; }
	.t-particle { display: none; }
	.test-page * { scroll-behavior: auto !important; }
}

/* ======================================================================
   EXTENSIONS index.php (mai 2026) — sections SEO ajoutées :
   .t-deepdive, .t-fees, .t-docs, .t-links, .t-map, .t-articles
   Préfixe .t-* préservé. Variables CSS du :root du .test-page utilisées.
   ====================================================================== */

/* ---------- Card flip : nouveau CTA "En savoir plus" ---------------- */
.t-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 14px;
	padding: 8px 14px;
	background: var(--t-accent);
	color: #1b1208;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 999px;
	transition: background 0.25s var(--t-ease), transform 0.25s var(--t-ease);
}
.t-card__cta:hover, .t-card__cta:focus {
	background: #d6b56b;
	color: #1b1208;
	text-decoration: none;
	transform: translateY(-1px);
}
.t-card__cta::after { content: " →"; }

/* ---------- 5. Deepdive (sections dépliables SEO) ------------------- */
.t-deepdive {
	padding: 80px 0;
	background: var(--t-surface);
}
.t-deepdive__list {
	max-width: 880px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.t-deepdive__item {
	background: var(--t-white);
	border-radius: var(--t-radius);
	box-shadow: var(--t-shadow-sm);
	overflow: hidden;
	transition: box-shadow 0.3s var(--t-ease);
}
.t-deepdive__item[open] {
	box-shadow: var(--t-shadow-md);
}
.t-deepdive__item summary {
	list-style: none;
	cursor: pointer;
	padding: 22px 24px;
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 17px;
	font-weight: 600;
	color: var(--t-text);
	transition: color 0.2s var(--t-ease);
}
.t-deepdive__item summary::-webkit-details-marker { display: none; }
.t-deepdive__item summary > i:first-child {
	color: var(--t-accent-dark);
	font-size: 22px;
	width: 32px;
	text-align: center;
	flex: 0 0 32px;
}
.t-deepdive__item summary > span { flex: 1 1 auto; }
.t-deepdive__icon {
	font-size: 14px;
	color: var(--t-accent-dark);
	transition: transform 0.3s var(--t-ease);
}
.t-deepdive__item[open] .t-deepdive__icon { transform: rotate(45deg); }
.t-deepdive__item summary:hover { color: var(--t-accent-dark); }
.t-deepdive__body {
	padding: 4px 24px 26px 72px;
	color: var(--t-text-soft);
	font-size: 15px;
	line-height: 1.75;
}
.t-deepdive__body p { margin: 0 0 14px; }
.t-deepdive__body p:last-child { margin-bottom: 0; }
.t-deepdive__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--t-accent-dark);
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1.5px solid transparent;
	transition: border-color 0.2s var(--t-ease);
}
.t-deepdive__link:hover { border-bottom-color: var(--t-accent); text-decoration: none; color: var(--t-accent-dark); }

@media (max-width: 600px) {
	.t-deepdive { padding: 60px 0; }
	.t-deepdive__item summary { padding: 18px 18px; font-size: 16px; gap: 12px; }
	.t-deepdive__body { padding: 0 18px 22px 18px; }
}

/* ---------- 7. Fees (honoraires) ------------------------------------ */
.t-fees {
	padding: 100px 0;
	background: var(--t-white);
}
.t-fees__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	max-width: 1080px;
	margin: 0 auto 40px;
}
.t-fees__card {
	background: var(--t-surface);
	border-radius: var(--t-radius);
	padding: 34px 28px;
	text-align: center;
	border: 1px solid var(--t-border);
	transition: transform 0.3s var(--t-ease), box-shadow 0.3s var(--t-ease);
}
.t-fees__card:hover {
	transform: translateY(-4px);
	box-shadow: var(--t-shadow-md);
}
.t-fees__icon {
	font-size: 38px;
	color: var(--t-accent-dark);
	margin-bottom: 14px;
	display: block;
}
.t-fees__card h3 {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 10px;
}
.t-fees__card p {
	margin: 0;
	color: var(--t-text-soft);
	font-size: 14px;
	line-height: 1.65;
}
.t-fees__notice {
	max-width: 880px;
	margin: 0 auto;
	padding: 26px 28px;
	background: var(--t-accent-soft);
	border-left: 3px solid var(--t-accent);
	border-radius: var(--t-radius-sm);
	font-size: 14px;
	line-height: 1.7;
	color: var(--t-text);
}
.t-fees__notice p:last-child { margin-bottom: 0; }
.t-fees__notice a {
	color: var(--t-accent-dark);
	font-weight: 600;
	text-decoration: underline;
}

@media (max-width: 768px) {
	.t-fees { padding: 70px 0; }
	.t-fees__grid { grid-template-columns: 1fr; }
}

/* ---------- 8. Docs (à apporter) ----------------------------------- */
.t-docs {
	padding: 90px 0;
	background: var(--t-bg);
	color: rgba(255, 255, 255, 0.86);
}
.t-docs .t-eyebrow { color: var(--t-accent); }
.t-docs .t-section__head h2 { color: var(--t-white); }
.t-docs__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	max-width: 980px;
	margin: 0 auto;
}
.t-docs__col {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--t-radius);
	padding: 30px 28px;
	transition: background 0.25s var(--t-ease);
}
.t-docs__col:hover {
	background: rgba(255, 255, 255, 0.07);
}
.t-docs__col h3 {
	color: var(--t-white);
	font-size: 16px;
	margin: 0 0 18px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 12px;
}
.t-docs__col h3 i {
	color: var(--t-accent);
	font-size: 22px;
}
.t-docs__col ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.t-docs__col li {
	padding: 8px 0 8px 24px;
	position: relative;
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.82);
}
.t-docs__col li::before {
	content: "›";
	position: absolute;
	left: 0;
	color: var(--t-accent);
	font-weight: 700;
}

@media (max-width: 768px) {
	.t-docs { padding: 70px 0; }
	.t-docs__grid { grid-template-columns: 1fr; gap: 22px; }
}

/* ---------- 10. Liens utiles --------------------------------------- */
.t-links {
	padding: 90px 0;
	background: var(--t-surface);
}
.t-links__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 18px;
	max-width: 1080px;
	margin: 0 auto;
}
.t-links__item {
	background: var(--t-white);
	border-radius: var(--t-radius-sm);
	padding: 22px 22px 22px 64px;
	position: relative;
	color: var(--t-text);
	text-decoration: none;
	transition: transform 0.25s var(--t-ease), box-shadow 0.25s var(--t-ease);
	box-shadow: var(--t-shadow-sm);
	display: block;
}
.t-links__item:hover {
	transform: translateY(-3px);
	box-shadow: var(--t-shadow-md);
	text-decoration: none;
	color: var(--t-text);
}
.t-links__item > i {
	position: absolute;
	left: 22px;
	top: 22px;
	font-size: 22px;
	color: var(--t-accent-dark);
}
.t-links__label {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: var(--t-text);
	margin-bottom: 4px;
	line-height: 1.4;
}
.t-links__host {
	display: block;
	font-size: 12px;
	color: var(--t-text-mute, #8a93a0);
	letter-spacing: 0.04em;
}

@media (max-width: 600px) {
	.t-links { padding: 60px 0; }
}

/* ---------- 11. Map ------------------------------------------------ */
.t-map {
	padding: 80px 0;
	background: var(--t-white);
}
.t-map__frame {
	max-width: 1080px;
	margin: 0 auto;
	border-radius: var(--t-radius);
	overflow: hidden;
	box-shadow: var(--t-shadow-md);
	line-height: 0;
}
.t-map__frame iframe {
	display: block;
	width: 100%;
	border: 0;
}

/* ---------- 12. Derniers articles ---------------------------------- */
.t-articles {
	padding: 90px 0;
	background: var(--t-surface);
}
.t-articles__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	max-width: 1180px;
	margin: 0 auto;
}
.t-article {
	background: var(--t-white);
	border-radius: var(--t-radius);
	overflow: hidden;
	box-shadow: var(--t-shadow-sm);
	display: flex;
	flex-direction: column;
	transition: transform 0.3s var(--t-ease), box-shadow 0.3s var(--t-ease);
}
.t-article:hover {
	transform: translateY(-5px);
	box-shadow: var(--t-shadow-md);
}
.t-article__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: var(--t-surface);
}
.t-article__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--t-ease);
}
.t-article:hover .t-article__media img {
	transform: scale(1.04);
}
.t-article__body {
	padding: 22px 24px 26px;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
}
.t-article__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 12px;
	font-size: 12px;
	color: var(--t-text-soft);
}
.t-article__tag {
	background: var(--t-accent-soft);
	color: var(--t-accent-dark);
	padding: 4px 10px;
	border-radius: 999px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 10px;
}
.t-article__meta time {
	font-size: 12px;
	color: var(--t-text-soft);
}
.t-article h3 {
	font-size: 17px;
	line-height: 1.4;
	margin: 0 0 12px;
	font-weight: 700;
}
.t-article h3 a {
	color: var(--t-text);
	text-decoration: none;
	transition: color 0.2s var(--t-ease);
}
.t-article h3 a:hover { color: var(--t-accent-dark); text-decoration: none; }
.t-article__body p {
	font-size: 14px;
	color: var(--t-text-soft);
	line-height: 1.65;
	margin: 0 0 18px;
}
.t-article__link {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--t-accent-dark);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	text-decoration: none;
	transition: gap 0.25s var(--t-ease);
}
.t-article__link:hover {
	gap: 10px;
	text-decoration: none;
	color: var(--t-accent-dark);
}
.t-articles__more {
	text-align: center;
	margin-top: 40px;
}

@media (max-width: 991px) {
	.t-articles__grid { grid-template-columns: 1fr 1fr; }
	.t-articles__grid > .t-article:nth-child(3) { grid-column: 1 / -1; max-width: 560px; margin: 0 auto; }
}
@media (max-width: 600px) {
	.t-articles { padding: 60px 0; }
	.t-articles__grid { grid-template-columns: 1fr; }
	.t-articles__grid > .t-article:nth-child(3) { max-width: none; }
}

/* ---------- Mini-CTA inline (clair + sombre) ----------------------- */
.t-cta-mini {
	padding: 40px 0;
	background: var(--t-surface);
}
.t-cta-mini__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	max-width: 1080px;
	margin: 0 auto;
	padding: 22px 32px;
	background: var(--t-white);
	border-radius: var(--t-radius);
	box-shadow: var(--t-shadow-sm);
	border-left: 4px solid var(--t-accent);
}
.t-cta-mini__text {
	margin: 0;
	font-size: 17px;
	font-weight: 600;
	color: var(--t-text);
	flex: 1 1 auto;
	min-width: 220px;
}
.t-cta-mini__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.t-cta-mini__actions .t-btn {
	font-size: 12px;
	padding: 12px 20px;
}

.t-cta-mini--dark {
	background: var(--t-bg);
}
.t-cta-mini--dark .t-cta-mini__inner {
	background: var(--t-bg-soft);
	color: var(--t-white);
	border-left-color: var(--t-accent);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}
.t-cta-mini--dark .t-cta-mini__text {
	color: var(--t-white);
}

@media (max-width: 720px) {
	.t-cta-mini { padding: 30px 0; }
	.t-cta-mini__inner {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
		padding: 24px 22px;
	}
	.t-cta-mini__text { min-width: 0; }
	.t-cta-mini__actions { justify-content: center; }
	.t-cta-mini__actions .t-btn { flex: 1 1 auto; min-width: 140px; justify-content: center; }
}

/* ======================================================================
   PAGES INTÉRIEURES (compétences / villes / articles / mentions)
   Composants partagés : hero compact, breadcrumbs, contenu long-form
   ====================================================================== */

/* ---------- Page hero compact (pas full-screen) -------------------- */
.t-page-hero {
	position: relative;
	min-height: 360px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--t-white);
	overflow: hidden;
	padding: 80px 24px;
	margin-top: 0;
}
.t-page-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.t-page-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.t-page-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(14,27,44,0.78) 0%, rgba(14,27,44,0.6) 50%, rgba(14,27,44,0.85) 100%);
	z-index: 1;
}
.t-page-hero__content {
	position: relative;
	z-index: 2;
	max-width: 900px;
}
.t-page-hero .t-eyebrow {
	color: var(--t-accent);
	margin-bottom: 14px;
}
.t-page-hero h1 {
	font-size: 44px;
	font-weight: 300;
	line-height: 1.15;
	color: var(--t-white);
	margin: 0 0 16px;
	letter-spacing: -0.01em;
}
.t-page-hero h1 strong, .t-page-hero h1 .t-text-accent {
	color: var(--t-accent);
	font-weight: 600;
}
.t-page-hero__baseline {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.85);
	max-width: 680px;
	margin: 0 auto;
	line-height: 1.6;
}
@media (max-width: 720px) {
	.t-page-hero { min-height: 280px; padding: 60px 20px; }
	.t-page-hero h1 { font-size: 32px; }
	.t-page-hero__baseline { font-size: 16px; }
}

/* ---------- Breadcrumbs simples ----------------------------------- */
.t-breadcrumbs {
	background: var(--t-surface);
	border-bottom: 1px solid var(--t-border);
	padding: 16px 0;
	font-size: 13px;
}
.t-breadcrumbs__list {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--t-text-soft);
}
.t-breadcrumbs__list li {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.t-breadcrumbs__list li + li::before {
	content: "›";
	color: var(--t-text-mute, #8a93a0);
}
.t-breadcrumbs a {
	color: var(--t-text-soft);
	text-decoration: none;
	transition: color 0.2s var(--t-ease);
}
.t-breadcrumbs a:hover { color: var(--t-accent-dark); text-decoration: none; }
.t-breadcrumbs__list li:last-child { color: var(--t-text); font-weight: 600; }

/* ---------- Section contenu long-form (texte article/présentation) -- */
.t-content {
	padding: 70px 0;
	background: var(--t-white);
}
.t-content--surface { background: var(--t-surface); }
.t-content__wrap {
	max-width: 880px;
	margin: 0 auto;
	padding: 0 24px;
}
.t-content__head {
	margin-bottom: 36px;
	text-align: center;
}
.t-content__head .t-eyebrow { display: inline-block; }
.t-content__head h2 {
	font-size: 32px;
	font-weight: 300;
	letter-spacing: -0.01em;
	margin: 8px 0 0;
}
.t-content__lead {
	font-size: 19px;
	line-height: 1.7;
	color: var(--t-text-soft);
	font-weight: 400;
	margin-bottom: 28px;
}
.t-content__body {
	color: var(--t-text);
	font-size: 16px;
	line-height: 1.8;
}
.t-content__body h2 {
	font-size: 26px;
	font-weight: 400;
	margin: 36px 0 16px;
	color: var(--t-text);
	letter-spacing: -0.01em;
	position: relative;
	padding-left: 16px;
}
.t-content__body h2::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 26px;
	background: var(--t-accent);
	border-radius: 2px;
}
.t-content__body h3 {
	font-size: 20px;
	font-weight: 600;
	margin: 28px 0 12px;
	color: var(--t-text);
}
.t-content__body p { margin: 0 0 16px; color: var(--t-text-soft); }
.t-content__body strong { color: var(--t-text); }
.t-content__body ul, .t-content__body ol {
	margin: 0 0 20px;
	padding-left: 0;
	list-style: none;
}
.t-content__body ul li, .t-content__body ol li {
	padding: 6px 0 6px 26px;
	position: relative;
	color: var(--t-text-soft);
}
.t-content__body ul li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 6px;
	color: var(--t-accent-dark);
	font-weight: 700;
}
.t-content__body ol { counter-reset: oli; }
.t-content__body ol li {
	counter-increment: oli;
}
.t-content__body ol li::before {
	content: counter(oli);
	position: absolute;
	left: 0;
	top: 6px;
	color: var(--t-accent-dark);
	font-weight: 700;
	font-size: 14px;
}
.t-content__body a {
	color: var(--t-accent-dark);
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1.5px solid var(--t-accent-soft);
	transition: border-color 0.2s var(--t-ease);
}
.t-content__body a:hover {
	border-bottom-color: var(--t-accent);
	color: var(--t-accent-dark);
	text-decoration: none;
}
.t-content__body img {
	max-width: 100%;
	height: auto;
	border-radius: var(--t-radius);
	margin: 22px 0;
	box-shadow: var(--t-shadow-sm);
}

@media (max-width: 720px) {
	.t-content { padding: 50px 0; }
	.t-content__lead { font-size: 17px; }
	.t-content__body h2 { font-size: 22px; }
}

/* ---------- Section "intro" courte (juste avant le contenu) -------- */
.t-intro {
	padding: 64px 0 24px;
	background: var(--t-white);
	text-align: center;
}
.t-intro p {
	max-width: 760px;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1.7;
	color: var(--t-text-soft);
}

/* ---------- Liste de services / interventions (puces dorées) ------- */
.t-service-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px 24px;
	max-width: 760px;
	margin: 32px auto 0;
	padding: 0;
	list-style: none;
}
.t-service-list li {
	padding: 12px 0 12px 32px;
	position: relative;
	font-size: 15px;
	color: var(--t-text);
	border-bottom: 1px solid var(--t-border);
}
.t-service-list li::before {
	content: "›";
	position: absolute;
	left: 8px;
	top: 12px;
	color: var(--t-accent-dark);
	font-weight: 700;
	font-size: 18px;
}
@media (max-width: 600px) {
	.t-service-list { grid-template-columns: 1fr; }
}

/* ---------- Bloc info ville (distance + tribunal) ------------------ */
.t-city-info {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	max-width: 880px;
	margin: 0 auto 40px;
}
.t-city-info__card {
	background: var(--t-surface);
	border-radius: var(--t-radius);
	padding: 24px 20px;
	text-align: center;
	border-left: 3px solid var(--t-accent);
}
.t-city-info__card i {
	color: var(--t-accent-dark);
	font-size: 24px;
	margin-bottom: 10px;
	display: block;
}
.t-city-info__card strong {
	display: block;
	color: var(--t-text);
	font-size: 17px;
	margin-bottom: 4px;
}
.t-city-info__card span {
	font-size: 13px;
	color: var(--t-text-soft);
}
@media (max-width: 600px) {
	.t-city-info { grid-template-columns: 1fr; }
}

/* ---------- Related pages (cross-link bas de page) ----------------- */
.t-related {
	padding: 70px 0;
	background: var(--t-surface);
}
.t-related h2 {
	font-size: 22px;
	font-weight: 400;
	text-align: center;
	margin: 0 0 32px;
}
.t-related__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 20px;
}
.t-related__item {
	background: var(--t-white);
	border-radius: var(--t-radius-sm);
	padding: 20px 22px;
	color: var(--t-text);
	text-decoration: none;
	box-shadow: var(--t-shadow-sm);
	transition: transform 0.25s var(--t-ease), box-shadow 0.25s var(--t-ease);
	display: block;
	border-left: 3px solid transparent;
}
.t-related__item:hover {
	transform: translateY(-3px);
	box-shadow: var(--t-shadow-md);
	border-left-color: var(--t-accent);
	text-decoration: none;
	color: var(--t-text);
}
.t-related__item strong {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: var(--t-text);
	margin-bottom: 4px;
}
.t-related__item span {
	font-size: 12px;
	color: var(--t-text-soft);
}

/* ---------- Article single (post blog) ---------------------------- */
.t-post {
	padding: 70px 0;
	background: var(--t-white);
}
.t-post__wrap {
	max-width: 820px;
	margin: 0 auto;
	padding: 0 24px;
}
.t-post__media {
	margin-bottom: 36px;
	border-radius: var(--t-radius);
	overflow: hidden;
	box-shadow: var(--t-shadow-md);
	aspect-ratio: 16 / 7;
	background: var(--t-surface);
}
.t-post__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.t-post__meta {
	display: flex;
	gap: 12px;
	align-items: center;
	font-size: 13px;
	color: var(--t-text-soft);
	margin-bottom: 24px;
}
.t-post__meta .t-article__tag {
	background: var(--t-accent-soft);
	color: var(--t-accent-dark);
	padding: 4px 10px;
	border-radius: 999px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 10px;
}
.t-post__back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 36px;
	color: var(--t-text-soft);
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: color 0.2s var(--t-ease), gap 0.2s var(--t-ease);
}
.t-post__back:hover { color: var(--t-accent-dark); gap: 10px; text-decoration: none; }

/* ---------- Mentions légales (simple typo) ------------------------ */
.t-legal {
	padding: 80px 0;
	background: var(--t-white);
}
.t-legal__wrap {
	max-width: 760px;
	margin: 0 auto;
	padding: 0 24px;
	color: var(--t-text);
	font-size: 15px;
	line-height: 1.8;
}
.t-legal h1 {
	font-size: 30px;
	font-weight: 300;
	margin: 0 0 14px;
}
.t-legal h2 {
	font-size: 18px;
	font-weight: 600;
	margin: 28px 0 10px;
	color: var(--t-text);
	padding-left: 14px;
	position: relative;
}
.t-legal h2::before {
	content: "";
	position: absolute;
	left: 0;
	top: 6px;
	bottom: 6px;
	width: 3px;
	background: var(--t-accent);
	border-radius: 2px;
}
.t-legal p { margin: 0 0 14px; color: var(--t-text-soft); }
.t-legal a { color: var(--t-accent-dark); font-weight: 600; }
