/**
 * Photo Identité Vannes — Main Stylesheet
 * @package PhotoIdentiteVannes
 * @version 1.0.0
 */

/* ===========================================
   VARIABLES & RESET
   =========================================== */
:root {
	--cream:        #f4efe8;
	--cream-deep:   #ebe4d9;
	--ink:          #1c1a17;
	--ink-soft:     #3a352f;
	--muted:        #7a6f63;
	--line:         #d9d0c2;
	--accent:       #8a6a4a;
	--white:        #ffffff;
	--display: "Fraunces", "Cormorant Garamond", Georgia, serif;
	--body:    "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
	font-family: var(--body);
	color: var(--ink);
	background: var(--cream);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Accessibilité — skip link */
.skip-link, .screen-reader-text {
	position: absolute;
	left: -9999px;
	top: 0;
}
.skip-link:focus {
	left: 16px;
	top: 16px;
	background: var(--ink);
	color: var(--cream);
	padding: 12px 18px;
	z-index: 999;
}

/* ===========================================
   LAYOUT
   =========================================== */
.wrap {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
}

/* ===========================================
   TYPOGRAPHIE
   =========================================== */
h1, h2, h3, h4 {
	font-family: var(--display);
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: -0.015em;
	color: var(--ink);
}

.eyebrow {
	font-family: var(--body);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 22px;
	display: inline-block;
}

/* ===========================================
   HEADER
   =========================================== */
header.site {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(244, 239, 232, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--line);
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 0;
}

.logo {
	display: flex;
	align-items: center;
	gap: 14px;
	font-family: var(--display);
	font-size: 22px;
	font-weight: 500;
	line-height: 1.1;
}
.logo-mark {
	height: 48px;
	width: auto;
	flex-shrink: 0;
	display: block;
}
.logo-mark svg {
	height: 100%;
	width: auto;
	display: block;
}
.logo-text {
	display: flex;
	flex-direction: column;
}
.logo-text small {
	font-family: var(--body);
	font-size: 10px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--muted);
	margin-top: 2px;
	font-weight: 500;
}

/* ----- Bouton hamburger (mobile) ----- */
.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 10px;
	margin: 0;
	z-index: 60;
	position: relative;
}
.hamburger-bars {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 24px;
	height: 18px;
}
.hamburger-bars span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--ink);
	border-radius: 1px;
	transform-origin: center;
	transition: transform 0.32s ease, opacity 0.2s ease, background 0.2s ease;
}
.menu-toggle[aria-expanded="true"] .hamburger-bars span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
	background: var(--cream);
}
.menu-toggle[aria-expanded="true"] .hamburger-bars span:nth-child(2) {
	opacity: 0;
}
.menu-toggle[aria-expanded="true"] .hamburger-bars span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
	background: var(--cream);
}

nav.menu ul {
	list-style: none;
	display: flex;
	gap: 38px;
	align-items: center;
}
nav.menu a {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.04em;
	padding: 6px 0;
	transition: color 0.2s ease;
}
nav.menu a:hover { color: var(--accent); }
nav.menu a.cta {
	background: var(--ink);
	color: var(--cream);
	padding: 12px 22px;
	border-radius: 2px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 12px;
	white-space: nowrap;
}
nav.menu a.cta:hover {
	background: var(--accent);
	color: var(--white);
}
.cta-short { display: none; }
@media (max-width: 1180px) {
	.cta-long { display: none; }
	.cta-short { display: inline; }
}

/* ===========================================
   BUTTONS
   =========================================== */
.btn {
	display: inline-block;
	padding: 18px 34px;
	background: var(--cream);
	color: var(--ink);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	border-radius: 2px;
	border: 1px solid var(--cream);
	cursor: pointer;
	transition: all 0.25s ease;
}
.btn:hover {
	background: var(--accent);
	color: var(--cream);
	border-color: var(--accent);
}
/* Override dans le hero (fond sombre) : on garde l'effet "transparent + cream" */
.hero .btn:hover {
	background: transparent;
	color: var(--cream);
	border-color: var(--cream);
}
.btn.ghost {
	background: transparent;
	color: var(--ink);
	border-color: var(--ink);
}
.btn.ghost:hover {
	background: var(--ink);
	color: var(--cream);
}
.btn.outline {
	background: transparent;
	color: var(--cream);
	border-color: rgba(244, 239, 232, 0.4);
}
.btn.outline:hover {
	background: var(--cream);
	color: var(--ink);
	border-color: var(--cream);
}

/* ===========================================
   HERO
   =========================================== */
