/**
 * Artistik — landing one-page (AIHub child)
 * Design system : palette teal + indigo + amber sur fond slate.
 * Tout est servi en local, aucune dépendance externe (CSS / JS / fonts).
 */

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation: none !important; transition: none !important; }
}

body.artistik-body {
	overflow-x: hidden;
	overflow-x: clip;
}

:root {
	--ak-font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

	--ak-ink: #0b1220;
	--ak-ink-soft: #475569;
	--ak-ink-mute: #64748b;
	--ak-line: #e5e7eb;
	--ak-bg: #f8fafc;
	--ak-bg-2: #f1f5f9;
	--ak-card: #ffffff;

	--ak-dark-1: #0a1426;
	--ak-dark-2: #0f1d33;
	--ak-dark-text: #e2e8f0;

	--ak-med: #0f766e;
	--ak-med-soft: #ecfdf5;
	--ak-med-strong: #134e4a;

	--ak-edu: #4338ca;
	--ak-edu-soft: #eef2ff;
	--ak-edu-strong: #312e81;

	--ak-re: #b45309;
	--ak-re-soft: #fffbeb;
	--ak-re-strong: #78350f;

	--ak-com: #0e7490;
	--ak-com-soft: #ecfeff;
	--ak-com-strong: #155e75;

	--ak-agro: #15803d;
	--ak-agro-soft: #f0fdf4;
	--ak-agro-strong: #14532d;

	--ak-dent: #0369a1;
	--ak-dent-soft: #f0f9ff;
	--ak-dent-strong: #0c4a6e;

	--ak-trans: #6d28d9;
	--ak-trans-soft: #f5f3ff;
	--ak-trans-strong: #4c1d95;

	--ak-radius: 18px;
	--ak-radius-sm: 12px;
	--ak-shadow: 0 14px 38px rgba(15, 23, 42, 0.07);
	--ak-shadow-soft: 0 4px 14px rgba(15, 23, 42, 0.05);

	--ak-header-offset: 96px;
	--ak-nav-top: 72px;
	--ak-gutter-inline: clamp(1rem, 4vw, 1.75rem);

	/* Rythme menu : groupe liens ↔ langue ↔ CTA — lecture fluide */
	--ak-nav-desktop-gap: 0.5rem;
	--ak-nav-pill-gap: 0.055rem;
	--ak-drawer-ease: cubic-bezier(0.4, 0, 0.2, 1);
	/* Cadre arrondi du header bureau */
	--ak-header-shell-radius: clamp(13px, 1.85vw, 18px);
}

@media (max-width: 960px) {
	:root { --ak-header-offset: 80px; }
}

@media (max-width: 480px) {
	:root {
		--ak-header-offset: 68px;
		--ak-gutter-inline: clamp(0.875rem, 5vw, 1.5rem);
	}
}

/* Casse du wrapper étroit du parent : pleine largeur sans scroll horizontal parasite. */
#artistik-onepage.artistik-op {
	width: 100vw;
	max-width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	overflow-x: clip;
	box-sizing: border-box;
}

.artistik-op,
.artistik-op * { box-sizing: border-box; }

.artistik-op {
	font-family: var(--ak-font);
	color: var(--ak-ink);
	line-height: 1.65;
	background: var(--ak-bg);
}

.artistik-op [id] { scroll-margin-top: var(--ak-header-offset); }
.artistik-op a   { color: inherit; }

.artistik-op .ak-container {
	width: min(1200px, calc(100% - 2 * var(--ak-gutter-inline)));
	max-width: 100%;
	box-sizing: border-box;
	padding-inline: env(safe-area-inset-left, 0px) env(safe-area-inset-right, 0px);
	margin-inline: auto;
}

.artistik-op .ak-eyebrow {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ak-med);
	margin: 0 0 0.85rem;
}

.artistik-op .ak-eyebrow--hero { color: #5eead4; }

.ak-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.ak-icon svg { width: 1em; height: 1em; }
.ak-icon--inline { width: 1.05em; height: 1.05em; margin-left: 0.35em; }

/* HERO ----------------------------------------------------- */
.artistik-op .ak-hero {
	position: relative;
	background:
		radial-gradient(900px 420px at 78% 18%, rgba(15, 118, 110, 0.30), transparent 60%),
		radial-gradient(900px 480px at 18% 110%, rgba(67, 56, 202, 0.22), transparent 65%),
		linear-gradient(180deg, var(--ak-dark-1) 0%, var(--ak-dark-2) 100%);
	color: var(--ak-dark-text);
	padding: clamp(4.5rem, 12vw, 7.5rem) 0 clamp(4rem, 9vw, 6rem);
	overflow: hidden;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.artistik-op .ak-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 60% 80% at 50% 0%, #000 30%, transparent 75%);
	pointer-events: none;
}
.artistik-op .ak-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
	gap: clamp(2rem, 4vw, 4rem);
	align-items: center;
}
.artistik-op .ak-hero h1 {
	font-size: clamp(2.1rem, 4.6vw, 3.55rem);
	font-weight: 750;
	line-height: 1.08;
	letter-spacing: -0.025em;
	margin: 0 0 1rem;
	color: #f8fafc;
}
.artistik-op .ak-hero .ak-lead {
	font-size: clamp(1.05rem, 1.6vw, 1.2rem);
	max-width: 38rem;
	margin: 0 0 2.25rem;
	color: #cbd5e1;
}
.artistik-op .ak-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}
.artistik-op .ak-hero-actions--center { justify-content: center; margin-top: 1rem; }

.artistik-op .ak-hero-art {
	position: relative;
	z-index: 1;
}
.artistik-op .ak-hero-art svg {
	width: 100%;
	height: auto;
	max-width: 540px;
	margin-inline: auto;
	display: block;
	filter: drop-shadow(0 24px 60px rgba(15, 118, 110, 0.35));
	border-radius: 18px;
}

