/* ==========================================================================
   Kuto — feuille de style principale
   Palette : noir profond, surfaces graphite, accent rouge carmin.
   Typo   : Outfit (titres, wordmark) + Inter (texte).
   ========================================================================== */

:root {
	--bg: #0e1013;
	--bg-2: #121519;
	--surface: #181c21;
	--surface-2: #1e2329;
	--line: rgba(255, 255, 255, 0.08);
	--line-strong: rgba(255, 255, 255, 0.16);
	--text: #f3f2ef;
	--muted: #9ea4ab;
	--muted-2: #6c737b;
	--accent: #e0134f;
	--accent-2: #ff2e6a;
	--accent-soft: rgba(224, 19, 79, 0.16);

	--font-display: "Outfit", "Helvetica Neue", Arial, sans-serif;
	--font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

	--container: 1240px;
	--gutter: clamp(20px, 4vw, 56px);
	--section: clamp(88px, 12vw, 160px);
	--radius: 4px;

	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--accent); color: #fff; padding: 8px 14px; }
.skip-link:focus { left: 8px; }

/* --- Layout ------------------------------------------------------------ */
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.container--narrow { max-width: 720px; }
.section { padding-block: var(--section); position: relative; }
.section + .section::before {
	content: "";
	position: absolute; inset: 0 0 auto 0; height: 1px;
	background: linear-gradient(90deg, transparent, var(--line-strong) 20%, var(--line-strong) 80%, transparent);
}
.section__head { margin-bottom: clamp(36px, 5vw, 56px); }
.section__title {
	font-size: clamp(30px, 3.6vw, 44px);
	font-weight: 500;
	max-width: 18ch;
}
.section__note { color: var(--muted); }

/* Surtitre « — À PROPOS » */
.eyebrow {
	display: inline-flex; align-items: center; gap: 12px;
	margin: 0 0 18px;
	color: var(--accent-2);
	font-size: 11px; font-weight: 600;
	letter-spacing: 0.22em; text-transform: uppercase;
}
.eyebrow__line { width: 28px; height: 1px; background: currentColor; flex: none; }
.eyebrow--small { font-size: 10px; letter-spacing: 0.2em; color: var(--muted); margin: 0; }
.eyebrow--small .eyebrow__line { background: var(--accent); }

/* --- Boutons ----------------------------------------------------------- */
.btn {
	display: inline-flex; align-items: center; gap: 12px;
	padding: 15px 26px;
	font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
	border-radius: var(--radius);
	border: 1px solid transparent;
	transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease), color 0.25s var(--ease);
	white-space: nowrap;
}
.btn .icon { width: 14px; height: 14px; }
.btn .icon svg { width: 100%; height: 100%; }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn--ghost { border-color: var(--line-strong); color: var(--text); background: rgba(255, 255, 255, 0.02); }
.btn--ghost:hover { border-color: var(--text); }
.btn:disabled { opacity: 0.6; cursor: wait; transform: none; }

.icon { display: inline-flex; width: 1em; height: 1em; flex: none; }
.icon svg { width: 100%; height: 100%; }