.hero {
	position: relative;
	min-height: 88vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.hero-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, #1c1a17 0%, #2a241d 60%, #3a3027 100%);
}
.hero-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("https://images.unsplash.com/photo-1606112219348-204d7d8b94ee?w=1800&auto=format&fit=crop&q=80");
	background-size: cover;
	background-position: center;
	opacity: 0.55;
	filter: grayscale(20%) contrast(1.05);
}
.hero-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(28, 26, 23, 0.35) 0%, rgba(28, 26, 23, 0.55) 60%, rgba(28, 26, 23, 0.85) 100%);
}
.hero-inner {
	position: relative;
	z-index: 2;
	padding: 140px 0 100px;
	max-width: 760px;
	color: var(--cream);
}
.hero .eyebrow { color: #d9c3a3; }
.hero h1 {
	color: var(--cream);
	font-size: clamp(44px, 6.4vw, 88px);
	font-weight: 300;
	margin-bottom: 28px;
}
.hero h1 em {
	font-style: italic;
	font-weight: 400;
	color: #e9d6b8;
}
.hero p.lead {
	font-size: clamp(16px, 1.4vw, 19px);
	color: #ede4d3;
	margin-bottom: 32px;
	max-width: 580px;
}
.hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 36px;
}
.hero-badges span {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 9px 16px 9px 12px;
	background: rgba(244, 239, 232, 0.08);
	border: 1px solid rgba(244, 239, 232, 0.18);
	border-radius: 999px;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #ede4d3;
	font-weight: 500;
}
.hero-badges .piv-icon {
	width: 22px;
	height: 22px;
	color: #c9a570;
	flex-shrink: 0;
}

/* ===========================================
   SECTIONS COMMUNES
   =========================================== */
section {
	padding: 120px 0;
}

.section-head {
	text-align: center;
	max-width: 820px;
	margin: 0 auto 70px;
}
.section-head h2 {
	font-size: clamp(36px, 4.4vw, 58px);
	font-weight: 300;
	margin-bottom: 22px;
}
.section-head h2 em { font-style: italic; }
.section-head p {
	font-size: 17px;
	color: var(--ink-soft);
	line-height: 1.7;
}

/* ===========================================
   SPLIT (image / texte)
   =========================================== */
.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 90px;
	align-items: center;
}
.split.reverse .split-text { order: 2; }

.split-images {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.split-images .img-box {
	aspect-ratio: 3/4;
	background: var(--cream-deep);
	overflow: hidden;
	border-radius: 2px;
}
.split-images .img-box:first-child {
	transform: translateY(-30px);
}
.split-images .img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s ease;
}
.split-images .img-box:hover img {
	transform: scale(1.04);
}

.split-text h2 {
	font-size: clamp(34px, 3.8vw, 50px);
	margin-bottom: 26px;
	font-weight: 300;
}
.split-text h2 em { font-style: italic; }
.split-text p {
	color: var(--ink-soft);
	font-size: 16px;
	margin-bottom: 18px;
	line-height: 1.75;
}
.split-text ul {
	list-style: none;
	margin: 24px 0 32px;
}
.split-text ul li {
	position: relative;
	padding: 12px 0 12px 30px;
	border-bottom: 1px solid var(--line);
	font-size: 15px;
	color: var(--ink-soft);
}
.split-text ul li::before {
	content: "—";
	position: absolute;
	left: 0;
	color: var(--accent);
	font-weight: 500;
}

/* ===========================================
   DOCS / PRESTATIONS GRID
   =========================================== */
.docs { background: var(--cream-deep); }
.docs-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	background: var(--line);
	border: 1px solid var(--line);
}
.doc-card {
	background: var(--cream);
	padding: 50px 38px;
	transition: background 0.3s ease;
}
.doc-card:hover { background: var(--white); }
.doc-card .num {
	font-family: var(--display);
	font-style: italic;
	font-size: 14px;
	color: var(--accent);
	margin-bottom: 18px;
}
.doc-card h3 {
	font-size: 26px;
	font-weight: 400;
	margin-bottom: 14px;
}
.doc-card p {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.7;
}

/* ===========================================
   ZONE GÉOGRAPHIQUE
   =========================================== */
.zone { background: var(--cream); }
.zone-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 36px;
	margin-top: 50px;
}
.zone-col {
	background: var(--white);
	padding: 38px 32px;
	border: 1px solid var(--line);
}
.zone-col h3 {
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 8px;
}
.zone-col .dist {
	font-family: var(--body);
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 22px;
	display: block;
}
.zone-col ul {
	list-style: none;
	columns: 2;
	column-gap: 18px;
}
.zone-col ul li {
	padding: 5px 0;
	font-size: 14px;
	color: var(--ink-soft);
	break-inside: avoid;
}
.zone-col ul li::before {
	content: "· ";
	color: var(--accent);
	font-weight: 700;
}