/* Buttons (globaux : header + body + footer) -------------- */
.ak-btn,
a.ak-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	padding: 0.7rem 1.25rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.92rem;
	line-height: 1;
	text-decoration: none;
	border: 1.5px solid transparent;
	transition: transform 0.15s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
	cursor: pointer;
	font-family: var(--ak-font);
	white-space: nowrap;
}
.ak-btn:hover { transform: translateY(-1px); }
.ak-btn--primary,
a.ak-btn--primary {
	background: var(--ak-med);
	color: #fff !important;
	box-shadow: 0 8px 22px rgba(15, 118, 110, 0.30);
	border-color: var(--ak-med);
}
.ak-btn--primary:hover {
	background: #115e59;
	border-color: #115e59;
	color: #fff !important;
	box-shadow: 0 12px 28px rgba(15, 118, 110, 0.42);
}
.ak-btn--ghost,
a.ak-btn--ghost {
	background: rgba(248, 250, 252, 0.06);
	color: #f8fafc !important;
	border-color: rgba(248, 250, 252, 0.32);
}
.ak-btn--ghost:hover {
	background: rgba(248, 250, 252, 0.12);
	border-color: rgba(248, 250, 252, 0.55);
}
/* Variantes plus grandes dans le hero */
.artistik-op .ak-hero .ak-btn,
.artistik-op .ak-cta .ak-btn { padding: 0.85rem 1.4rem; font-size: 0.95rem; }

/* Stats hero */
.artistik-op .ak-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 1rem 2rem;
	margin-top: 2.75rem;
	padding-top: 1.75rem;
	border-top: 1px solid rgba(248, 250, 252, 0.12);
	max-width: 720px;
}
.artistik-op .ak-stat strong {
	display: block;
	font-size: clamp(1.5rem, 2.4vw, 1.85rem);
	font-weight: 800;
	color: #f8fafc;
	letter-spacing: -0.02em;
}
.artistik-op .ak-stat span { font-size: 0.82rem; color: #94a3b8; }

/* SECTIONS ------------------------------------------------ */
.artistik-op .ak-section { padding: clamp(4rem, 8vw, 6rem) 0; }
.artistik-op .ak-section--alt {
	background: var(--ak-card);
	border-top: 1px solid var(--ak-line);
	border-bottom: 1px solid var(--ak-line);
}
.artistik-op .ak-section--page-content { padding-top: clamp(2.5rem, 5vw, 4rem); }
.artistik-op .ak-prose {
	max-width: 60rem;
	margin-inline: auto;
	color: var(--ak-ink-soft);
	font-size: 1.02rem;
}
.artistik-op .ak-section-head {
	max-width: 44rem;
	margin: 0 0 2.5rem;
}
.artistik-op .ak-section-head h2 {
	font-size: clamp(1.7rem, 3vw, 2.35rem);
	margin: 0 0 0.65rem;
	letter-spacing: -0.02em;
	color: var(--ak-ink);
}
.artistik-op .ak-section-head p {
	margin: 0;
	color: var(--ak-ink-soft);
	font-size: 1.05rem;
}

/* Tiles solutions ---------------------------------------- */
.artistik-op .ak-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
	gap: 1rem;
}
.artistik-op .ak-grid--solutions {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
	gap: 1.25rem;
}
.artistik-op .ak-tile {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem 1.4rem;
	background: var(--ak-card);
	border: 1px solid var(--ak-line);
	border-radius: var(--ak-radius);
	text-decoration: none;
	color: inherit;
	transition: transform 0.15s ease, box-shadow 0.18s ease, border-color 0.18s ease;
	box-shadow: var(--ak-shadow-soft);
	position: relative;
	overflow: hidden;
}
.artistik-op .ak-tile::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 4px;
	border-radius: var(--ak-radius) var(--ak-radius) 0 0;
}
.artistik-op .ak-tile--med::before  { background: var(--ak-med); }
.artistik-op .ak-tile--edu::before  { background: var(--ak-edu); }
.artistik-op .ak-tile--re::before   { background: var(--ak-re); }
.artistik-op .ak-tile--com::before   { background: var(--ak-com); }
.artistik-op .ak-tile--agro::before  { background: var(--ak-agro); }
.artistik-op .ak-tile--dent::before  { background: var(--ak-dent); }
.artistik-op .ak-tile--trans::before { background: var(--ak-trans); }
.artistik-op .ak-tile:hover {
	transform: translateY(-2px);
	box-shadow: var(--ak-shadow);
	border-color: #cbd5e1;
}
.artistik-op .ak-tile-icon {
	width: 44px; height: 44px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}
.artistik-op .ak-tile-icon svg { width: 22px; height: 22px; }
.artistik-op .ak-tile--med  .ak-tile-icon { background: var(--ak-med); }
.artistik-op .ak-tile--edu  .ak-tile-icon { background: var(--ak-edu); }
.artistik-op .ak-tile--re   .ak-tile-icon { background: var(--ak-re); }
.artistik-op .ak-tile--com   .ak-tile-icon { background: var(--ak-com); }
.artistik-op .ak-tile--agro  .ak-tile-icon { background: var(--ak-agro); }
.artistik-op .ak-tile--dent  .ak-tile-icon { background: var(--ak-dent); }
.artistik-op .ak-tile--trans .ak-tile-icon { background: var(--ak-trans); }
.artistik-op .ak-tile-body { display: flex; flex-direction: column; gap: 0.15rem; }
.artistik-op .ak-tile-badge {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ak-ink-mute);
}
.artistik-op .ak-tile-body strong {
	font-size: 1.05rem;
	color: var(--ak-ink);
	letter-spacing: -0.01em;
}
.artistik-op .ak-tile-body small { color: var(--ak-ink-soft); font-size: 0.88rem; }
.artistik-op .ak-tile-arrow {
	color: var(--ak-ink-mute);
	transition: transform 0.15s ease, color 0.15s ease;
}
.artistik-op .ak-tile-arrow svg { width: 18px; height: 18px; }
.artistik-op .ak-tile:hover .ak-tile-arrow { transform: translateX(4px); color: var(--ak-ink); }

