/*
 * Seidys — direction artistique (d'après le bundle Claude Design).
 *
 * 1. Tokens parent (--color-*, --font-*) : recolorent l'utilitaire Tailwind du
 *    parent sans rebuild.
 * 2. Tokens design (--ink, --lime, --slate…) : utilisés par les composants
 *    « bespoke » ci-dessous, repris fidèlement du prototype.
 */

:root {
	/* === Charte graphique Seidys (d'après seidys.com) ===
	   Accent bordeaux + secondaire marine, neutres froids, Inter Tight. */

	/* Tokens parent (recoloration Tailwind hello-immosync, sans rebuild) */
	--color-ink: #0a0a0a;
	--color-charcoal: #565656;
	--color-stone: #767676;
	--color-mist: #9a9a9a;
	--color-line: #e5e5e5;
	--color-sand: #eaeae9;
	--color-cream: #ffffff;
	--color-brand: #a50932;
	--color-brand-dark: #7d0726;

	--font-display: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-body: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	--radius-card: 0px;

	/* Couleurs de marque sémantiques */
	--accent: #a50932;      /* bordeaux — primaire */
	--accent-dark: #7d0726;
	--navy: #002c55;        /* bleu marine — secondaire */

	/* Polices — une seule famille (design Claude) : Inter Tight, titres compris.
	   --font-condensed reste un alias pour ne pas casser les sélecteurs existants. */
	--font: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-condensed: var(--font);

	/* Tokens design (composants bespoke). Les noms historiques --lime/--slate
	   pointent désormais vers les couleurs de marque (alias, pas de mass-rename). */
	--bg: #ffffff;
	--cream: #eaeae9;       /* fond alterné clair */
	--ink: #0a0a0a;
	--ink-soft: #565656;
	--lime: var(--accent);  /* ex-vert → accent bordeaux */
	--slate: var(--navy);   /* ex-ardoise → marine */
	--line: #e5e5e5;
	--maxw: 1312px;
	--pad: 64px;
}

/* Eyebrow : l'accent lime est un marqueur, pas une couleur de texte
   (sinon illisible). On force le texte en encre + carré lime. */
.wpis-eyebrow,
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--font);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 0;
	text-transform: none;
	color: var(--ink);
}
.eyebrow::before {
	content: "";
	width: 16px;
	height: 16px;
	background: var(--lime);
	flex: none;
}
.eyebrow--plain::before { display: none; }

/* ===========================================================
   En-tête / navigation (porté du prototype)
   =========================================================== */
.site-header { position: absolute; top: 0; left: 0; right: 0; z-index: 50; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 99px; }
.brand { display: inline-flex; align-items: center; }
.brand__img { display: block; width: auto; }
/* En-tête : wordmark SEIDYS seul (baseline « développeur immobilier » recadrée
   via object-fit) pour rester lisible aux petites hauteurs. */
.brand__img--mark { height: 30px; width: 128px; object-fit: cover; object-position: top center; }
/* Pied de page : lockup complet (mot + baseline) sur fond blanc. */
.brand__img--full { height: 48px; }

.nav { display: flex; align-items: center; gap: 36px; }
.nav__item { position: relative; }
.nav__link { display: inline-flex; align-items: center; gap: 6px; font-size: 16px; font-weight: 500; line-height: 1.7; padding-block: 6px; color: inherit; background: none; border: none; white-space: nowrap; }
.nav__link .chev { width: 10px; height: 10px; transition: transform .2s ease; }
.nav__item:hover .chev { transform: rotate(180deg); }
.nav__link:hover { opacity: .62; }
.nav__current { position: relative; }
.nav__current::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: currentColor; opacity: .85; }

.dropdown { position: absolute; top: calc(100% + 10px); left: -16px; min-width: 286px; background: #fff; border: 1px solid var(--line); box-shadow: 0 18px 40px rgba(0,0,0,.10); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s ease, transform .18s ease, visibility .18s; z-index: 60; }
.nav__item:hover .dropdown, .nav__item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 11px 14px; font-size: 15px; font-weight: 500; color: var(--ink); line-height: 1.3; transition: background .15s ease; }
.dropdown a small { display: block; font-weight: 400; font-size: 13px; color: var(--ink-soft); margin-top: 3px; }
.dropdown a:hover { background: var(--cream); }