/* ===========================================
   BANNER (image pleine largeur)
   =========================================== */
.banner {
	position: relative;
	height: 60vh;
	min-height: 480px;
	overflow: hidden;
}
.banner-bg {
	position: absolute;
	inset: 0;
	background-image: url("https://images.unsplash.com/photo-1555252333-9f8e92e65df9?w=1800&auto=format&fit=crop&q=80");
	background-size: cover;
	background-position: center;
	filter: brightness(0.55);
}
.banner-text {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--cream);
}
.banner-text h2 {
	color: var(--cream);
	font-size: clamp(36px, 5vw, 64px);
	font-weight: 300;
	max-width: 820px;
	line-height: 1.15;
}
.banner-text h2 em {
	font-style: italic;
	color: #e9d6b8;
}

/* ===========================================
   BÉBÉ (section sombre)
   =========================================== */
.bebe-bg {
	background: var(--ink);
	color: var(--cream);
}
.bebe-bg .split-text h2 { color: var(--cream); font-weight: 300; }
.bebe-bg .split-text p { color: rgba(244, 239, 232, 0.75); }
.bebe-bg .split-text ul li {
	border-bottom-color: rgba(244, 239, 232, 0.15);
	color: rgba(244, 239, 232, 0.85);
}
.bebe-bg .eyebrow { color: #d9c3a3; }

/* ===========================================
   TARIFS
   =========================================== */
.tarifs-section { background: var(--cream-deep); }
.tarifs-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 30px;
}
.tarif-card {
	background: var(--white);
	border: 1px solid var(--line);
	padding: 44px 36px;
	text-align: center;
	transition: all 0.3s ease;
}
.tarif-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 40px rgba(28, 26, 23, 0.08);
}
.tarif-card.featured {
	background: var(--ink);
	color: var(--cream);
	border-color: var(--ink);
}
.tarif-card.featured h3 { color: var(--cream); }
.tarif-card.featured .price { color: #e9d6b8; }
.tarif-card .label {
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 14px;
}
.tarif-card.featured .label { color: #d9c3a3; }
.tarif-card h3 {
	font-size: 26px;
	font-weight: 400;
	margin-bottom: 22px;
}
.tarif-card .price {
	font-family: var(--display);
	font-size: 52px;
	font-weight: 300;
	margin-bottom: 6px;
	line-height: 1;
}
.tarif-card .desc {
	font-size: 14px;
	color: var(--muted);
	margin: 18px 0 28px;
	line-height: 1.7;
}
.tarif-card.featured .desc {
	color: rgba(244, 239, 232, 0.7);
}
.tarifs-note {
	text-align: center;
	margin-top: 36px;
	font-size: 13px;
	color: var(--muted);
	letter-spacing: 0.04em;
}
.tarifs-note a {
	color: var(--accent);
	text-decoration: underline;
}

/* ===========================================
   TÉMOIGNAGE
   =========================================== */
.testimonial {
	background: var(--cream-deep);
	text-align: center;
	padding: 130px 0;
}
.testimonial blockquote {
	max-width: 820px;
	margin: 0 auto;
	font-family: var(--display);
	font-style: italic;
	font-weight: 300;
	font-size: clamp(22px, 2.4vw, 32px);
	line-height: 1.45;
	color: var(--ink);
	position: relative;
}
.testimonial blockquote::before {
	content: "\201C";
	font-size: 120px;
	color: var(--accent);
	opacity: 0.25;
	position: absolute;
	top: -60px;
	left: 50%;
	transform: translateX(-50%);
	font-family: var(--display);
	line-height: 1;
}
.testimonial cite {
	display: block;
	margin-top: 36px;
	font-style: normal;
	font-family: var(--body);
	font-size: 12px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--muted);
}

/* ===========================================
   FAQ
   =========================================== */
.faq-list {
	max-width: 880px;
	margin: 0 auto;
}
.faq-item {
	border-bottom: 1px solid var(--line);
}
.faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 30px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--display);
	font-size: clamp(18px, 1.6vw, 23px);
	font-weight: 400;
	color: var(--ink);
	transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary .plus {
	font-family: var(--body);
	font-size: 24px;
	font-weight: 300;
	color: var(--accent);
	transition: transform 0.3s ease;
	flex-shrink: 0;
	margin-left: 24px;
}
.faq-item[open] summary .plus {
	transform: rotate(45deg);
}
.faq-item .answer {
	padding: 0 0 34px;
	color: var(--ink-soft);
	font-size: 15px;
	line-height: 1.8;
	max-width: 720px;
}
.faq-item .answer p { margin-bottom: 12px; }
.faq-item .answer ul {
	list-style: none;
	padding-left: 0;
	margin: 12px 0;
}
.faq-item .answer ul li {
	padding: 6px 0 6px 22px;
	position: relative;
}
.faq-item .answer ul li::before {
	content: "—";
	position: absolute;
	left: 0;
	color: var(--accent);
}