/* Produits (sections détaillées) ------------------------ */
.artistik-op .ak-product {
	border-radius: var(--ak-radius);
	padding: clamp(1.75rem, 3.5vw, 2.75rem);
	margin-bottom: 2.5rem;
	box-shadow: var(--ak-shadow);
	border: 1px solid var(--ak-line);
	background: var(--ak-card);
	position: relative;
	overflow: hidden;
}
.artistik-op .ak-product::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0; height: 4px;
	border-radius: var(--ak-radius) var(--ak-radius) 0 0;
}
.artistik-op .ak-product--med::before  { background: var(--ak-med); }
.artistik-op .ak-product--edu::before  { background: var(--ak-edu); }
.artistik-op .ak-product--re::before   { background: var(--ak-re); }
.artistik-op .ak-product--com::before   { background: var(--ak-com); }
.artistik-op .ak-product--agro::before  { background: var(--ak-agro); }
.artistik-op .ak-product--dent::before  { background: var(--ak-dent); }
.artistik-op .ak-product--trans::before { background: var(--ak-trans); }

.artistik-op .ak-product-header { margin-bottom: 1.5rem; }
.artistik-op .ak-product-meta {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	margin-bottom: 0.75rem;
}
.artistik-op .ak-product-icon {
	width: 38px; height: 38px;
	border-radius: 10px;
	display: inline-flex; align-items: center; justify-content: center;
	color: #fff;
}
.artistik-op .ak-product-icon svg { width: 20px; height: 20px; }
.artistik-op .ak-product--med  .ak-product-icon { background: var(--ak-med); }
.artistik-op .ak-product--edu  .ak-product-icon { background: var(--ak-edu); }
.artistik-op .ak-product--re   .ak-product-icon { background: var(--ak-re); }
.artistik-op .ak-product--com   .ak-product-icon { background: var(--ak-com); }
.artistik-op .ak-product--agro  .ak-product-icon { background: var(--ak-agro); }
.artistik-op .ak-product--dent  .ak-product-icon { background: var(--ak-dent); }
.artistik-op .ak-product--trans .ak-product-icon { background: var(--ak-trans); }
.artistik-op .ak-product-badge {
	display: inline-block;
	padding: 0.3rem 0.75rem;
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.artistik-op .ak-product--med  .ak-product-badge { background: var(--ak-med-soft);  color: var(--ak-med-strong); }
.artistik-op .ak-product--edu  .ak-product-badge { background: var(--ak-edu-soft);  color: var(--ak-edu-strong); }
.artistik-op .ak-product--re   .ak-product-badge { background: var(--ak-re-soft);   color: var(--ak-re-strong); }
.artistik-op .ak-product--com   .ak-product-badge { background: var(--ak-com-soft);   color: var(--ak-com-strong); }
.artistik-op .ak-product--agro  .ak-product-badge { background: var(--ak-agro-soft);  color: var(--ak-agro-strong); }
.artistik-op .ak-product--dent  .ak-product-badge { background: var(--ak-dent-soft);  color: var(--ak-dent-strong); }
.artistik-op .ak-product--trans .ak-product-badge { background: var(--ak-trans-soft); color: var(--ak-trans-strong); }
.artistik-op .ak-product h3 {
	font-size: clamp(1.5rem, 2.6vw, 1.95rem);
	margin: 0;
	color: var(--ak-ink);
	letter-spacing: -0.02em;
}
.artistik-op .ak-product .ak-sub {
	font-size: 1rem; color: var(--ak-ink-soft);
	margin: 0.45rem 0 0; font-weight: 500;
}

.artistik-op .ak-product-body {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
	gap: clamp(1.5rem, 3vw, 2.5rem);
	align-items: center;
	margin-bottom: 1.75rem;
}
.artistik-op .ak-product-intro p:first-child { margin-top: 0; }
.artistik-op .ak-product-intro {
	color: var(--ak-ink-soft);
	font-size: 1rem;
	max-width: 60ch;
}
.artistik-op .ak-product-art svg {
	width: 100%;
	height: auto;
	border-radius: 14px;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

/* Modules */
.artistik-op .ak-modules {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
	gap: 1rem;
}
.artistik-op .ak-module {
	background: var(--ak-bg);
	border-radius: var(--ak-radius-sm);
	padding: 1.15rem 1.25rem;
	border: 1px solid var(--ak-line);
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.artistik-op .ak-module:hover {
	box-shadow: var(--ak-shadow-soft);
	border-color: #cbd5e1;
	transform: translateY(-1px);
}
.artistik-op .ak-module-head {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin: 0 0 0.85rem;
}
.artistik-op .ak-module-icon {
	flex: 0 0 auto;
	width: 32px; height: 32px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 9px;
	background: var(--ak-bg-2);
	color: var(--ak-ink);
}
.artistik-op .ak-module-icon svg { width: 16px; height: 16px; }
.artistik-op .ak-product--med  .ak-module-icon { background: var(--ak-med-soft);  color: var(--ak-med); }
.artistik-op .ak-product--edu  .ak-module-icon { background: var(--ak-edu-soft);  color: var(--ak-edu); }
.artistik-op .ak-product--re   .ak-module-icon { background: var(--ak-re-soft);   color: var(--ak-re); }
.artistik-op .ak-product--com   .ak-module-icon { background: var(--ak-com-soft);   color: var(--ak-com); }
.artistik-op .ak-product--agro  .ak-module-icon { background: var(--ak-agro-soft);  color: var(--ak-agro); }
.artistik-op .ak-product--dent  .ak-module-icon { background: var(--ak-dent-soft);  color: var(--ak-dent); }
.artistik-op .ak-product--trans .ak-module-icon { background: var(--ak-trans-soft); color: var(--ak-trans); }
.artistik-op .ak-module h4 {
	font-size: 0.95rem;
	margin: 0;
	font-weight: 700;
	color: var(--ak-ink);
	letter-spacing: -0.01em;
}
.artistik-op .ak-module ul {
	margin: 0; padding: 0; list-style: none;
	font-size: 0.9rem;
	color: var(--ak-ink-soft);
	line-height: 1.55;
}
.artistik-op .ak-module li {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	margin-bottom: 0.4rem;
}
.artistik-op .ak-bullet {
	flex: 0 0 auto;
	width: 18px; height: 18px;
	border-radius: 999px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--ak-bg-2);
	color: var(--ak-ink);
	margin-top: 0.18rem;
}
.artistik-op .ak-product--med  .ak-bullet { background: var(--ak-med-soft);  color: var(--ak-med); }
.artistik-op .ak-product--edu  .ak-bullet { background: var(--ak-edu-soft);  color: var(--ak-edu); }
.artistik-op .ak-product--re   .ak-bullet { background: var(--ak-re-soft);   color: var(--ak-re); }
.artistik-op .ak-product--com   .ak-bullet { background: var(--ak-com-soft);   color: var(--ak-com); }
.artistik-op .ak-product--agro  .ak-bullet { background: var(--ak-agro-soft);  color: var(--ak-agro); }
.artistik-op .ak-product--dent  .ak-bullet { background: var(--ak-dent-soft);  color: var(--ak-dent); }
.artistik-op .ak-product--trans .ak-bullet { background: var(--ak-trans-soft); color: var(--ak-trans); }
.artistik-op .ak-bullet svg { width: 12px; height: 12px; stroke-width: 3; }

/* Contact (info + formulaire) ----------------------------- */
.artistik-op .ak-contact {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: start;
}
.artistik-op .ak-contact-info h2 {
	font-size: clamp(1.7rem, 3vw, 2.25rem);
	margin: 0 0 0.85rem;
	letter-spacing: -0.02em;
}
.artistik-op .ak-contact-lead {
	color: var(--ak-ink-soft);
	margin: 0 0 1.75rem;
}
.artistik-op .ak-contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.75rem;
}
.artistik-op .ak-contact-list li {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.85rem 1rem;
	border: 1px solid var(--ak-line);
	border-radius: var(--ak-radius-sm);
	background: var(--ak-bg);
}
.artistik-op .ak-contact-ico {
	width: 38px; height: 38px;
	border-radius: 10px;
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--ak-med-soft);
	color: var(--ak-med);
	flex: 0 0 auto;
}
.artistik-op .ak-contact-ico svg { width: 18px; height: 18px; }
.artistik-op .ak-contact-list strong {
	display: block;
	color: var(--ak-ink);
	font-size: 0.9rem;
	letter-spacing: -0.01em;
}
.artistik-op .ak-contact-list a,
.artistik-op .ak-contact-list span {
	font-size: 0.9rem;
	color: var(--ak-ink-soft);
	text-decoration: none;
}
.artistik-op .ak-contact-list a:hover { color: var(--ak-med); }