.header-cta { display: flex; align-items: center; gap: 16px; }
.site-header--light { color: #fff; }
.site-header--solid { position: relative; background: #fff; border-bottom: 1px solid var(--line); }

.burger { display: none; flex-direction: column; gap: 5px; width: 34px; height: 34px; align-items: center; justify-content: center; background: none; border: none; cursor: pointer; }
.burger span { width: 22px; height: 2px; background: currentColor; display: block; }

/* ===========================================================
   Composants bespoke (portés du prototype site.css)
   =========================================================== */

/* Layout */
.wrap { max-width: calc(var(--maxw) + var(--pad) * 2); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(72px, 9vw, 120px); }
.section--tight { padding-block: clamp(56px, 7vw, 96px); }

/* Typographie */
.h1 { font-weight: 500; font-size: clamp(40px, 5.4vw, 64px); line-height: 1.05; letter-spacing: -2px; }
.h2 { font-weight: 500; font-size: clamp(33px, 4.1vw, 54px); line-height: 1.08; letter-spacing: -2px; }
.h-page { font-weight: 500; font-size: clamp(38px, 4.8vw, 60px); line-height: 1.08; letter-spacing: -2px; }
.lead { font-size: 16px; line-height: 1.45; color: var(--ink-soft); }
.lead-lg { font-size: clamp(18px, 1.4vw, 20px); line-height: 1.5; color: var(--ink-soft); }
.muted { color: var(--ink-soft); }
.balance { text-wrap: balance; }
.pretty { text-wrap: pretty; }

/* Boutons */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	height: 51px; padding: 0 32px; font-size: 16px; font-weight: 500; line-height: 1;
	background: var(--ink); color: #fff; border: 1px solid var(--ink);
	transition: background .18s ease, color .18s ease, transform .18s ease; white-space: nowrap;
}
.btn:hover { background: #000; transform: translateY(-1px); }
.btn--lime { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.btn--lime:hover { background: #d9f47e; }
.btn--white { background: #fff; color: var(--ink); border-color: #fff; }
.btn--white:hover { background: #f0f0f0; }
.btn--outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--ghost-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.6); }
.btn--ghost-light:hover { background: #fff; color: var(--ink); }
.btn--block { width: 100%; }
.btnrow { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* Hero d'accueil (plein écran) */
.hero { position: relative; min-height: 760px; height: 100vh; max-height: 1024px; overflow: hidden; background: #909090; color: #fff; display: flex; flex-direction: column; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.05) 32%, rgba(0,0,0,.5) 100%); }
.hero__inner { position: relative; z-index: 2; margin-top: auto; padding-bottom: 56px; }
.hero__row { display: flex; justify-content: space-between; align-items: flex-end; gap: 48px; flex-wrap: wrap; }
.hero h1 { max-width: 760px; color: #fff; }
.hero__aside { max-width: 450px; display: flex; flex-direction: column; gap: 24px; }
.hero__aside p { color: var(--cream); font-size: 16px; line-height: 1.45; }
.hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__meta { margin-top: 40px; border-top: 1px solid rgba(255,255,255,.5); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 16px; }
.hero__meta .mailrow { display: inline-flex; align-items: center; gap: 8px; }

/* Titres de page (hero interne) */
.page-head { padding-block: clamp(56px, 7vw, 92px) 0; }
.page-head__grid { display: flex; flex-direction: column; gap: 24px; max-width: 760px; }
.page-head--center .page-head__grid { margin-inline: auto; text-align: center; align-items: center; }

/* Intro deux colonnes */
.split { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: start; }
.split__body { display: flex; flex-direction: column; gap: 32px; max-width: 900px; }

/* Stats — grid à colonnes égales (--stat-cols = nb de stats, défini en inline).
   minmax(0, 1fr) empêche le débordement des longs libellés. */
.stats { display: grid; grid-template-columns: repeat(var(--stat-cols, 4), minmax(0, 1fr)); gap: clamp(32px, 5vw, 96px); align-items: start; }
.stat { display: flex; flex-direction: column; gap: 18px; }
.stat__num { font-weight: 500; font-size: clamp(48px, 6.2vw, 80px); line-height: 1; letter-spacing: -2px; }
.stat__label { font-size: 16px; color: var(--ink-soft); }
.stats--divided .stat { padding-right: clamp(24px, 4vw, 72px); border-right: 1px solid rgba(0,0,0,.18); }
.stats--divided .stat:last-child { border-right: none; }

/* En-tête de section */
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; margin-bottom: 64px; }
.sec-head__text { max-width: 560px; display: flex; flex-direction: column; gap: 22px; }

/* Grilles + cartes */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.card { display: flex; flex-direction: column; gap: 20px; }
.card__media { position: relative; aspect-ratio: 16/13; overflow: hidden; background: var(--cream); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__media img { transform: scale(1.035); }
.card__badge { position: absolute; left: 16px; top: 16px; display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
	background: rgba(255,255,255,.92); backdrop-filter: blur(4px); padding: 7px 14px; font-size: 13px; font-weight: 500; }
.card__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--slate); }
.card__badge--done .dot { background: var(--slate); }
.card__badge--live .dot { background: #3a7d44; }
.card__top { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.card__title { font-size: 24px; font-weight: 700; letter-spacing: -.5px; line-height: 1.2; }
.card__price { font-size: 18px; font-weight: 500; color: var(--ink-soft); white-space: nowrap; }
.card__loc { font-size: 14px; font-weight: 500; color: var(--ink-soft); line-height: 1.6; }
.card__meta { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 14px; color: var(--ink-soft); }
.card__meta b { font-weight: 600; color: var(--ink); }
.card__link { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; font-size: 15px; margin-top: 2px; }
.card__link svg { width: 18px; height: 18px; transition: transform .2s ease; }
.card:hover .card__link svg { transform: translateX(4px); }

/* Projet en vedette (split) */
.feature { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 4vw, 56px); align-items: center; }
.feature--rev { grid-template-columns: 1fr 1.05fr; }
.feature--rev .feature__media { order: 2; }
.feature__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--cream); }
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__panel { display: flex; flex-direction: column; gap: 24px; }
.feature__panel h3 { font-size: clamp(28px, 3vw, 40px); font-weight: 500; letter-spacing: -1.2px; line-height: 1.08; }
.statusline { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--ink-soft); }
.statusline .dot { width: 8px; height: 8px; border-radius: 50%; background: #3a7d44; }
.feature-list { display: flex; flex-direction: column; gap: clamp(56px, 7vw, 96px); }

/* Specs */
.spec { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 28px; }
.spec__row { display: flex; flex-direction: column; gap: 3px; border-top: 1px solid var(--line); padding: 14px 0; }
.spec__k { font-size: 13px; color: var(--ink-soft); }
.spec__v { font-size: 16px; font-weight: 600; }

/* Atouts */
.atouts { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; padding: 0; margin: 0; }
.atouts li { position: relative; padding-left: 22px; font-size: 15px; color: var(--ink-soft); line-height: 1.45; }
.atouts li::before { content: ""; position: absolute; left: 0; top: 7px; width: 9px; height: 9px; background: var(--lime); border: 1px solid var(--slate); }
.atouts--single { grid-template-columns: 1fr; }

.contact-pill { font-size: 14px; color: var(--ink-soft); }
.contact-pill b { color: var(--ink); font-weight: 600; }

/* Prose */
.prose h3 { font-size: clamp(26px, 2.6vw, 36px); font-weight: 500; letter-spacing: -1px; line-height: 1.1; margin-bottom: 18px; }
.prose h4 { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.prose p { font-size: 16px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 16px; max-width: 760px; }
.prose p:last-child { margin-bottom: 0; }

/* Étapes numérotées */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { display: flex; flex-direction: column; gap: 14px; border-top: 2px solid var(--ink); padding-top: 18px; }
.step__n { font-size: 14px; font-weight: 600; color: var(--slate); }
.step h4 { font-size: 19px; font-weight: 600; letter-spacing: -.3px; }
.step p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }

/* Fiche projet (detail) */
.detail { display: grid; grid-template-columns: 360px 1fr; gap: clamp(40px, 5vw, 72px); align-items: start; }
.detail__side { position: sticky; top: 24px; display: flex; flex-direction: column; gap: 28px; }
.detail__facts { display: flex; flex-direction: column; }
.fact { display: flex; flex-direction: column; gap: 5px; padding: 16px 0; border-top: 1px solid var(--line); }
.fact:first-child { border-top: none; padding-top: 0; }
.fact__k { font-size: 14px; color: var(--ink-soft); }
.fact__v { font-size: 18px; font-weight: 600; letter-spacing: -.2px; }
.statusbadge { align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; background: var(--lime); color: var(--ink); padding: 8px 16px; font-size: 14px; font-weight: 600; }
.statusbadge .dot { width: 8px; height: 8px; border-radius: 50%; background: #3a7d44; }
.detail__content { display: flex; flex-direction: column; gap: clamp(32px, 4vw, 52px); }
.hero-img { aspect-ratio: 21/9; overflow: hidden; background: var(--cream); }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* Services à icônes */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 64px 122px; }
.svc { display: flex; flex-direction: column; gap: 24px; }
.svc__icon { width: 52px; height: 52px; color: var(--ink); }
.svc__icon svg { width: 100%; height: 100%; }
.svc h4 { font-size: 24px; font-weight: 700; letter-spacing: -.5px; line-height: 1.2; }
.svc p { font-size: 16px; color: var(--ink-soft); line-height: 1.45; }

/* Bande sombre */
.band { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.band__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .32; }
.band .wrap { position: relative; z-index: 2; }

/* Deux voies (vivre / investir) */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.path { background: var(--cream); padding: 48px; display: flex; flex-direction: column; gap: 20px; min-height: 340px; }
.path--dark { background: var(--ink); color: #fff; }
.path--dark .path__desc { color: rgba(255,255,255,.72); }
.path__kicker { font-size: 14px; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; color: var(--slate); }
.path--dark .path__kicker { color: var(--lime); }
.path h3 { font-size: clamp(26px, 2.4vw, 34px); font-weight: 500; letter-spacing: -1px; line-height: 1.1; }
.path__desc { color: var(--ink-soft); font-size: 16px; line-height: 1.5; flex: 1; }

/* CTA lime */
.cta { background: var(--lime); text-align: center; }
.cta__inner { max-width: 620px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; gap: 28px; }

/* Formulaires */
.formcard { background: var(--cream); padding: clamp(28px, 3vw, 40px); }
.formcard input, .formcard select, .formcard textarea {
	width: 100%; background: #fff; border: 1px solid #e8ebd9; padding: 16px; font-family: inherit; font-size: 16px; color: var(--ink);
}
.formcard textarea { min-height: 120px; resize: vertical; }
.formcard input:focus, .formcard select:focus, .formcard textarea:focus { outline: none; border-color: var(--slate); }

/* Cartes info / FAQ / divers */
.infocard { background: var(--cream); padding: 28px; display: flex; flex-direction: column; gap: 10px; }
.infocard h4 { font-size: 18px; font-weight: 600; }
.infocard p { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
.placeholder-note { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-style: italic; color: var(--ink-soft); }
.placeholder-note::before { content: ""; width: 7px; height: 7px; background: var(--lime); border: 1px solid var(--slate); }
.figcap { font-size: 13px; color: var(--ink-soft); margin-top: 10px; font-style: italic; }
.media { position: relative; overflow: hidden; background: var(--cream); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media__tag { position: absolute; left: 16px; bottom: 16px; background: rgba(29,30,25,.78); color: #fff; font-size: 12px; padding: 6px 12px; }

.faq { display: flex; flex-direction: column; gap: 12px; max-width: 920px; margin-inline: auto; }
.faq__item { background: var(--cream); }
.faq__q { display: flex; justify-content: space-between; align-items: center; gap: 24px; width: 100%; text-align: left; background: none; border: none; padding: 24px 28px; font-size: 18px; font-weight: 500; color: var(--ink); cursor: pointer; }
.faq__icon { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--lime); display: grid; place-items: center; font-size: 20px; line-height: 1; transition: transform .2s ease; }
.faq__item[data-open="true"] .faq__icon { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { padding: 0 28px 24px; font-size: 16px; color: var(--ink-soft); line-height: 1.55; max-width: 760px; }

/* Pied de page */
.site-footer { background: #fff; border-top: 1px solid var(--line); padding-block: 80px 40px; }
.footer-top { display: flex; justify-content: space-between; gap: 60px; flex-wrap: wrap; }
.footer-brandcol { max-width: 380px; display: flex; flex-direction: column; gap: 40px; }
.footer-brandcol .brand { color: var(--ink); }
.footer-desc { font-size: 16px; color: var(--ink); line-height: 1.45; }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; font-size: 16px; }
.footer-nav a:hover { color: var(--ink-soft); }
.footer-contact { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 14px; min-width: 180px; }
.footer-col h5 { font-size: 16px; font-weight: 500; }
.footer-emailbox { border: 1px solid var(--ink); padding: 6px 12px; font-size: 20px; font-weight: 600; letter-spacing: -.5px; align-self: flex-start; }
.footer-line { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink); line-height: 1.5; }
.footer-line svg { width: 18px; height: 18px; flex: none; margin-top: 1px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 15px; }
.footer-legal { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--ink-soft); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink); }
.footer-social a:hover { background: var(--ink); color: #fff; }
.footer-social svg { width: 17px; height: 17px; }

/* ===========================================================
   Filtres de projets (page « Nos Projets »)
   =========================================================== */
.proj-filter { display: flex; flex-direction: column; gap: 48px; }
.proj-filter__bar { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 28px 48px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.proj-filter__group { display: flex; flex-direction: column; gap: 12px; }
.proj-filter__label { font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--slate); }
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { display: inline-flex; align-items: center; height: 44px; padding: 0 22px; font-family: inherit; font-size: 15px; font-weight: 500; color: var(--ink); background: #fff; border: 1px solid var(--line); cursor: pointer; transition: background .18s ease, color .18s ease, border-color .18s ease; }
.pill:hover { border-color: var(--ink); }
.pill.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.proj-filter__select { height: 44px; min-width: 240px; padding: 0 16px; font-family: inherit; font-size: 15px; color: var(--ink); background: #fff; border: 1px solid var(--line); }
.proj-filter__select:focus { outline: none; border-color: var(--ink); }
.proj-filter__count { margin-left: auto; align-self: flex-end; font-size: 14px; color: var(--ink-soft); }
.proj-grid__item { display: flex; }
.proj-grid__item > .card { width: 100%; }
.proj-grid__item[hidden] { display: none; }
.proj-empty { padding: 56px 0; text-align: center; }

/* Bande « Voir nos réalisations » (CTA bas de page) */
.band .eyebrow { color: #fff; }
.real-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; max-width: 640px; }
.real-cta .h2 { color: #fff; }
.real-cta .lead { color: rgba(255,255,255,.82); max-width: 560px; }

/* ===========================================================
   Charte : titres condensés + contrastes (accent foncé)
   =========================================================== */
.h1, .h2, .h-page, .stat__num { font-family: var(--font-condensed); letter-spacing: -0.01em; }

/* L'accent est désormais foncé (bordeaux) → texte blanc sur fond accent. */
.btn--lime { color: #fff; }
.btn--lime:hover { background: var(--accent-dark); }
.statusbadge { color: #fff; }
.faq__icon { color: #fff; }
.path--dark .path__kicker { color: #fff; }

.cta { color: #fff; }
.cta .h2, .cta .eyebrow { color: #fff; }
.cta .lead { color: rgba(255,255,255,.82); }
.cta .btn { background: #fff; color: var(--ink); border-color: #fff; }
.cta .btn:hover { background: #f0f0f0; }

/* Responsive */
@media (max-width: 1080px) {
	:root { --pad: 40px; }
	.svc-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 64px; }
	.split { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 860px) {
	:root { --pad: 24px; }
	.grid-2, .grid-3, .paths { grid-template-columns: 1fr; }
	.svc-grid { grid-template-columns: 1fr; }
	.feature, .feature--rev { grid-template-columns: 1fr; gap: 28px; }
	.feature--rev .feature__media { order: 0; }
	.atouts { grid-template-columns: 1fr; }
	.steps { grid-template-columns: 1fr 1fr; }
	.stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.stats--divided .stat { border-right: none; padding-right: 0; }
	.detail { grid-template-columns: 1fr; }
	.detail__side { position: static; }
	.path { padding: 32px; min-height: 0; }
	.hero { height: auto; min-height: 0; padding-top: 120px; }
	.hero__inner { margin-top: 0; }
}

/* Navigation mobile (drawer) */
@media (max-width: 860px) {
	.nav, .header-cta .btn { display: none; }
	.burger { display: flex; }
	.mobile-nav { position: fixed; inset: 0; z-index: 60; background: #fff; color: var(--ink); transform: translateX(100%); transition: transform .28s ease; display: flex; flex-direction: column; padding: 24px; overflow: auto; }
	.mobile-nav[data-open="true"] { transform: translateX(0); }
	.mobile-nav__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
	.mobile-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 18px; font-weight: 500; display: block; color: var(--ink); }
	.mobile-nav .sub a { padding: 10px 0 10px 16px; font-size: 15px; font-weight: 400; color: var(--ink-soft); border-bottom: none; }
	.mobile-nav .grp-label { padding: 16px 0 4px; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: var(--slate); }
	.mobile-nav .btn { border-bottom: none; color: #fff; }
}
@media (min-width: 861px) { .mobile-nav { display: none; } }
@media (max-width: 520px) {
	.stats { grid-template-columns: 1fr; }
}