/* ===========================================
   CONTACT FINAL
   =========================================== */
.contact {
	background: var(--ink);
	color: var(--cream);
	text-align: center;
	padding: 140px 0;
}
.contact h2 {
	color: var(--cream);
	font-size: clamp(40px, 5vw, 64px);
	font-weight: 300;
	margin-bottom: 24px;
}
.contact h2 em {
	font-style: italic;
	color: #e9d6b8;
}
.contact p.lead {
	color: rgba(244, 239, 232, 0.75);
	max-width: 580px;
	margin: 0 auto 40px;
	font-size: 17px;
	line-height: 1.7;
}
.contact .cta-row {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}
.contact-info {
	margin-top: 60px;
	padding-top: 50px;
	border-top: 1px solid rgba(244, 239, 232, 0.12);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}
.contact-info .item .lbl {
	font-size: 11px;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: #d9c3a3;
	margin-bottom: 12px;
}
.contact-info .item .val {
	font-family: var(--display);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.4;
}

/* ===========================================
   FOOTER
   =========================================== */
footer.site {
	background: #14120f;
	color: rgba(244, 239, 232, 0.55);
	padding: 60px 0 36px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(244, 239, 232, 0.08);
}
footer.site h4 {
	color: var(--cream);
	font-family: var(--body);
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 20px;
}
footer.site .brand h4 {
	font-family: var(--display);
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
	margin-bottom: 12px;
}
footer.site p, footer.site a {
	font-size: 13px;
	line-height: 1.8;
}
footer.site a:hover { color: var(--cream); }
footer.site ul { list-style: none; }
footer.site ul li { margin-bottom: 8px; }
.legal {
	padding-top: 26px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	font-size: 12px;
}
.footer-legal-menu {
	display: inline-flex;
	gap: 14px;
	list-style: none;
}

/* ===========================================
   PAGE STANDARD (mentions légales, etc.)
   =========================================== */
.single-page {
	padding: 140px 0 100px;
	min-height: 60vh;
}
.page-header {
	margin-bottom: 50px;
	max-width: 820px;
}
.page-header h1 {
	font-size: clamp(36px, 5vw, 58px);
	font-weight: 300;
	margin-bottom: 12px;
}
.entry-content {
	max-width: 760px;
	color: var(--ink-soft);
	font-size: 16px;
	line-height: 1.8;
}
.entry-content p { margin-bottom: 18px; }
.entry-content h2 {
	font-size: 28px;
	font-weight: 400;
	margin: 40px 0 16px;
}
.entry-content h3 {
	font-size: 22px;
	font-weight: 400;
	margin: 30px 0 12px;
}
.entry-content a {
	color: var(--accent);
	text-decoration: underline;
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 960px) {
	.wrap { padding: 0 22px; }
	section { padding: 80px 0; }
	.split { grid-template-columns: 1fr; gap: 50px; }
	.split.reverse .split-text { order: initial; }
	.split-images .img-box:first-child { transform: none; }
	.docs-grid { grid-template-columns: 1fr; }
	.zone-grid { grid-template-columns: 1fr; }
	.tarifs-grid { grid-template-columns: 1fr; }
	.contact-info { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; gap: 30px; }
	.hero-inner { padding: 110px 0 80px; }

	/* ----- Menu hamburger mobile ----- */
	.menu-toggle {
		display: flex;
		position: fixed;
		top: 18px;
		right: 22px;
		z-index: 60;
	}

	nav.menu {
		position: fixed;
		inset: 0;
		background: var(--ink);
		z-index: 55;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 80px 24px 60px;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-12px);
		transition: opacity 0.32s ease, transform 0.32s ease, visibility 0.32s;
		overflow-y: auto;
	}
	nav.menu.is-open {
		opacity: 1;
		visibility: visible;
		transform: none;
	}
	nav.menu ul {
		flex-direction: column;
		gap: 0;
		align-items: center;
		width: 100%;
		max-width: 480px;
		list-style: none;
	}
	nav.menu li {
		display: block;
		width: 100%;
		text-align: center;
	}
	nav.menu a {
		display: block;
		color: var(--cream) !important;
		font-family: var(--display);
		font-size: clamp(26px, 5vw, 36px);
		font-weight: 300;
		letter-spacing: -0.005em;
		text-transform: none;
		padding: 14px 16px;
		transition: color 0.2s ease;
	}
	nav.menu a:hover {
		color: #d9c3a3 !important;
	}
	nav.menu a.cta {
		background: var(--cream);
		color: var(--ink) !important;
		font-family: var(--body);
		font-size: 12px;
		font-weight: 600;
		letter-spacing: 0.18em;
		text-transform: uppercase;
		padding: 18px 32px;
		margin-top: 28px;
		border-radius: 2px;
		display: inline-block;
		width: auto;
	}
	nav.menu a.cta:hover {
		background: var(--accent);
		color: var(--cream) !important;
	}
	/* Sur mobile, le CTA affiche la version courte */
	.cta-long { display: none; }
	.cta-short { display: inline; }

	/* Verrouillage du scroll du body quand menu ouvert */
	body.menu-open {
		overflow: hidden;
	}
}