.artistik-op .ak-contact-form {
	background: var(--ak-card);
	border: 1px solid var(--ak-line);
	border-radius: var(--ak-radius);
	padding: clamp(1.5rem, 3vw, 2.25rem);
	box-shadow: var(--ak-shadow);
}
.artistik-op .ak-contact-form .frm_forms { max-width: none; }
.artistik-op .ak-contact-form .frm_form_field { margin-bottom: 1rem; }
.artistik-op .ak-contact-form label,
.artistik-op .ak-contact-form .frm_primary_label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--ak-ink);
	margin-bottom: 0.4rem;
}
.artistik-op .ak-contact-form input[type="text"],
.artistik-op .ak-contact-form input[type="email"],
.artistik-op .ak-contact-form input[type="tel"],
.artistik-op .ak-contact-form select,
.artistik-op .ak-contact-form textarea {
	width: 100%;
	padding: 0.7rem 0.9rem;
	font: inherit;
	border: 1px solid var(--ak-line);
	border-radius: 10px;
	background: var(--ak-bg);
	color: var(--ak-ink);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.artistik-op .ak-contact-form input:focus,
.artistik-op .ak-contact-form select:focus,
.artistik-op .ak-contact-form textarea:focus {
	outline: 0;
	border-color: var(--ak-med);
	box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.15);
	background: #fff;
}
.artistik-op .ak-contact-form textarea { min-height: 130px; resize: vertical; }
.artistik-op .ak-contact-form .frm_required { color: #dc2626; margin-left: 0.2rem; }
.artistik-op .ak-contact-form .frm_submit { margin-top: 1rem; }
.artistik-op .ak-contact-form .frm_button_submit,
.artistik-op .ak-contact-form button[type="submit"],
.artistik-op .ak-contact-form input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.85rem 1.8rem;
	background: var(--ak-med);
	color: #fff !important;
	font-weight: 700;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(15, 118, 110, 0.3);
	transition: transform 0.15s ease, background 0.18s ease, box-shadow 0.18s ease;
	font-size: 0.95rem;
	font-family: var(--ak-font);
	line-height: 1;
	-webkit-appearance: none;
	appearance: none;
	min-height: 48px;
}
.artistik-op .ak-contact-form .frm_button_submit:hover,
.artistik-op .ak-contact-form button[type="submit"]:hover,
.artistik-op .ak-contact-form input[type="submit"]:hover {
	background: #115e59;
	transform: translateY(-1px);
	box-shadow: 0 14px 30px rgba(15, 118, 110, 0.42);
}
.artistik-op .ak-contact-form .frm_button_submit:focus,
.artistik-op .ak-contact-form button[type="submit"]:focus,
.artistik-op .ak-contact-form input[type="submit"]:focus {
	outline: 0;
	box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.25), 0 10px 24px rgba(15, 118, 110, 0.3);
}
.artistik-op .ak-contact-form .frm_message {
	background: var(--ak-med-soft);
	border: 1px solid var(--ak-med);
	color: var(--ak-med-strong);
	padding: 1rem 1.25rem;
	border-radius: 12px;
}
.artistik-op .ak-contact-form .frm_error,
.artistik-op .ak-contact-form .frm_blank_field input,
.artistik-op .ak-contact-form .frm_blank_field textarea {
	border-color: #dc2626 !important;
}
.artistik-op .ak-contact-form .frm_error_style {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #991b1b;
	padding: 0.7rem 0.9rem;
	border-radius: 10px;
	font-size: 0.88rem;
}
.artistik-op .ak-contact-form .frm_checkbox label {
	display: inline-flex;
	gap: 0.5rem;
	align-items: flex-start;
	font-weight: 400;
	color: var(--ak-ink-soft);
	font-size: 0.88rem;
}
.artistik-op .ak-contact-form .frm_description {
	font-size: 0.82rem;
	color: var(--ak-ink-mute);
	margin-top: 0.3rem;
}
@media (max-width: 880px) {
	.artistik-op .ak-contact { grid-template-columns: minmax(0, 1fr); }
}