/* --- Header ------------------------------------------------------------ */
.site-header {
	position: fixed; inset: 0 0 auto 0; z-index: 50;
	padding-block: 26px;
	transition: background 0.35s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header.is-scrolled {
	padding-block: 14px;
	background: rgba(14, 16, 19, 0.82);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 1px 0 var(--line);
}
.site-header__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: start; gap: 24px; }
.site-header__brand { display: flex; flex-direction: column; gap: 22px; }
.site-header.is-scrolled .site-header__brand .eyebrow--small { display: none; }
.brand {
	font-family: var(--font-display); font-weight: 500;
	font-size: 15px; letter-spacing: 0.42em; text-transform: uppercase;
	padding-left: 32px;
}
.custom-logo { max-height: 40px; width: auto; }
.site-nav { justify-self: center; }
.nav-list { display: flex; gap: clamp(18px, 2.6vw, 36px); }
.nav-list a {
	font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
	color: var(--text); opacity: 0.85;
	position: relative; padding-block: 4px;
}
.nav-list a::after {
	content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
	background: var(--accent-2); transform: scaleX(0); transform-origin: left;
	transition: transform 0.3s var(--ease);
}
.nav-list a:hover, .nav-list a.is-active { opacity: 1; }
.nav-list a:hover::after, .nav-list a.is-active::after { transform: scaleX(1); }
.site-header__right { justify-self: end; display: flex; align-items: center; gap: 22px; }
.lang-switch { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; }
.lang-switch a { color: var(--muted); }
.lang-switch a.is-current, .lang-switch a:hover { color: var(--text); }
.lang-switch__sep { color: var(--muted-2); }
.nav-toggle { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; gap: 6px; align-items: center; }
.nav-toggle__bar { width: 22px; height: 1.5px; background: var(--text); transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:last-child { transform: translateY(-3.75px) rotate(-45deg); }

/* --- Hero -------------------------------------------------------------- */
.hero {
	position: relative; min-height: 100svh;
	display: flex; align-items: flex-end;
	padding: 200px 0 clamp(72px, 10vh, 120px);
	overflow: hidden;
	isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg::before {
	/* Nuage carmin à gauche, gris-vert froid à droite, fond charbon. */
	content: ""; position: absolute; inset: -10%;
	background-image: var(--hero-image, none), radial-gradient(60% 70% at 32% 42%, rgba(150, 12, 44, 0.85) 0%, rgba(120, 10, 40, 0.45) 30%, transparent 62%),
		radial-gradient(50% 60% at 78% 30%, rgba(74, 92, 90, 0.55) 0%, rgba(50, 62, 64, 0.25) 35%, transparent 65%),
		radial-gradient(70% 60% at 50% 100%, rgba(14, 16, 19, 1) 0%, rgba(14, 16, 19, 0.7) 40%, transparent 70%),
		linear-gradient(180deg, #16181c 0%, #0f1114 100%);
	background-size: cover;
	background-position: center;
	background-blend-mode: soft-light, normal, normal, normal, normal;
}
.hero__bg::after {
	/* Grain / texture griffée. */
	content: ""; position: absolute; inset: 0; opacity: 0.55; mix-blend-mode: overlay;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.9 0 0 0 0 0.9 0 0 0 0 0.9 0 0 0 0.35 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__inner { position: relative; }
.hero__eyebrow {
	margin: 0 0 14px;
	font-size: 11px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
	color: rgba(243, 242, 239, 0.9);
}
.hero__title {
	font-size: clamp(76px, 14vw, 172px);
	font-weight: 300;
	line-height: 0.95;
	letter-spacing: 0.01em;
	margin: 0 0 22px -0.03em;
	text-shadow: 0 10px 60px rgba(0, 0, 0, 0.45);
}
.hero__subtitle { font-family: var(--font-display); font-size: clamp(20px, 2.2vw, 26px); font-weight: 500; margin: 0 0 12px; }
.hero__text { max-width: 44ch; color: var(--muted); margin: 0 0 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__scroll {
	position: absolute; right: var(--gutter); bottom: 48px;
	display: flex; flex-direction: column; align-items: center; gap: 14px;
	color: var(--muted); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
}
.hero__scroll span { writing-mode: vertical-rl; }
.hero__scroll i { width: 1px; height: 56px; background: linear-gradient(180deg, var(--muted), transparent); animation: scrollHint 2.4s var(--ease) infinite; }
@keyframes scrollHint { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* --- À propos ---------------------------------------------------------- */
.about__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(40px, 6vw, 96px); align-items: center; }
.about__media { position: relative; padding-bottom: 60px; padding-right: 40px; }
.about__img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; filter: grayscale(1) contrast(1.05); }
.about__img--placeholder { background: linear-gradient(160deg, #23282e, #101215); }
.about__img-2 {
	position: absolute; right: 0; bottom: 0;
	width: 34%; aspect-ratio: 1; object-fit: cover;
	border: 1px solid var(--line-strong);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
	filter: grayscale(1) contrast(1.1);
}
.about__lead { font-weight: 500; color: var(--text); }
.about__content p { color: var(--muted); max-width: 58ch; }
.about__content .about__lead { color: var(--text); }
.stats {
	display: grid; grid-template-columns: repeat(3, auto); justify-content: start; gap: clamp(28px, 4vw, 64px);
	margin-top: 36px; padding-top: 32px;
	border-top: 1px solid var(--line-strong);
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat__value { font-family: var(--font-display); font-size: clamp(28px, 2.6vw, 34px); font-weight: 500; letter-spacing: 0.02em; }
.stat__label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

/* --- Portfolio --------------------------------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filter {
	padding: 10px 16px;
	background: var(--surface); color: var(--muted);
	font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
	border-radius: var(--radius); border: 1px solid transparent;
	transition: color 0.2s, background 0.25s var(--ease), border-color 0.25s;
}
.filter:hover { color: var(--text); border-color: var(--line-strong); }
.filter.is-active { background: var(--accent); color: #fff; }

.work-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: minmax(0, 1fr); grid-auto-flow: dense; gap: 18px; }
.work { position: relative; background: var(--surface); overflow: hidden; border-radius: var(--radius); }
.work--wide { grid-column: span 2; }
.work.is-hidden { display: none; }
.work__link { display: block; height: 100%; position: relative; }
.work__media { width: 100%; height: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 0.9s var(--ease); }
.work--wide .work__media { aspect-ratio: 2 / 1; }
.work__media--empty { background: repeating-linear-gradient(45deg, #1b2025 0 12px, #171b20 12px 24px); }
.work__link:hover .work__media { transform: scale(1.04); }
.work__caption {
	position: absolute; inset: auto 0 0 0;
	padding: 48px 20px 18px;
	display: flex; flex-direction: column; gap: 4px;
	background: linear-gradient(180deg, transparent, rgba(10, 11, 13, 0.9));
	opacity: 0; transform: translateY(8px);
	transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.work__link:hover .work__caption, .work__link:focus-visible .work__caption { opacity: 1; transform: none; }
.work__title { font-family: var(--font-display); font-size: 17px; font-weight: 500; }
.work__style { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-2); }
.work-grid__empty { color: var(--muted); margin-top: 24px; }

/* --- Comment réserver -------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.step {
	position: relative;
	padding: 36px 34px 44px;
	border-left: 1px solid var(--line);
	overflow: hidden;
	transition: background 0.4s var(--ease);
}
.step:first-child { border-left: 0; }
.step:hover { background: var(--surface); }
.step__num { display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.2em; color: var(--accent-2); margin-bottom: 26px; }
.step__ghost {
	position: absolute; top: 18px; right: 22px;
	font-family: var(--font-display); font-weight: 300;
	font-size: 64px; line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1px rgba(255, 255, 255, 0.16);
	transition: color 0.4s var(--ease), -webkit-text-stroke-color 0.4s;
}
.step:hover .step__ghost { color: var(--accent-soft); -webkit-text-stroke-color: rgba(224, 19, 79, 0.5); }
.step__title { font-size: 19px; margin-bottom: 12px; }
.step__text { color: var(--muted); max-width: 34ch; margin: 0; }

/* --- Témoignages ------------------------------------------------------- */
.quotes { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 8px; cursor: grab; }
.quotes::-webkit-scrollbar { display: none; }
.quotes.is-dragging { cursor: grabbing; user-select: none; }
.quotes__track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(300px, 380px); gap: 18px; }
.quote {
	margin: 0; padding: 26px 26px 22px;
	background: var(--surface);
	border-radius: var(--radius);
	scroll-snap-align: start;
	display: flex; flex-direction: column; gap: 16px;
}
.quote .icon--quote { color: var(--accent-2); width: 20px; height: 20px; }
.quote__text { margin: 0; font-family: var(--font-display); font-size: 17px; font-style: italic; font-weight: 400; line-height: 1.45; }
.quote__text p { margin: 0; }
.quote__foot { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); margin-top: auto; }
.quote__name { font-size: 13px; font-weight: 600; }
.quote__meta { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); text-align: right; }

/* --- FAQ --------------------------------------------------------------- */
.accordion { border-top: 1px solid var(--line); }
.acc { border-bottom: 1px solid var(--line); }
.acc__heading { font-size: inherit; }
.acc__trigger {
	width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
	padding: 20px 0; text-align: left;
	font-family: var(--font-body); font-size: 14px; font-weight: 600;
	transition: color 0.25s;
}
.acc__trigger .icon { width: 16px; height: 16px; color: var(--muted); transition: transform 0.35s var(--ease); }
.acc__trigger:hover, .acc__trigger[aria-expanded="true"] { color: var(--accent-2); }
.acc__trigger[aria-expanded="true"] .icon { transform: rotate(180deg); color: var(--accent-2); }
.acc__panel { overflow: hidden; }
.acc__panel[hidden] { display: none; } /* sans JS */
.acc__content { padding: 0 0 22px; color: var(--muted); max-width: 62ch; }
.acc__content > :last-child { margin-bottom: 0; }

/* --- Contact / formulaire --------------------------------------------- */
.contact__grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 2fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.contact__intro p { color: var(--muted); max-width: 36ch; }
.contact__studio {
	font-style: normal; display: flex; flex-direction: column; gap: 6px;
	margin-top: 32px;
	font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}
.contact__studio a { color: var(--text); }
.contact__studio a:hover { color: var(--accent-2); }

.form { position: relative; }
.form__hp { position: absolute; left: -9999px; opacity: 0; }
.form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 32px; row-gap: 26px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field > label { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.field > label i { color: var(--accent-2); font-style: normal; }
.field input, .field textarea, .field select {
	width: 100%;
	background: transparent; color: var(--text);
	border: 0; border-bottom: 1px solid var(--line-strong);
	padding: 10px 0 12px;
	font: inherit; font-size: 14px;
	border-radius: 0;
	transition: border-color 0.25s;
}
.field textarea { resize: vertical; min-height: 64px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-bottom-color: var(--accent-2); }
.field.has-error input, .field.has-error textarea { border-bottom-color: var(--accent); }
.field__error { font-size: 12px; color: var(--accent-2); }
.select { position: relative; }
.select select { appearance: none; -webkit-appearance: none; padding-right: 28px; cursor: pointer; }
.select option { background: var(--surface); color: var(--text); }
.select .icon { position: absolute; right: 0; top: 50%; transform: translateY(-40%); width: 16px; height: 16px; color: var(--muted); pointer-events: none; }

.upload {
	display: flex; align-items: center; justify-content: center; gap: 10px;
	padding: 20px;
	border: 1px dashed var(--accent);
	border-radius: var(--radius);
	color: var(--accent-2);
	font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
	cursor: pointer;
	transition: background 0.25s, border-color 0.25s;
}
.upload:hover, .upload.is-dragover { background: var(--accent-soft); }
.upload.has-files { color: var(--text); border-style: solid; border-color: var(--line-strong); }
.upload input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.upload .icon { width: 16px; height: 16px; }

.form__status { margin: 26px 0 0; min-height: 1em; font-size: 13px; color: var(--muted); }
.form__status.is-error { color: var(--accent-2); }
.form__status.is-success { color: var(--text); }
.form__submit { margin-top: 26px; }
.form.is-sent .form__grid, .form.is-sent .form__submit { display: none; }
.form.is-sent .form__status { font-size: 17px; font-family: var(--font-display); }

/* --- Pages internes : bandeau de titre ---------------------------------- */
.page-hero { position: relative; padding: 180px 0 70px; overflow: hidden; isolation: isolate; border-bottom: 1px solid var(--line); }
.page-hero__bg { position: absolute; inset: 0; z-index: -1; background:
	radial-gradient(50% 70% at 20% 30%, rgba(150, 12, 44, 0.45) 0%, transparent 60%),
	radial-gradient(40% 60% at 85% 20%, rgba(74, 92, 90, 0.3) 0%, transparent 65%),
	linear-gradient(180deg, #16181c 0%, var(--bg) 100%); }
.page-hero__title { font-size: clamp(38px, 6vw, 76px); font-weight: 300; letter-spacing: -0.01em; }
.page-hero__lead { color: var(--muted); max-width: 52ch; margin: 18px 0 0; font-size: 16px; }
.section--page .entry__content { color: var(--muted); font-size: 16px; }
.section--page .entry__content h2, .section--page .entry__content h3 { color: var(--text); margin: 1.6em 0 0.6em; }
.section--page .entry__content a { color: var(--accent-2); }
.section--page .entry__content img { border-radius: var(--radius); }
.page-hero + .section--page { padding-top: clamp(48px, 6vw, 80px); }

/* --- Footer ------------------------------------------------------------ */
.site-footer { border-top: 1px solid var(--line-strong); padding-top: clamp(64px, 8vw, 112px); }
.site-footer__top { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 96px); align-items: end; }
.site-footer__wordmark {
	font-family: var(--font-display); font-weight: 300;
	font-size: clamp(88px, 15vw, 190px); line-height: 0.9; letter-spacing: 0.01em;
	margin: 0 0 32px -0.03em;
}
.site-footer__address { color: var(--muted); font-size: 13px; margin: 0; }
.site-footer__cols { display: grid; grid-template-columns: repeat(3, auto); gap: clamp(24px, 3vw, 48px); justify-content: space-between; }
.site-footer__label { font-family: var(--font-body); font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.site-footer__meta { display: flex; gap: 8px; font-size: 13px; margin: 0; }
.site-footer__meta a { display: flex; gap: 8px; }
.site-footer__meta a:hover { color: var(--accent-2); }
.site-footer__meta .icon { width: 15px; height: 15px; color: var(--accent-2); margin-top: 3px; }
.site-footer__cols .nav-list { flex-direction: column; gap: 8px; }
.site-footer__cols .nav-list a { font-size: 13px; letter-spacing: 0; text-transform: none; font-weight: 400; opacity: 1; }
.site-footer__cols .nav-list a::after { display: none; }
.site-footer__cols .nav-list a:hover { color: var(--accent-2); }
.site-footer__bottom {
	display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
	margin-top: clamp(40px, 6vw, 72px); padding-block: 22px;
	border-top: 1px solid var(--line);
	font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2);
}
.site-footer__bottom p { margin: 0; }
.site-footer__credit a { color: var(--text); position: relative; transition: color 0.3s; }
.site-footer__credit a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px; background: var(--accent-2); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); }
.site-footer__credit a:hover { color: var(--accent-2); }
.site-footer__credit a:hover::after { transform: scaleX(1); }

/* --- Pages internes ---------------------------------------------------- */
.section--page { padding-top: calc(var(--section) + 60px); min-height: 70vh; }
.entry__media { margin: 0 0 32px; }
.entry__content { color: var(--muted); }
.entry__content h2, .entry__content h3 { color: var(--text); margin: 1.6em 0 0.6em; }
.entry__content a { color: var(--accent-2); }
.post-card { padding: 28px 0; border-bottom: 1px solid var(--line); }
.post-card__title { font-size: 24px; margin: 8px 0; }
.post-card__excerpt { color: var(--muted); }

/* --- Reveal (une seule entrée, pas de cascade par carte) --------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* --- Responsive -------------------------------------------------------- */
@media (max-width: 1024px) {
	.work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.site-footer__top { grid-template-columns: 1fr; }
	.site-footer__cols { justify-content: start; }
}

@media (max-width: 860px) {
	.site-header { padding-block: 18px; }
	.site-header__inner { grid-template-columns: 1fr auto; }
	.site-header__brand .eyebrow--small { display: none; }
	.brand { padding-left: 0; }
	.nav-toggle { display: flex; }
	.site-nav {
		/* Plein écran : justify-self/align-self neutralisés (sinon la boîte se rétracte au contenu dans la grille) */
		position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; height: 100dvh; z-index: 40;
		justify-self: stretch; align-self: stretch; margin: 0;
		display: flex; align-items: center; justify-content: center;
		background: var(--bg);
		opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s;
	}
	/* Un header flouté/transformé emprisonnerait le menu fixe : on le neutralise tant que le menu est ouvert */
	body.nav-open .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; transform: none !important; background: transparent; box-shadow: none; }
	.site-nav.is-open { opacity: 1; visibility: visible; }
	.site-nav .nav-list { flex-direction: column; align-items: center; gap: 28px; }
	.site-nav .nav-list a { font-size: 15px; letter-spacing: 0.3em; }
	.site-header__right { position: relative; z-index: 45; }

	.hero { padding-top: 140px; }
	.hero__scroll { display: none; }
	.about__grid, .contact__grid { grid-template-columns: 1fr; }
	.about__media { max-width: 480px; }
	.steps { grid-template-columns: 1fr; }
	.step { border-left: 0; border-top: 1px solid var(--line); padding-inline: 0; }
	.step:first-child { border-top: 0; }
	.step:hover { background: transparent; }
	.step__ghost { right: 0; }
	.stats { grid-template-columns: repeat(3, auto); gap: 24px; }
}

@media (max-width: 600px) {
	body { font-size: 14px; }
	.work-grid { grid-template-columns: 1fr; gap: 12px; }
	.work--wide { grid-column: auto; }
	.work--wide .work__media { aspect-ratio: 1; }
	.form__grid { grid-template-columns: 1fr; }
	.stats { grid-template-columns: repeat(2, auto); }
	.quotes__track { grid-auto-columns: 85%; }
	.site-footer__cols { grid-template-columns: 1fr 1fr; }
	.hero__actions .btn { width: 100%; justify-content: center; }
}

/* --- Réseaux sociaux (footer) ------------------------------------------- */
.social { display: flex; flex-direction: column; gap: 10px; }
.social__item a { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); transition: color 0.3s; }
.social__item a:hover { color: var(--text); }
.social__item .icon { width: 15px; height: 15px; color: var(--accent-2); flex: none; }
.social__item--whatsapp .icon { color: #25d366; }

/* --- Bouton WhatsApp flottant ------------------------------------------- */
.wa-float {
	position: fixed; bottom: 22px; z-index: 90;
	display: flex; align-items: center; gap: 0;
	min-width: 54px; height: 54px; border-radius: 999px; background: #25d366; color: #fff;
	box-shadow: 0 12px 30px -10px rgba(37, 211, 102, 0.7);
	transition: width 0.4s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s;
}
.wa-float--left { left: 22px; }
.wa-float--right { right: 22px; }
.wa-float .icon { width: 54px; height: 54px; padding: 14px; flex: none; }
.wa-float__label {
	flex: none; max-width: 0; overflow: hidden; white-space: nowrap; opacity: 0;
	font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
	transition: max-width 0.4s var(--ease), opacity 0.3s, padding 0.4s var(--ease);
}
.wa-float:hover, .wa-float:focus-visible { transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(37, 211, 102, 0.85); }
.wa-float:hover .wa-float__label, .wa-float:focus-visible .wa-float__label { max-width: 260px; opacity: 1; padding-right: 22px; }
.wa-float__pulse { position: absolute; inset: 0; border-radius: 999px; border: 2px solid #25d366; animation: waPulse 2.4s ease-out infinite; pointer-events: none; }
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.7); opacity: 0; } }
/* Le bouton « retour en haut » se décale si WhatsApp est à droite */
body.has-wa-right .totop { bottom: 90px; }
@media (max-width: 600px) {
	.wa-float { min-width: 50px; height: 50px; bottom: 18px; }
	.wa-float--left { left: 16px; }
	.wa-float--right { right: 16px; }
	.wa-float .icon { width: 50px; height: 50px; padding: 13px; }
	.wa-float:hover .wa-float__label { max-width: 0; padding: 0; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .wa-float__pulse { animation: none; } }

/* --- Avis Google ---------------------------------------------------------- */
.section__head--split { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.testimonials__google { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.google-badge {
	display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px;
	border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--surface);
	color: var(--text); transition: border-color 0.3s;
}
a.google-badge:hover { border-color: var(--text); }
.google-g { width: 18px; height: 18px; flex: none; }
.google-badge__rating { font-family: var(--font-display); font-size: 20px; font-weight: 500; line-height: 1; }
.google-badge__count { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.stars { display: inline-flex; gap: 2px; }
.star { width: 13px; height: 13px; color: #f5b301; fill: rgba(255, 255, 255, 0.14); }
.star.is-full { fill: currentColor; }
.star.is-half { fill: url(#half); }
.btn--small { padding: 10px 16px; font-size: 10px; }
.quote--google .quote__google { display: flex; align-items: center; gap: 10px; }
.quote--google .quote__google .google-g { width: 20px; height: 20px; }
.quote__avatar { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; display: inline-block; vertical-align: middle; margin-right: 8px; }
@media (max-width: 600px) { .section__head--split { align-items: flex-start; } }

/* --- Mobile : pas de zoom automatique iOS sur les champs (font-size ≥ 16px) ---- */
@media (max-width: 860px), (hover: none) and (pointer: coarse) {
	.field input, .field select, .field textarea { font-size: 16px; }
}

/* --- Formulaire : envoi par email ou WhatsApp ------------------------------ */
.form__via { border: 0; padding: 0; margin: 30px 0 0; }
.form__via-label { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.form__via-options { display: flex; gap: 10px; flex-wrap: wrap; }
.via { position: relative; cursor: pointer; }
.via input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.via > span {
	display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px;
	border: 1px solid var(--line-strong); border-radius: var(--radius);
	font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
	transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.via .icon { width: 16px; height: 16px; }
.via:hover > span { color: var(--text); border-color: var(--text); }
.via input:checked + span { color: #fff; background: var(--accent); border-color: var(--accent); }
.via--wa input:checked + span { background: #1fb457; border-color: #1fb457; }
.via input:focus-visible + span { outline: 2px solid var(--accent-2); outline-offset: 3px; }
.form__via-note { margin: 12px 0 0; font-size: 13px; color: var(--muted); }
.form.is-wa .form__submit { background: #25d366; }
.form.is-wa .form__submit:hover { background: #1fb457; }