@media (max-width: 540px) {
	.logo-mark { height: 38px; }
	.logo { font-size: 17px; gap: 10px; }
	.logo-text small { font-size: 9px; }
}

/* ===========================================
   ANIMATIONS
   =========================================== */
.fade-up {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.9s ease, transform 0.9s ease;
}
.fade-up.in {
	opacity: 1;
	transform: none;
}

/* ===========================================
   PICTOGRAMMES DESSINÉS À LA MAIN
   =========================================== */
.piv-icon {
	display: inline-block;
	width: 40px;
	height: 40px;
	color: var(--accent);
	vertical-align: middle;
}

/* Pictos dans la grille prestations (page d'accueil) */
.doc-icon {
	margin-bottom: 22px;
}
.doc-icon .piv-icon {
	width: 48px;
	height: 48px;
	color: var(--accent);
	transition: transform 0.35s ease, color 0.25s ease;
}
.doc-card:hover .doc-icon .piv-icon {
	transform: translateY(-2px) rotate(-2deg);
	color: var(--ink);
}
a.doc-card .doc-icon .piv-icon {
	color: var(--accent);
}
a.doc-card:hover .doc-icon .piv-icon {
	color: var(--ink);
}

/* ===========================================
   DOC CARDS — version lien (V3)
   =========================================== */
a.doc-card {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
	position: relative;
	display: block;
}
a.doc-card:hover {
	background: var(--white);
}
.doc-link {
	display: inline-block;
	margin-top: 18px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent);
	transition: transform 0.25s ease;
}
a.doc-card:hover .doc-link {
	transform: translateX(4px);
}

/* ===========================================
   BREADCRUMB
   =========================================== */
.breadcrumb {
	padding: 32px 0 0;
	font-size: 13px;
}
.breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	color: var(--muted);
}
.breadcrumb li {
	display: inline-flex;
	align-items: center;
}
.breadcrumb li:not(:last-child)::after {
	content: "›";
	margin-left: 8px;
	color: var(--line);
	font-weight: 400;
}
.breadcrumb a {
	color: var(--muted);
	transition: color 0.2s ease;
}
.breadcrumb a:hover {
	color: var(--accent);
}
.breadcrumb [aria-current="page"] {
	color: var(--ink);
	font-weight: 500;
}

/* ===========================================
   SERVICE PAGE
   =========================================== */
.service-page {
	padding-bottom: 0;
}

/* Hero compact des pages service */
.service-hero {
	padding: 60px 0 90px;
	border-bottom: 1px solid var(--line);
}
.service-hero-inner {
	max-width: 820px;
}
.service-hero h1 {
	font-size: clamp(38px, 5.4vw, 68px);
	font-weight: 300;
	margin-bottom: 24px;
	line-height: 1.05;
}
.service-hero h1 em {
	font-style: italic;
	color: var(--accent);
	font-weight: 400;
}
.service-hero p.lead {
	font-size: clamp(16px, 1.4vw, 19px);
	color: var(--ink-soft);
	line-height: 1.65;
	margin-bottom: 36px;
	max-width: 680px;
}
.service-cta-row {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

/* Specs (3 colonnes) */
.service-specs {
	padding: 60px 0;
	background: var(--cream-deep);
}
.specs-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	background: var(--line);
	border: 1px solid var(--line);
}
.spec-card {
	background: var(--cream);
	padding: 32px 28px;
	text-align: center;
}
.spec-label {
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 10px;
}
.spec-value {
	font-family: var(--display);
	font-size: 26px;
	font-weight: 400;
	color: var(--ink);
}

/* Intro texte */
.service-intro {
	padding: 100px 0;
}
.intro-content {
	max-width: 760px;
}
.intro-content h2 {
	font-size: clamp(30px, 3.4vw, 44px);
	font-weight: 300;
	margin-bottom: 28px;
}
.intro-content p {
	font-size: 17px;
	line-height: 1.75;
	color: var(--ink-soft);
	margin-bottom: 18px;
}