/* CTA ----------------------------------------------------- */
.artistik-op .ak-cta {
	text-align: center;
	padding: clamp(3rem, 7vw, 4.5rem) 1.5rem;
	background:
		radial-gradient(720px 320px at 50% 0%, rgba(15, 118, 110, 0.28), transparent 70%),
		linear-gradient(180deg, var(--ak-dark-2), var(--ak-dark-1));
	color: #e2e8f0;
	border-radius: var(--ak-radius);
	margin: 3rem auto;
	width: min(1200px, calc(100% - 2 * var(--ak-gutter-inline)));
	max-width: 100%;
	box-sizing: border-box;
}
.artistik-op .ak-cta h2 {
	margin: 0 0 0.5rem;
	font-size: clamp(1.6rem, 3vw, 2rem);
	color: #f8fafc;
	letter-spacing: -0.02em;
}
.artistik-op .ak-cta p { margin: 0 0 1.25rem; color: #cbd5e1; }
.artistik-op .ak-cta a { color: #5eead4; text-decoration: none; }
.artistik-op .ak-muted { font-size: 0.92rem; color: var(--ak-ink-mute); }

/* Header sticky + menu déroulant -------------------------- */
.ak-header {
	position: sticky;
	top: 0;
	z-index: 10050;
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: saturate(135%) blur(12px);
	-webkit-backdrop-filter: saturate(135%) blur(12px);
	border-bottom: 1px solid transparent;
	transition:
		background 0.45s var(--ak-drawer-ease),
		border-color 0.45s ease,
		box-shadow 0.45s var(--ak-drawer-ease),
		backdrop-filter 0.52s ease,
		-webkit-backdrop-filter 0.52s ease;
	box-sizing: border-box;
	width: min(1280px, calc(100% - 2 * var(--ak-gutter-inline)));
	max-width: 100%;
	margin-inline: auto;
	padding-top: calc(0.85rem + env(safe-area-inset-top, 0px));
	padding-bottom: 0.85rem;
	padding-inline: env(safe-area-inset-left, 0px) env(safe-area-inset-right, 0px);
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.62rem;
}
@media (min-width: 961px) {
	:root {
		--ak-header-offset: 112px;
	}
	.ak-header {
		top: max(10px, env(safe-area-inset-top, 0px));
		margin-top: 10px;
		padding-top: calc(0.58rem + env(safe-area-inset-top, 0px));
		padding-bottom: 0.58rem;
		padding-inline: max(0.65rem, calc(env(safe-area-inset-left, 0px) + 8px))
			max(0.65rem, calc(env(safe-area-inset-right, 0px) + 8px));
		border-radius: var(--ak-header-shell-radius);
		box-shadow:
			0 0 0 1px rgba(15, 23, 42, 0.05),
			0 4px 22px rgba(15, 23, 42, 0.07);
	}
}
.ak-nav-backdrop {
	position: fixed;
	inset: var(--ak-nav-top, 72px) 0 0 0;
	background: rgba(15, 23, 42, 0.42);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.28s var(--ak-drawer-ease), visibility 0.28s linear;
	z-index: 10040;
	pointer-events: none;
	touch-action: manipulation;
}
.ak-nav-backdrop.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.ak-header-inner {
	position: relative;
	z-index: 10060;
	flex: 1 1 auto;
	min-width: 0;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	gap: 1rem;
}
.ak-header.is-stuck {
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: saturate(155%) blur(22px);
	-webkit-backdrop-filter: saturate(155%) blur(22px);
	border-bottom-color: var(--ak-line);
	box-shadow: 0 8px 26px rgba(15, 23, 42, 0.07);
}
@media (min-width: 961px) {
	.ak-header.is-stuck {
		box-shadow:
			0 0 0 1px rgba(15, 23, 42, 0.07),
			0 14px 40px rgba(15, 23, 42, 0.11);
	}
}

.ak-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	text-decoration: none;
	color: var(--ak-ink);
	font-weight: 700;
	letter-spacing: -0.01em;
}
.ak-brand-mark {
	width: 28px; height: 28px;
	border-radius: 10px;
	background:
		radial-gradient(circle at 30% 30%, #14b8a6 0%, #0f766e 60%),
		linear-gradient(135deg, #4338ca, #0f766e);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}
.ak-brand-text { font-size: 1.05rem; }
.ak-burger {
	margin-left: auto;
	display: none;
	border: 0;
	background: transparent;
	width: 40px; height: 40px;
	padding: 0;
	cursor: pointer;
}
.ak-burger span {
	display: block;
	width: 22px; height: 2px;
	margin: 5px auto;
	background: var(--ak-ink);
	border-radius: 1px;
	transition: transform 0.26s var(--ak-drawer-ease), opacity 0.2s ease;
}
.ak-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ak-burger.is-open span:nth-child(2) { opacity: 0; }
.ak-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.ak-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: var(--ak-nav-desktop-gap);
	min-height: 2.625rem;
	min-width: 0;
	margin-left: auto;
	flex: 1 1 auto;
}
.ak-menu,
.ak-menu .sub-menu { list-style: none; margin: 0; padding: 0; }
.ak-menu {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	justify-content: flex-start;
	flex: 0 1 auto;
	min-width: 0;
	gap: var(--ak-nav-pill-gap);
}
.ak-menu > li { position: relative; flex-shrink: 0; }
.ak-menu > li > a {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	padding: 0.58rem clamp(0.68rem, 1.05vw, 0.92rem);
	border-radius: 9999px;
	color: var(--ak-ink-soft);
	font-weight: 600;
	font-size: clamp(0.875rem, 1.05vw, 0.925rem);
	text-decoration: none;
	transition:
		background 0.24s var(--ak-drawer-ease),
		color 0.24s var(--ak-drawer-ease),
		box-shadow 0.24s var(--ak-drawer-ease),
		transform 0.22s var(--ak-drawer-ease);
	box-shadow:
		0 0 0 1px rgba(15, 23, 42, 0.04),
		0 1px 3px rgba(15, 23, 42, 0.04);
	background: rgba(241, 245, 249, 0.55);
}
.ak-menu > li > a:hover {
	color: var(--ak-ink);
	background: rgba(241, 245, 249, 0.95);
	transform: translateY(-0.06rem);
	box-shadow:
		0 0 0 1px rgba(15, 23, 42, 0.06),
		0 2px 8px rgba(15, 23, 42, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
.ak-menu > li.current-menu-item > a {
	color: var(--ak-med-strong);
	background: rgba(15, 118, 110, 0.1);
	box-shadow:
		0 0 0 1px rgba(15, 118, 110, 0.22),
		0 2px 8px rgba(15, 118, 110, 0.1);
	transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
	.ak-menu > li > a:hover,
	.ak-menu > li.current-menu-item > a {
		transform: none !important;
	}
}
.ak-menu > li > a:focus-visible {
	outline: 2px solid var(--ak-med);
	outline-offset: 2px;
}
.ak-menu > li.menu-item-has-children > a::after {
	content: "▾"; font-size: 0.7rem; color: var(--ak-ink-mute);
}
.ak-menu .sub-menu {
	position: absolute;
	top: calc(100% + 0.35rem);
	left: 0;
	min-width: 232px;
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid var(--ak-line);
	border-radius: clamp(14px, 2vw, var(--ak-radius-sm));
	box-shadow: var(--ak-shadow-soft), 0 18px 40px rgba(15, 23, 42, 0.09);
	padding: 0.4rem;
	opacity: 0; visibility: hidden;
	transform: translateY(10px);
	pointer-events: none;
	transition:
		opacity 0.22s var(--ak-drawer-ease),
		transform 0.24s var(--ak-drawer-ease),
		visibility 0s linear 0.2s;
}
.ak-menu > li:hover > .sub-menu,
.ak-menu > li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(4px);
	pointer-events: auto;
	transition:
		opacity 0.22s var(--ak-drawer-ease),
		transform 0.24s var(--ak-drawer-ease),
		visibility 0s linear 0s;
}
.ak-menu .sub-menu li a {
	display: block;
	padding: 0.58rem 0.8rem;
	border-radius: 12px;
	font-size: 0.88rem;
	color: var(--ak-ink-soft);
	text-decoration: none;
	transition: background 0.12s ease, color 0.12s ease;
}
.ak-menu .sub-menu li a:focus-visible {
	outline: 2px solid var(--ak-med);
	outline-offset: 1px;
}
.ak-menu .sub-menu li a:hover { background: var(--ak-bg-2); color: var(--ak-ink); }

.ak-cta-btn { margin-left: 0; flex: 0 0 auto; }

/* Sélecteur de langue maison (segmented FR | EN) ---------- */
.ak-lang {
	display: inline-flex;
	align-items: stretch;
	gap: 3px;
	margin: 0;
	padding: 4px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 9999px;
	box-shadow: 0 1px 4px rgba(15, 23, 42, 0.05);
	flex: 0 0 auto;
	font-family: var(--ak-font);
	position: relative;
	z-index: 2;
	min-width: min(100%, 13.5rem);
	transition:
		box-shadow 0.3s var(--ak-drawer-ease),
		border-color 0.3s ease,
		background 0.3s ease;
}
.ak-lang-item {
	flex: 1 1 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	min-width: 0;
	min-height: 40px;
	padding: 0.35rem 0.65rem;
	border-radius: 9999px;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--ak-ink-mute);
	text-decoration: none !important;
	transition: background 0.15s ease, color 0.15s ease, box-shadow 0.18s ease;
	line-height: 1;
	text-align: center;
	-webkit-tap-highlight-color: transparent;
	white-space: nowrap;
}
.ak-lang-item:focus-visible {
	outline: 2px solid var(--ak-med);
	outline-offset: 2px;
}
.ak-lang-item:hover {
	color: var(--ak-ink);
	background: rgba(255, 255, 255, 0.7);
}
.ak-lang-item.is-active {
	background: #fff;
	color: var(--ak-ink);
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
	cursor: default;
	pointer-events: none;
}
.ak-lang-flag {
	width: 18px;
	height: 13px;
	border-radius: 4px;
	object-fit: cover;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
	display: block;
	flex: 0 0 auto;
}
.ak-lang-name { letter-spacing: 0.01em; }



/* Désactive le shortcode TP s'il est rendu ailleurs (anti-collision) */
.ak-header .trp-shortcode-switcher__wrapper,
.ak-header .trp-language-switcher { display: none; }

@media (max-width: 960px) {
	.ak-header {
		overflow: visible;
		top: 0;
		margin-top: 0;
		border-radius: 0;
		padding-top: calc(0.85rem + env(safe-area-inset-top, 0px));
		padding-bottom: 0.85rem;
		padding-inline: env(safe-area-inset-left, 0px) env(safe-area-inset-right, 0px);
		box-shadow: none;
	}
	/* Le volet ne doit plus passer sous une ombre/portée du header collé. */
	.ak-header.ak-nav-drawer-open {
		box-shadow: none;
		border-bottom-color: transparent;
	}
	.ak-header-inner {
		overflow: visible;
		position: relative;
		z-index: 10061;
		flex: 1 1 auto;
		min-width: 0;
		max-width: 100%;
	}
	.ak-brand,
	.ak-burger {
		position: relative;
		z-index: 10100;
	}
	.ak-lang {
		margin: 0.5rem 0 0;
		width: 100%;
		justify-content: space-between;
		padding: 4px;
		position: relative;
		z-index: auto;
	}
	.ak-lang-item {
		flex: 1;
		justify-content: center;
		min-height: 44px;
		padding: 0.52rem 0.55rem;
		font-size: 0.88rem;
	}
	.artistik-op .ak-hero-grid { grid-template-columns: minmax(0, 1fr); }
	.artistik-op .ak-product-body { grid-template-columns: minmax(0, 1fr); }
	.ak-burger {
		display: block;
		flex: 0 0 auto;
	}
	.ak-nav {
		position: fixed;
		inset: var(--ak-nav-top, 72px) 0 0 0 !important;
		z-index: 10090;
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		margin-left: 0 !important;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
		flex: none;
		min-height: 0;
		padding-inline: clamp(1.05rem, 5vw, 1.45rem);
		padding-inline-start: max(clamp(1.05rem, 5vw, 1.45rem), env(safe-area-inset-left, 0px));
		padding-inline-end: max(clamp(1.05rem, 5vw, 1.45rem), env(safe-area-inset-right, 0px));
		padding-top: 0;
		padding-bottom: max(0.65rem, env(safe-area-inset-bottom, 0px));
		max-height: calc(100dvh - var(--ak-nav-top, 72px) - env(safe-area-inset-bottom, 0px));
		max-height: calc(100svh - var(--ak-nav-top, 72px) - env(safe-area-inset-bottom, 0px));
		background: linear-gradient(180deg, var(--ak-bg-2) 0, var(--ak-card) 2.75rem),
			var(--ak-card);
		border-top: 0;
		box-shadow: 0 -1px 0 var(--ak-line), 0 12px 40px rgba(15, 23, 42, 0.1);
		overflow: hidden;
		transform: translate3d(0, calc(-102% - 10px), 0);
		opacity: 0;
		transition: transform 0.34s var(--ak-drawer-ease), opacity 0.26s ease;
		pointer-events: none;
	}
	.ak-nav.is-open {
		transform: translate3d(0, 0, 0);
		opacity: 1;
		pointer-events: auto;
	}
	/* Liens dans une zone qui défile ; langue + CTA restent intégrés en bas du volet. */
	.ak-nav > .ak-menu {
		flex: 1 1 auto;
		min-height: 4rem;
		overflow-x: clip;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior-y: contain;
		scroll-padding-bottom: 0.5rem;
		padding-top: clamp(0.85rem, 3vw, 1.15rem);
		padding-bottom: 0.5rem;
		gap: 0.26rem;
		align-self: stretch;
	}
	.ak-menu {
		flex-direction: column;
		align-items: stretch;
	}
	.ak-menu > li > a:active {
		background: rgba(15, 118, 110, 0.07);
	}
	.ak-menu > li.menu-item-has-children {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 48px;
		grid-template-rows: auto auto;
		column-gap: 0.35rem;
		align-items: center;
	}
	.ak-nav > .ak-lang {
		flex-shrink: 0;
		margin-top: auto;
		margin-bottom: 0;
		box-sizing: border-box;
		width: 100%;
		padding-top: 1rem;
		border-top: 1px solid var(--ak-line);
		background: var(--ak-card);
		justify-content: space-between;
	}
	.ak-nav > .ak-cta-btn {
		flex-shrink: 0;
		width: 100%;
		justify-content: center;
		flex-wrap: wrap;
		white-space: normal;
		text-align: center;
		padding-inline: 1rem;
		min-height: 50px;
	}
	.ak-nav:not(:has(.ak-lang)) > .ak-cta-btn {
		margin-top: 0 !important;
		padding-top: 1rem;
		border-top: 1px solid var(--ak-line);
		background: var(--ak-card);
	}
	.ak-nav:has(.ak-lang) > .ak-cta-btn {
		margin-top: 0.7rem !important;
		padding-top: 0;
		border-top: 0;
	}
	.ak-menu > li { width: 100%; }
	.ak-menu > li > a {
		padding: 0.85rem 0.65rem;
		min-height: 48px;
		border-radius: 10px;
		font-size: 1rem;
	}
	.ak-menu > li.menu-item-has-children > a {
		grid-column: 1;
		grid-row: 1;
	}
	.ak-submenu-toggle {
		grid-column: 2;
		grid-row: 1;
		justify-self: end;
		width: 48px;
		min-height: 48px;
		margin: 0;
		border: 0;
		border-radius: 10px;
		background: transparent;
		color: var(--ak-ink-mute);
		cursor: pointer;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		-webkit-tap-highlight-color: transparent;
	}
	.ak-submenu-toggle:hover {
		background: var(--ak-bg-2);
		color: var(--ak-ink);
	}
	.ak-submenu-toggle:focus-visible {
		background: var(--ak-bg-2);
		color: var(--ak-ink);
		outline: 2px solid var(--ak-med);
		outline-offset: 2px;
	}
	.ak-submenu-toggle::after {
		content: "";
		display: block;
		width: 10px;
		height: 10px;
		border-right: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		transform: translateY(-2px) rotate(45deg);
		transition: transform 0.26s var(--ak-drawer-ease);
	}
	.menu-item-has-children.is-submenu-open > .ak-submenu-toggle::after {
		transform: translateY(4px) rotate(-135deg);
	}
	.ak-menu > li.menu-item-has-children > .sub-menu {
		grid-column: 1 / -1;
		grid-row: 2;
		position: static;
		min-width: 0;
		opacity: 0;
		max-height: 0;
		overflow: hidden;
		padding: 0;
		transform: none;
		visibility: hidden;
		transition:
			max-height 0.32s var(--ak-drawer-ease),
			opacity 0.24s ease,
			padding 0.26s var(--ak-drawer-ease),
			visibility 0s linear 0.3s;
		box-shadow: none;
		border: 0;
		background: var(--ak-bg);
		border-radius: 10px;
		pointer-events: none;
	}
	.menu-item-has-children.is-submenu-open > .sub-menu {
		opacity: 1;
		visibility: visible;
		transition-delay: 0s, 0s, 0s, 0s;
		max-height: min(480px, 78vh);
		max-height: min(480px, 78svh);
		max-height: min(480px, 78dvh);
		overflow-y: auto;
		overflow-x: clip;
		padding: 0.35rem 0.65rem 0.65rem 0.5rem;
		margin-top: 0.35rem;
		pointer-events: auto;
	}
	.ak-menu .sub-menu li a {
		min-height: 44px;
		display: flex;
		align-items: center;
	}
	.ak-menu > li.menu-item-has-children > a::after { content: none; }
}

@media (min-width: 961px) {
	/* Le logo ne « mange » plus une demi‑barre : la zone navigable commence après la marque. */
	.ak-header-inner {
		flex: 0 0 auto;
		min-width: 0;
		max-width: 100%;
	}
	.ak-header {
		justify-content: flex-start;
		gap: clamp(0.5rem, 2vw, 0.95rem);
	}
	/* Rangée bureau : la liste étire jusqu’aux contrôles (lang + CTA) — plus de « trou » après Contact. */
	.ak-nav {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: flex-start;
		min-width: 0;
		flex: 1 1 auto;
		margin-left: 0;
		gap: clamp(0.45rem, 1.4vw, 0.85rem);
	}
	.ak-nav > .ak-menu {
		flex: 1 1 auto;
		min-width: 0;
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: space-between;
		gap: clamp(2px, 0.35vw, 6px);
		width: auto;
		max-width: none;
	}
	.ak-nav .ak-lang {
		flex-shrink: 0;
	}
	.ak-nav .ak-cta-btn {
		flex-shrink: 0;
		position: relative;
		z-index: 3;
	}
	.ak-nav-backdrop {
		display: none !important;
		pointer-events: none !important;
	}
	.ak-submenu-toggle {
		display: none !important;
	}
	.ak-menu > li > a {
		min-height: 2.1rem;
		padding: 0.46rem clamp(0.48rem, 0.85vw, 0.72rem);
		font-size: clamp(0.805rem, 0.82vw, 0.88rem);
		gap: 0.22rem;
		line-height: 1.25;
	}
	.ak-menu > li.menu-item-has-children > a::after {
		font-size: 0.62rem;
	}
	.ak-brand-text {
		font-size: 0.97rem;
		line-height: 1.2;
	}
	.ak-brand-mark {
		width: 26px;
		height: 26px;
		border-radius: 9px;
		align-self: center;
	}
	.ak-lang {
		flex-shrink: 0;
		gap: 7px;
		padding: 3px 6px;
	}
	.ak-lang-item {
		min-height: 38px;
		padding: 0.29rem 0.55rem;
		font-size: 0.78rem;
		gap: 0.34rem;
	}
	.ak-nav .ak-cta-btn.ak-btn {
		padding-block: 0.52rem !important;
		padding-inline: 0.82rem !important;
		font-size: 0.84rem !important;
		min-height: 0;
	}
}

@media (max-width: 560px) {
	.artistik-op .ak-tile {
		grid-template-columns: auto minmax(0, 1fr);
		grid-template-areas:
			"icon arrow"
			"body body";
		align-items: start;
	}
	.artistik-op .ak-tile-icon { grid-area: icon; align-self: start; }
	.artistik-op .ak-tile-arrow { grid-area: arrow; justify-self: end; align-self: start; }
	.artistik-op .ak-tile-body {
		grid-area: body;
		width: 100%;
		min-width: 0;
	}
	.artistik-op .ak-contact-list li { align-items: flex-start; }
	.ak-btn:not(.ak-cta-btn),
	.artistik-op .ak-hero-actions .ak-btn {
		white-space: normal;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.ak-brand {
		min-width: 0;
		flex: 1;
		max-width: calc(100vw - 7.5rem);
	}
	.ak-brand-text {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	.artistik-op .ak-hero-actions {
		flex-direction: column;
	}
	.artistik-op .ak-hero-actions .ak-btn {
		width: 100%;
		justify-content: center;
	}
}

.artistik-op .ak-prose img,
.artistik-op .ak-prose svg,
.artistik-op .ak-prose video,
.artistik-op .ak-prose iframe,
.artistik-op .ak-prose embed,
.artistik-op .ak-prose object {
	max-width: 100%;
	height: auto;
}

.artistik-op .ak-prose table {
	display: block;
	width: max-content;
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

/* Blocs riches (WP / Gutenberg) — pas de débordement hors conteneur */
.artistik-op .ak-prose figure,
.artistik-op .ak-prose pre,
.artistik-op .ak-prose iframe,
.artistik-op .ak-prose .wp-block-embed__wrapper {
	max-width: 100%;
	overflow-x: auto;
}

.artistik-op .ak-prose pre code {
	word-break: break-word;
}

header .sub-menu { list-style: none; }

.ak-footer {
	background: var(--ak-card);
	border-top: 1px solid var(--ak-line);
	padding: 3rem 0 0;
	color: var(--ak-ink-soft);
}
.ak-footer-brand {
	min-width: 0;
	align-self: start;
}
.ak-footer-social {
	margin-top: clamp(1rem, 2.8vw, 1.35rem);
}
.ak-social-strip {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.6rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.ak-social-strip .ak-social-item {
	margin: 0;
	flex: 0 0 auto;
}
.ak-social-slot {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.625rem;
	height: 2.625rem;
	border-radius: 12px;
	overflow: hidden;
	border: none;
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.12);
	user-select: none;
	pointer-events: none;
	cursor: default;
	flex-shrink: 0;
	box-sizing: border-box;
	color: #fff;
}
.ak-social-slot--linkedin {
	background: #0a66c2;
}
.ak-social-slot--x {
	background: #000000;
}
.ak-social-slot--facebook {
	background: #1877f2;
}
.ak-social-slot--instagram {
	background: linear-gradient(
		218deg,
		#fcb045 12%,
		#fd1d1d 32%,
		#e1306c 55%,
		#c13584 73%,
		#833ab4 100%
	);
}
.ak-social-slot svg {
	display: block;
	flex-shrink: 0;
}
.ak-footer-inner {
	width: min(1200px, calc(100% - 2 * var(--ak-gutter-inline)));
	max-width: 100%;
	box-sizing: border-box;
	padding-inline: env(safe-area-inset-left, 0px) env(safe-area-inset-right, 0px);
	margin-inline: auto;
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 2rem;
	padding-bottom: 2rem;
}
.ak-footer-cols {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 1.5rem;
}
.ak-footer h6 {
	margin: 0 0 0.6rem;
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ak-ink);
}
.ak-footer ul { margin: 0; padding: 0; list-style: none; }
.ak-footer ul li { margin: 0.3rem 0; }
.ak-footer ul a { color: var(--ak-ink-soft); text-decoration: none; font-size: 0.9rem; }
.ak-footer ul a:hover { color: var(--ak-med); }
.ak-footer-bar {
	border-top: 1px solid var(--ak-line);
	padding: 1rem max(1.25rem, env(safe-area-inset-right, 0px)) max(1rem, env(safe-area-inset-bottom, 0px))
		max(1.25rem, env(safe-area-inset-left, 0px));
	text-align: center;
	color: var(--ak-ink-mute);
	font-size: 0.8rem;
}
@media (max-width: 720px) {
	.ak-footer-inner { grid-template-columns: 1fr; }
}