/* Process (3 étapes) */
.service-process {
	padding: 100px 0;
	background: var(--cream-deep);
}
.process-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.process-card {
	background: var(--cream);
	padding: 38px 32px;
	border: 1px solid var(--line);
	border-radius: 2px;
}
.process-num {
	font-family: var(--display);
	font-style: italic;
	font-size: 32px;
	font-weight: 400;
	color: var(--accent);
	margin-bottom: 14px;
}
.process-card h3 {
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 12px;
}
.process-card p {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.7;
}

/* Tips / Bon à savoir */
.service-tips {
	padding: 100px 0;
}
.tips-inner {
	max-width: 820px;
}
.tips-inner h2 {
	font-size: clamp(28px, 3.2vw, 40px);
	font-weight: 300;
	margin-bottom: 32px;
}
.tips-list {
	list-style: none;
	padding: 0;
}
.tips-list li {
	position: relative;
	padding: 16px 0 16px 32px;
	border-bottom: 1px solid var(--line);
	font-size: 15px;
	color: var(--ink-soft);
	line-height: 1.6;
}
.tips-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 16px;
	color: var(--accent);
	font-weight: 700;
}

/* Bloc tarif */
.service-price {
	padding: 100px 0;
	background: var(--ink);
	color: var(--cream);
	text-align: center;
}
.price-block {
	max-width: 580px;
	margin: 0 auto;
}
.service-price .eyebrow {
	color: #d9c3a3;
}
.service-price h2 {
	color: var(--cream);
	font-size: clamp(28px, 3.4vw, 42px);
	font-weight: 300;
	margin-bottom: 30px;
}
.price-display {
	margin: 28px 0;
}
.price-display .amount,
.price-display .amount-text {
	font-family: var(--display);
	font-size: clamp(64px, 8vw, 96px);
	font-weight: 300;
	color: #e9d6b8;
	line-height: 1;
	display: inline-block;
}
.price-display .amount-text {
	font-size: clamp(40px, 5vw, 56px);
	font-style: italic;
}
.price-label {
	font-size: 14px;
	color: rgba(244, 239, 232, 0.65);
	margin-bottom: 36px;
	max-width: 420px;
	margin-left: auto;
	margin-right: auto;
}
.service-price .btn {
	background: var(--cream);
	color: var(--ink);
	border-color: var(--cream);
}
.service-price .btn:hover {
	background: transparent;
	color: var(--cream);
}

/* FAQ service */
.service-faq {
	padding: 100px 0;
	background: var(--cream-deep);
}

/* Related services */
.service-related {
	padding: 100px 0;
}
.related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.related-card {
	background: var(--white);
	border: 1px solid var(--line);
	padding: 36px 32px;
	display: block;
	color: inherit;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}
.related-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 36px rgba(28, 26, 23, 0.06);
	border-color: var(--accent);
}
.related-eyebrow {
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--accent);
	display: block;
	margin-bottom: 16px;
}
.related-card h3 {
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 12px;
	line-height: 1.15;
}
.related-card p {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.65;
	margin-bottom: 18px;
}
.related-link {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink);
	transition: color 0.2s ease;
}
.related-card:hover .related-link {
	color: var(--accent);
}

/* Contact spécifique pages service */
.service-contact {
	padding: 100px 0;
}

/* ===========================================
   RESPONSIVE pages service
   =========================================== */
@media (max-width: 960px) {
	.specs-grid { grid-template-columns: 1fr; }
	.process-grid { grid-template-columns: 1fr; gap: 16px; }
	.related-grid { grid-template-columns: 1fr; }
	.service-hero { padding: 40px 0 60px; }
	.service-intro,
	.service-process,
	.service-tips,
	.service-price,
	.service-faq,
	.service-related,
	.service-contact { padding: 60px 0; }
}

/* ===========================================
   PAGE RÉSERVATION (booking)
   =========================================== */
.booking-page {
	padding-bottom: 0;
}

/* Hero compact */
.booking-hero {
	padding: 60px 0 70px;
	border-bottom: 1px solid var(--line);
}
.booking-hero-inner {
	max-width: 820px;
}
.booking-hero h1 {
	font-size: clamp(38px, 5.4vw, 64px);
	font-weight: 300;
	margin-bottom: 24px;
	line-height: 1.05;
}
.booking-hero h1 em {
	font-style: italic;
	color: var(--accent);
	font-weight: 400;
}
.booking-hero p.lead {
	font-size: clamp(16px, 1.4vw, 19px);
	color: var(--ink-soft);
	line-height: 1.65;
	max-width: 680px;
}
.booking-hero p.lead a {
	color: var(--accent);
	text-decoration: underline;
	font-weight: 500;
}

/* Iframe container */
.booking-widget {
	padding: 60px 0 80px;
	background: var(--cream-deep);
}
.booking-iframe-container {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 2px;
	padding: 12px;
	min-height: 620px;
	box-shadow: 0 12px 32px rgba(28, 26, 23, 0.04);
}
#lbIFrameAllSchedulingCalendars {
	border: none !important;
	padding: 0 !important;
	width: 100% !important;
	min-height: 600px;
	display: block;
}
.booking-fallback {
	text-align: center;
	margin-top: 28px;
	font-size: 14px;
	color: var(--muted);
}
.booking-fallback a {
	color: var(--accent);
	text-decoration: underline;
}

/* Alternatives */
.booking-alternatives {
	padding: 100px 0;
}
.alternatives-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.alt-card {
	background: var(--white);
	border: 1px solid var(--line);
	padding: 40px 32px;
	text-align: center;
	transition: all 0.3s ease;
}
.alt-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 36px rgba(28, 26, 23, 0.06);
}
.alt-num {
	font-family: var(--display);
	font-style: italic;
	font-size: 24px;
	color: var(--accent);
	margin-bottom: 14px;
}
.alt-card h3 {
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 14px;
}
.alt-card p {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.7;
	margin-bottom: 24px;
}

@media (max-width: 960px) {
	.alternatives-grid { grid-template-columns: 1fr; }
	.booking-hero { padding: 40px 0 50px; }
	.booking-widget { padding: 40px 0 60px; }
	.booking-alternatives { padding: 60px 0; }
	.booking-iframe-container { padding: 6px; min-height: 800px; }
	#lbIFrameAllSchedulingCalendars { min-height: 780px; }
}

/* ===========================================
   BLOG — Article unique
   =========================================== */
.blog-single {
	padding-bottom: 0;
}
.post-article {
	padding: 0 0 80px;
}
.post-header {
	padding: 60px 0 50px;
}
.post-header-inner {
	max-width: 820px;
}
.post-title {
	font-size: clamp(38px, 6vw, 72px);
	font-weight: 300;
	line-height: 1.05;
	margin: 18px 0 26px;
}
.post-title em {
	font-style: italic;
	color: var(--accent);
}
.post-meta {
	font-size: 13px;
	letter-spacing: 0.06em;
	color: var(--muted);
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}
.post-meta .sep {
	color: var(--line);
}
.post-meta a {
	color: var(--accent);
	text-decoration: underline;
}
.post-featured {
	margin: 0 0 60px;
}
.post-featured img {
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
	object-fit: cover;
	border-radius: 2px;
}

/* Contenu d'article */
.post-content-inner {
	max-width: 760px;
	margin: 0 auto;
	font-size: 17px;
	line-height: 1.75;
	color: var(--ink-soft);
}
.post-content-inner > * {
	margin-bottom: 22px;
}
.post-content-inner p {
	margin-bottom: 22px;
}
.post-content-inner h2 {
	font-family: var(--display);
	font-weight: 400;
	font-size: clamp(28px, 3.4vw, 38px);
	color: var(--ink);
	margin-top: 50px;
	margin-bottom: 18px;
	line-height: 1.2;
	letter-spacing: -0.01em;
}
.post-content-inner h2 em { font-style: italic; }
.post-content-inner h3 {
	font-family: var(--display);
	font-weight: 400;
	font-size: clamp(22px, 2.4vw, 28px);
	color: var(--ink);
	margin-top: 36px;
	margin-bottom: 14px;
}
.post-content-inner h4 {
	font-family: var(--body);
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 0.02em;
	color: var(--ink);
	margin-top: 26px;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 13px;
}
.post-content-inner a {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
}
.post-content-inner a:hover {
	color: var(--ink);
}
.post-content-inner strong {
	color: var(--ink);
	font-weight: 600;
}
.post-content-inner em {
	font-style: italic;
}
.post-content-inner blockquote {
	margin: 36px 0;
	padding: 26px 32px;
	border-left: 3px solid var(--accent);
	background: var(--cream-deep);
	font-family: var(--display);
	font-style: italic;
	font-size: 21px;
	line-height: 1.55;
	color: var(--ink);
}
.post-content-inner ul, .post-content-inner ol {
	padding-left: 24px;
	margin-bottom: 22px;
}
.post-content-inner li {
	margin-bottom: 10px;
}
.post-content-inner img {
	width: 100%;
	height: auto;
	border-radius: 2px;
	margin: 30px 0;
}
.post-content-inner figure {
	margin: 30px 0;
}
.post-content-inner figcaption {
	font-size: 13px;
	color: var(--muted);
	text-align: center;
	margin-top: 10px;
	font-style: italic;
}
.post-content-inner hr {
	margin: 50px auto;
	border: 0;
	border-top: 1px solid var(--line);
	width: 60px;
}

/* Tags */
.post-tags {
	padding: 30px 0 0;
}
.post-tags-inner {
	max-width: 760px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}
.tags-label {
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--muted);
	margin-right: 8px;
}
.tag-pill {
	display: inline-block;
	padding: 6px 14px;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 12px;
	letter-spacing: 0.04em;
	color: var(--ink-soft);
	transition: all 0.2s ease;
}
.tag-pill:hover {
	background: var(--ink);
	color: var(--cream);
	border-color: var(--ink);
}

/* Articles liés */
.related-articles {
	padding: 100px 0;
	background: var(--cream-deep);
}

/* ===========================================
   BLOG — Index & archives
   =========================================== */
.blog-index {
	padding-bottom: 0;
}
.blog-hero {
	padding: 60px 0 70px;
	border-bottom: 1px solid var(--line);
}
.blog-hero-inner {
	max-width: 820px;
}
.blog-hero h1 {
	font-size: clamp(40px, 6vw, 76px);
	font-weight: 300;
	margin: 18px 0 24px;
	line-height: 1.05;
}
.blog-hero h1 em {
	font-style: italic;
	color: var(--accent);
}
.blog-hero p.lead {
	font-size: 17px;
	color: var(--ink-soft);
	line-height: 1.7;
	max-width: 680px;
}
.blog-list {
	padding: 80px 0 100px;
}

/* Grille articles */
.posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 36px;
	margin-bottom: 70px;
}
.post-card {
	display: flex;
	flex-direction: column;
	color: inherit;
	text-decoration: none;
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: 2px;
	overflow: hidden;
	transition: all 0.3s ease;
}
.post-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(28, 26, 23, 0.08);
	border-color: var(--accent);
}
.post-card-img {
	aspect-ratio: 4/3;
	overflow: hidden;
	background: var(--cream-deep);
}
.post-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}
.post-card:hover .post-card-img img {
	transform: scale(1.04);
}
.post-card-img-empty {
	background: linear-gradient(135deg, var(--cream-deep), var(--cream));
}
.post-card-body {
	padding: 28px 28px 30px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.post-card-cat {
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--accent);
	font-weight: 500;
	margin-bottom: 12px;
}
.post-card-title {
	font-family: var(--display);
	font-size: 22px;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 12px;
	color: var(--ink);
}
.post-card-excerpt {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.65;
	margin-bottom: 18px;
	flex: 1;
}
.post-card-meta {
	font-size: 12px;
	color: var(--muted);
	display: flex;
	gap: 8px;
	align-items: center;
	letter-spacing: 0.04em;
	padding-top: 14px;
	border-top: 1px solid var(--line);
}
.post-card-meta .sep {
	color: var(--line);
}
.post-card-link {
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent);
	font-weight: 500;
	margin-top: 12px;
}

/* Pagination */
.pagination {
	display: flex;
	justify-content: center;
	margin-top: 60px;
}
.pagination ul, .pagination .page-numbers {
	list-style: none;
	display: flex;
	gap: 6px;
	padding: 0;
}
.pagination li {
	display: inline-block;
}
.pagination .page-numbers {
	display: inline-flex;
	min-width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	padding: 0 14px;
	border: 1px solid var(--line);
	color: var(--ink);
	font-size: 14px;
	font-weight: 500;
	transition: all 0.2s ease;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
	background: var(--ink);
	color: var(--cream);
	border-color: var(--ink);
}

.no-posts {
	text-align: center;
	padding: 60px 0;
	color: var(--muted);
}
.no-posts p {
	margin-bottom: 24px;
}

/* Formulaire de recherche */
.search-form {
	display: flex;
	gap: 10px;
	max-width: 480px;
}
.search-field {
	flex: 1;
	padding: 14px 18px;
	border: 1px solid var(--line);
	background: var(--white);
	font-family: var(--body);
	font-size: 14px;
	border-radius: 2px;
}
.search-field:focus {
	outline: none;
	border-color: var(--accent);
}

/* Responsive blog */
@media (max-width: 960px) {
	.posts-grid { grid-template-columns: 1fr; gap: 24px; }
	.post-header { padding: 40px 0 30px; }
	.post-content-inner h2 { margin-top: 40px; }
	.post-featured { margin: 0 0 40px; }
	.related-articles { padding: 60px 0; }
	.related-articles .related-grid { grid-template-columns: 1fr; }
	.blog-hero { padding: 40px 0 50px; }
	.blog-list { padding: 60px 0 80px; }
}
