/* ==========================================================================
   DEMISTYLE — Feuille de style principale
   Design : luxe marocain moderne · palette zellige + or
   ========================================================================== */

:root {
	/* Or */
	--gold:        #C9A24B;
	--gold-light:  #E7C56B;
	--gold-bright: #EEC750;
	--gold-dark:   #A07E32;

	/* Vert émeraude (base luxe) */
	--emerald:      #16312C;
	--emerald-2:    #1E433B;
	--emerald-deep: #0E211D;

	/* Neutres chauds */
	--cream:    #F6F2E8;
	--cream-2:  #FBF8F0;
	--paper:    #FFFFFF;
	--ink:      #20231F;
	--ink-soft: #4A4F47;

	/* Accents zellige */
	--terracotta: #C56A52;
	--teal:       #6FB7A8;
	--zgreen:     #93B47D;
	--zblue:      #809DBB;
	--zrose:      #C98A93;
	--zsand:      #DEA87A;

	/* Système */
	--maxw: 1200px;
	--radius: 14px;
	--radius-lg: 22px;
	--shadow-sm: 0 6px 20px rgba(14, 33, 29, .08);
	--shadow:    0 18px 50px rgba(14, 33, 29, .14);
	--shadow-lg: 0 30px 80px rgba(14, 33, 29, .22);
	--gold-line: linear-gradient(90deg, var(--gold-dark), var(--gold-bright), var(--gold-dark));

	--font-head: "Cormorant Garamond", "Times New Roman", serif;
	--font-body: "Jost", -apple-system, "Segoe UI", system-ui, sans-serif;

	--ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 17px;
	line-height: 1.7;
	color: var(--ink);
	background: var(--cream-2);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
body.ds-noscroll { overflow: hidden; }

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

a { color: var(--gold-dark); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
	font-family: var(--font-head);
	font-weight: 600;
	line-height: 1.12;
	color: var(--emerald);
	margin: 0 0 .5em;
	letter-spacing: .2px;
}

p { margin: 0 0 1.1em; }

.ds-container {
	width: 100%;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 24px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px,1px,1px,1px);
	white-space: nowrap;
}
.ds-skip-link:focus {
	position: fixed; top: 12px; left: 12px; z-index: 9999;
	width: auto; height: auto; clip: auto;
	background: var(--gold); color: var(--emerald);
	padding: 10px 18px; border-radius: 8px; font-weight: 600;
}

/* ---------- Typo utilitaires ---------- */
.ds-h2 {
	font-size: clamp(1.9rem, 4vw, 3rem);
	font-weight: 600;
}
.ds-eyebrow {
	font-family: var(--font-body);
	text-transform: uppercase;
	letter-spacing: .28em;
	font-size: .72rem;
	font-weight: 600;
	color: var(--gold-dark);
	margin: 0 0 .9em;
}
.ds-eyebrow--gold { color: var(--gold-bright); }

.ds-divider { display: block; margin: 1.1rem auto 1.6rem; width: 320px; max-width: 70%; height: auto; opacity: .95; }
.ds-divider--left { margin-left: 0; }

.ds-section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.ds-section--cream { background: var(--cream); }
.ds-section--dark { background: var(--emerald); color: #EFE9DA; }
.ds-section--dark .ds-h2,
.ds-section--dark h3 { color: #FBF6EA; }

.ds-sectionhead { text-align: center; max-width: 760px; margin: 0 auto clamp(40px, 6vw, 68px); }
.ds-sectionhead--light .ds-h2 { color: #FBF6EA; }
.ds-sectionhead__lead { color: var(--ink-soft); font-size: 1.08rem; }
.ds-section--dark .ds-sectionhead__lead { color: #CBDAD2; }

/* ---------- Boutons ---------- */
.ds-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5em;
	font-family: var(--font-body);
	font-weight: 600; font-size: .92rem;
	letter-spacing: .04em;
	padding: 14px 28px;
	border-radius: 50px;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
	text-align: center;
	line-height: 1;
}
.ds-btn--lg { padding: 17px 38px; font-size: 1rem; }
.ds-btn--block { display: flex; width: 100%; }

.ds-btn--gold {
	background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
	color: var(--emerald-deep);
	box-shadow: 0 10px 26px rgba(201, 162, 75, .35);
}
.ds-btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(201, 162, 75, .45); color: var(--emerald-deep); }

.ds-btn--dark { background: var(--emerald); color: var(--cream); }
.ds-btn--dark:hover { background: var(--emerald-2); color: #fff; transform: translateY(-3px); }

.ds-btn--ghost { background: transparent; color: var(--gold-bright); border-color: rgba(231, 197, 107, .6); }
.ds-btn--ghost:hover { background: rgba(231, 197, 107, .12); color: var(--gold-bright); border-color: var(--gold-bright); }

.ds-btn--whats { background: #1FA855; color: #fff; }
.ds-btn--whats:hover { background: #178c46; color: #fff; transform: translateY(-3px); }

/* ==========================================================================
   EN-TÊTE
   ========================================================================== */
.ds-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
	transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
	padding: 14px 0;
	background: linear-gradient(180deg, rgba(14,33,29,.55), rgba(14,33,29,0));
}
.ds-header.is-scrolled {
	background: var(--emerald);
	box-shadow: 0 8px 30px rgba(14,33,29,.28);
	padding: 8px 0;
	border-bottom: 1px solid rgba(201,162,75,.25);
}
.ds-header__inner { display: flex; align-items: center; gap: 24px; }

.ds-logo img, .custom-logo-link img {
	height: 60px; width: auto;
	transition: height .4s var(--ease);
}
.is-scrolled .ds-logo img, .is-scrolled .custom-logo-link img { height: 48px; }
.custom-logo-link { display: inline-block; }

.ds-nav { margin-left: auto; }
.ds-menu {
	display: flex; align-items: center; gap: 6px;
	list-style: none; margin: 0; padding: 0;
}
.ds-menu li { position: relative; }
.ds-menu a {
	display: block;
	color: #F4EEDF; font-weight: 500; font-size: .92rem;
	letter-spacing: .03em;
	padding: 10px 16px; border-radius: 8px;
}
.ds-menu a:hover { color: var(--gold-bright); }
.ds-menu a::after {
	content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px;
	height: 1.5px; background: var(--gold-bright);
	transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.ds-menu a:hover::after { transform: scaleX(1); }
/* sous-menus */
.ds-menu .sub-menu {
	position: absolute; top: 100%; left: 0; min-width: 220px;
	background: var(--emerald); border: 1px solid rgba(201,162,75,.25);
	border-radius: 12px; padding: 8px; list-style: none; margin: 8px 0 0;
	box-shadow: var(--shadow); opacity: 0; visibility: hidden;
	transform: translateY(8px); transition: all .25s var(--ease);
}
.ds-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.ds-header__cta { display: flex; align-items: center; gap: 18px; }
.ds-header__phone { color: #F4EEDF; font-weight: 500; font-size: .9rem; white-space: nowrap; }
.ds-header__phone:hover { color: var(--gold-bright); }
.ds-header__phone .ds-icon { color: var(--gold-bright); margin-right: 6px; }

/* Burger */
.ds-burger {
	display: none; flex-direction: column; gap: 5px;
	background: none; border: 0; cursor: pointer; padding: 8px;
	margin-left: auto;
}
.ds-burger span { width: 26px; height: 2px; background: var(--gold-bright); transition: all .3s var(--ease); border-radius: 2px; }
.ds-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ds-burger.is-open span:nth-child(2) { opacity: 0; }
.ds-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav mobile */
.ds-mobile-nav {
	position: fixed; top: 0; right: 0; bottom: 0; width: min(86vw, 360px); z-index: 1100;
	background: var(--emerald);
	background-image: url('../images/pattern-gold.svg');
	background-blend-mode: overlay;
	padding: 96px 28px 40px;
	transform: translateX(100%); transition: transform .35s var(--ease);
	box-shadow: -20px 0 60px rgba(0,0,0,.4);
	overflow-y: auto;
}
.ds-mobile-nav.is-open { transform: translateX(0); }
.ds-mobile-menu { list-style: none; margin: 0 0 24px; padding: 0; }
.ds-mobile-menu li { border-bottom: 1px solid rgba(201,162,75,.18); }
.ds-mobile-menu a { display: block; padding: 16px 4px; color: #F4EEDF; font-size: 1.05rem; font-weight: 500; }
.ds-mobile-menu a:hover { color: var(--gold-bright); }
.ds-mobile-menu .sub-menu { list-style: none; padding-left: 14px; }

/* ==========================================================================
   HERO
   ========================================================================== */
.ds-hero {
	position: relative;
	min-height: 100vh;
	display: flex; align-items: center;
	text-align: center;
	color: var(--cream);
	background:
		radial-gradient(ellipse at 50% 0%, rgba(30,67,59,.9), rgba(14,33,29,1) 70%),
		var(--emerald-deep);
	overflow: hidden;
	padding: 120px 0 90px;
}
.ds-hero::before {
	content: ""; position: absolute; inset: 0;
	background-image: url('../images/pattern-hero.svg');
	background-size: 170px;
	opacity: .9;
	mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.ds-hero--photo { background: var(--emerald-deep); }
.ds-hero--photo .ds-hero__overlay {
	position: absolute; inset: 0;
	background: var(--hero-img) center/cover no-repeat;
	opacity: .35;
}
.ds-hero--photo::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(14,33,29,.55), rgba(14,33,29,.82));
}
.ds-hero__inner { position: relative; z-index: 2; max-width: 860px; }
.ds-hero__logo { width: clamp(280px, 42vw, 520px); margin: 0 auto 8px; filter: drop-shadow(0 8px 30px rgba(0,0,0,.4)); }
.ds-hero__kicker {
	text-transform: uppercase; letter-spacing: .35em; font-size: .8rem; font-weight: 600;
	color: var(--gold-bright); margin: 0 0 18px;
}
.ds-hero__title {
	color: #FBF6EA;
	font-size: clamp(2.4rem, 6vw, 4.4rem);
	font-weight: 600; margin: 0 0 22px;
	text-shadow: 0 4px 30px rgba(0,0,0,.35);
}
.ds-hero__text {
	color: #E4DDCB; font-size: clamp(1.05rem, 2.2vw, 1.3rem);
	max-width: 660px; margin: 0 auto 36px;
}
.ds-hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.ds-hero__scroll {
	position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
	width: 26px; height: 42px; border: 2px solid rgba(231,197,107,.55); border-radius: 14px;
}
.ds-hero__scroll span {
	position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
	width: 4px; height: 8px; background: var(--gold-bright); border-radius: 2px;
	animation: ds-scroll 1.8s var(--ease) infinite;
}
@keyframes ds-scroll { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 22px; } 100% { opacity: 0; } }

/* ==========================================================================
   BANDEAU CONFIANCE
   ========================================================================== */
.ds-trust { background: var(--emerald-2); color: var(--cream); padding: 30px 0; position: relative; z-index: 3; }
.ds-trust__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.ds-trust__item { flex: 1; min-width: 150px; text-align: center; }
.ds-trust__num { display: block; font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--gold-bright); line-height: 1.1; }
.ds-trust__lbl { display: block; font-size: .82rem; letter-spacing: .05em; color: #CBDAD2; margin-top: 4px; }
.ds-trust__sep { width: 1px; height: 42px; background: rgba(201,162,75,.4); }

/* ==========================================================================
   À PROPOS
   ========================================================================== */
.ds-about__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }

.ds-about__visual { position: relative; aspect-ratio: 1/1; }
.ds-about__tile { position: absolute; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.ds-about__tile--1 {
	inset: 0 30% 30% 0;
	background:
		linear-gradient(135deg, rgba(14,33,29,.15), rgba(14,33,29,.5)),
		repeating-linear-gradient(45deg, var(--emerald), var(--emerald) 14px, var(--emerald-2) 14px, var(--emerald-2) 28px);
	background-blend-mode: multiply;
}
.ds-about__tile--2 {
	inset: 35% 0 0 38%;
	background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
	background-image: url('../images/pattern-cream.svg'), linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
	background-size: 120px, cover;
}
.ds-about__star {
	position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
	width: 38%; aspect-ratio: 1/1;
	background: var(--cream);
	-webkit-mask: url('../images/khatam-fill.svg') center/contain no-repeat;
	mask: url('../images/khatam-fill.svg') center/contain no-repeat;
	box-shadow: var(--shadow-lg);
	z-index: 2;
}

.ds-checklist { list-style: none; margin: 1.4em 0 1.8em; padding: 0; }
.ds-checklist li { position: relative; padding-left: 34px; margin-bottom: 12px; font-weight: 500; }
.ds-checklist li::before {
	content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px;
	background: var(--gold); -webkit-mask: url('../images/khatam-fill.svg') center/contain no-repeat;
	mask: url('../images/khatam-fill.svg') center/contain no-repeat;
}

/* ==========================================================================
   MOTIF DE FOND (sections sombres)
   ========================================================================== */
.ds-pattern-bg {
	position: absolute; inset: 0; z-index: 0;
	background-image: url('../images/pattern-gold.svg');
	background-size: 160px; opacity: .5; pointer-events: none;
}
.ds-activities .ds-container,
.ds-cta__inner { position: relative; z-index: 1; }

/* ==========================================================================
   CARTES
   ========================================================================== */
.ds-cards { display: grid; gap: 26px; }
.ds-cards--4 { grid-template-columns: repeat(4, 1fr); }
.ds-cards--3 { grid-template-columns: repeat(3, 1fr); }

.ds-card {
	background: var(--paper);
	border-radius: var(--radius-lg);
	padding: 36px 30px;
	box-shadow: var(--shadow-sm);
	transition: transform .4s var(--ease), box-shadow .4s var(--ease);
	position: relative; overflow: hidden;
}
.ds-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }

/* Carte métier (sur fond sombre) */
.ds-card--metier {
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(201,162,75,.28);
	text-align: center; backdrop-filter: blur(2px);
}
.ds-card--metier::before {
	content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
	background: var(--gold-line); transform: scaleX(0); transform-origin: left;
	transition: transform .4s var(--ease);
}
.ds-card--metier:hover::before { transform: scaleX(1); }
.ds-card__icon {
	width: 66px; height: 66px; margin: 0 auto 18px; display: grid; place-items: center;
	font-size: 1.7rem; color: var(--gold-bright);
	border: 1.5px solid rgba(201,162,75,.5); border-radius: 50%;
}
.ds-card--metier .ds-card__title { color: #FBF6EA; }
.ds-card--metier .ds-card__text { color: #C8D6CE; font-size: .96rem; }

.ds-card__title { font-size: 1.45rem; margin: 0 0 .5em; }
.ds-card__text { color: var(--ink-soft); margin: 0; }

/* Carte produit avec visuel */
.ds-card--product { padding: 0; display: flex; flex-direction: column; }
.ds-card__media {
	position: relative; aspect-ratio: 4/3; overflow: hidden;
	display: grid; place-items: center;
}
.ds-card__media img { width: 100%; height: 100%; object-fit: cover; }
.ds-card__star {
	width: 46%; aspect-ratio: 1/1;
	background: rgba(255,255,255,.85);
	-webkit-mask: url('../images/khatam.svg') center/contain no-repeat;
	mask: url('../images/khatam.svg') center/contain no-repeat;
	opacity: .9; transition: transform .6s var(--ease);
}
.ds-card--product:hover .ds-card__star { transform: rotate(22.5deg) scale(1.06); }
.ds-card__body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.ds-card__link { margin-top: auto; font-weight: 600; color: var(--gold-dark); }
.ds-card__link span { transition: transform .3s var(--ease); display: inline-block; }
.ds-card__link:hover span { transform: translateX(5px); }

/* Couleurs des visuels produits (palette zellige) */
.ds-prod--velvet    .ds-card__media { background: linear-gradient(135deg, #2c4f47, var(--emerald)); }
.ds-prod--jacquard  .ds-card__media { background: linear-gradient(135deg, var(--terracotta), #9c4a37); }
.ds-prod--passement .ds-card__media { background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark)); }
.ds-prod--lin       .ds-card__media { background: linear-gradient(135deg, var(--zgreen), #6f9159); }
.ds-prod--salon     .ds-card__media { background: linear-gradient(135deg, var(--zblue), #5a7794); }
.ds-prod--canape    .ds-card__media { background: linear-gradient(135deg, var(--teal), #3f9384); }
.ds-prod--passement .ds-card__star { background: rgba(20,40,30,.55); }

/* Carte valeur */
.ds-card--value { text-align: center; padding-top: 48px; }
.ds-card__valuestar {
	display: block; width: 56px; height: 56px; margin: 0 auto 20px;
	background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
	-webkit-mask: url('../images/khatam-fill.svg') center/contain no-repeat;
	mask: url('../images/khatam-fill.svg') center/contain no-repeat;
}

.ds-products__note { text-align: center; color: var(--ink-soft); font-size: .9rem; margin-top: 36px; font-style: italic; }

/* ==========================================================================
   SUR MESURE
   ========================================================================== */
.ds-bespoke__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.ds-steps { list-style: none; counter-reset: step; margin: 1.6em 0 2em; padding: 0; }
.ds-steps li { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 18px; }
.ds-steps__n {
	flex: none; width: 42px; height: 42px; display: grid; place-items: center;
	font-family: var(--font-head); font-weight: 700; font-size: 1.2rem;
	color: var(--emerald); background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
	border-radius: 50%;
}
.ds-bespoke__visual { position: relative; aspect-ratio: 4/5; }
.ds-bespoke__frame {
	position: absolute; inset: 0; border-radius: var(--radius-lg); overflow: hidden;
	background:
		radial-gradient(circle at 30% 20%, rgba(30,67,59,.85), var(--emerald-deep)),
		var(--emerald);
	box-shadow: var(--shadow-lg);
	display: grid; place-items: center;
}
.ds-bespoke__frame::before {
	content: ""; position: absolute; inset: 0;
	background-image: url('../images/pattern-gold.svg'); background-size: 150px; opacity: .7;
}
.ds-bespoke__star {
	position: absolute;
	background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
	-webkit-mask: url('../images/khatam-fill.svg') center/contain no-repeat;
	mask: url('../images/khatam-fill.svg') center/contain no-repeat;
}
.ds-bespoke__star--lg { width: 50%; aspect-ratio: 1/1; }
.ds-bespoke__star--sm {
	width: 26%; aspect-ratio: 1/1; right: 12%; bottom: 12%;
	background: var(--cream); opacity: .9;
}

/* ==========================================================================
   APPEL À L'ACTION
   ========================================================================== */
.ds-cta {
	position: relative; text-align: center; color: var(--cream);
	background: linear-gradient(135deg, var(--emerald-2), var(--emerald-deep));
	padding: clamp(70px, 9vw, 110px) 0; overflow: hidden;
}
.ds-cta__title { color: #FBF6EA; font-size: clamp(1.9rem, 4.5vw, 3.2rem); margin-bottom: .3em; }
.ds-cta__text { color: #D6E0D8; font-size: 1.15rem; max-width: 600px; margin: 0 auto 32px; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.ds-contact__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 5vw, 60px); align-items: start; }

.ds-contact__info {
	background: var(--emerald); color: var(--cream);
	border-radius: var(--radius-lg); padding: 44px 38px; position: relative; overflow: hidden;
}
.ds-contact__info::before {
	content: ""; position: absolute; inset: 0;
	background-image: url('../images/pattern-gold.svg'); background-size: 150px; opacity: .5;
}
.ds-contact__info > * { position: relative; z-index: 1; }
.ds-contact__infotitle { color: #FBF6EA; font-size: 1.8rem; }
.ds-contact__intro { color: #CBDAD2; }
.ds-contact__list { list-style: none; margin: 26px 0 28px; padding: 0; }
.ds-contact__list li { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.ds-contact__list a { color: var(--gold-bright); }
.ds-contact__list strong { color: #FBF6EA; font-family: var(--font-body); }
.ds-contact__ico {
	flex: none; width: 38px; height: 38px; display: grid; place-items: center;
	color: var(--gold-bright); border: 1px solid rgba(201,162,75,.45); border-radius: 50%;
	font-size: 1.05rem;
}

/* Formulaire */
.ds-contact__formwrap {
	background: var(--paper); border-radius: var(--radius-lg);
	padding: clamp(30px, 4vw, 48px); box-shadow: var(--shadow);
	border: 1px solid rgba(201,162,75,.18);
}
.ds-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ds-field { margin-bottom: 20px; display: flex; flex-direction: column; }
.ds-field label { font-weight: 600; font-size: .85rem; letter-spacing: .03em; color: var(--emerald); margin-bottom: 8px; }
.ds-req { color: var(--terracotta); }
.ds-field input,
.ds-field select,
.ds-field textarea {
	font-family: var(--font-body); font-size: 1rem; color: var(--ink);
	padding: 13px 16px; border: 1.5px solid #E2DCCB; border-radius: 10px;
	background: var(--cream-2); transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
	width: 100%;
}
.ds-field textarea { resize: vertical; min-height: 130px; }
.ds-field input:focus,
.ds-field select:focus,
.ds-field textarea:focus {
	outline: none; border-color: var(--gold); background: #fff;
	box-shadow: 0 0 0 4px rgba(201,162,75,.15);
}
.ds-form__submit { margin-top: 6px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.ds-form__note { margin: 0; font-size: .82rem; color: var(--ink-soft); }
.ds-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.ds-formnotice {
	padding: 16px 20px; border-radius: 12px; margin-bottom: 24px; font-weight: 500;
	border: 1px solid; animation: ds-fade .5s var(--ease);
}
.ds-formnotice--ok { background: #EAF6EE; border-color: #9FCDB0; color: #1d6b3a; }
.ds-formnotice--ko { background: #FBEEEA; border-color: #E0A290; color: #9c3b22; }
@keyframes ds-fade { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

.ds-map { margin-top: 50px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.ds-map__facade {
	width: 100%; min-height: 200px; height: 280px; border: 0; cursor: pointer;
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
	color: var(--cream); font-family: var(--font-body); font-size: 1rem;
	background: linear-gradient(135deg, var(--emerald-2), var(--emerald-deep));
	background-image: url('../images/pattern-gold.svg'), linear-gradient(135deg, var(--emerald-2), var(--emerald-deep));
	background-size: 150px, cover;
	transition: filter .3s var(--ease);
}
.ds-map__facade:hover { filter: brightness(1.12); }
.ds-map__facade strong { color: var(--gold-bright); }
.ds-map__pin { font-size: 2.4rem; color: var(--gold-bright); }
.ds-contact__page-intro { max-width: 760px; margin: 0 auto 40px; text-align: center; }

/* ==========================================================================
   PIED DE PAGE
   ========================================================================== */
.ds-footer { position: relative; background: var(--emerald-deep); color: #C8D6CE; overflow: hidden; }
.ds-footer__pattern {
	position: absolute; inset: 0; background-image: url('../images/pattern-gold.svg');
	background-size: 160px; opacity: .35; pointer-events: none;
}
.ds-footer__inner {
	position: relative; z-index: 1;
	display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 48px;
	padding: clamp(56px, 7vw, 90px) 24px clamp(40px, 5vw, 60px);
}
.ds-footer__logo { width: 280px; max-width: 80%; margin-bottom: 18px; }
.ds-footer__tagline { color: #AFC2B8; max-width: 380px; }
.ds-footer__title { color: var(--gold-bright); font-size: 1.25rem; margin-bottom: 18px; }
.ds-footer__list, .ds-footer__contact { list-style: none; margin: 0; padding: 0; }
.ds-footer__list li, .ds-footer__contact li { margin-bottom: 12px; }
.ds-footer__list a, .ds-footer__contact a { color: #C8D6CE; }
.ds-footer__list a:hover, .ds-footer__contact a:hover { color: var(--gold-bright); }
.ds-footer__contact span[aria-hidden] { color: var(--gold-bright); margin-right: 8px; }
.ds-social { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.ds-social a {
	font-size: .82rem; font-weight: 500; letter-spacing: .04em;
	color: #C8D6CE; border: 1px solid rgba(201,162,75,.4); padding: 7px 14px; border-radius: 50px;
}
.ds-social a:hover { background: var(--gold); color: var(--emerald-deep); border-color: var(--gold); }

.ds-footer__bottom { position: relative; z-index: 1; border-top: 1px solid rgba(201,162,75,.2); }
.ds-footer__bottominner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px 24px; }
.ds-footer__bottom p { margin: 0; font-size: .86rem; color: #9DB1A7; }
.ds-footer__bottom strong { color: var(--gold-bright); font-weight: 600; }
.ds-footer__nav { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; }
.ds-footer__nav a { color: #9DB1A7; font-size: .86rem; }

/* Bouton haut de page */
.ds-totop {
	position: fixed; bottom: 26px; right: 26px; z-index: 900;
	width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
	background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark)); color: var(--emerald-deep);
	font-size: 1.2rem; box-shadow: var(--shadow);
	opacity: 0; visibility: hidden; transform: translateY(12px);
	transition: all .3s var(--ease);
}
.ds-totop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.ds-totop:hover { transform: translateY(-3px); }

/* ==========================================================================
   PAGES INTÉRIEURES
   ========================================================================== */
.ds-pageheader {
	position: relative; background: var(--emerald); color: var(--cream);
	padding: clamp(120px, 16vw, 180px) 0 clamp(50px, 7vw, 80px); text-align: center; overflow: hidden;
}
.ds-pageheader__pattern {
	position: absolute; inset: 0; background-image: url('../images/pattern-gold.svg'); background-size: 160px; opacity: .5;
}
.ds-pageheader .ds-container { position: relative; z-index: 1; }
.ds-pageheader__title { color: #FBF6EA; font-size: clamp(2rem, 5vw, 3.4rem); margin: 0; }
.ds-pageheader__meta { color: #CBDAD2; margin-top: 10px; }

.ds-prose { max-width: 820px; margin: 0 auto; }
.ds-prose h2 { font-size: 2rem; margin-top: 1.6em; }
.ds-prose h3 { font-size: 1.5rem; margin-top: 1.4em; }
.ds-prose img { border-radius: var(--radius); margin: 1.5em 0; }
.ds-prose__hero { width: 100%; margin-bottom: 2em; }
.ds-prose ul, .ds-prose ol { padding-left: 1.4em; }
.ds-prose li { margin-bottom: .5em; }
.ds-prose blockquote {
	border-left: 3px solid var(--gold); margin: 1.5em 0; padding: .4em 1.4em;
	font-family: var(--font-head); font-size: 1.4rem; font-style: italic; color: var(--emerald);
}

.ds-card--post .ds-card__media { display: block; aspect-ratio: 16/10; }
.ds-card__meta { font-size: .82rem; color: var(--gold-dark); letter-spacing: .04em; }

.ds-pagination { margin-top: 50px; text-align: center; }
.ds-pagination .page-numbers {
	display: inline-grid; place-items: center; min-width: 42px; height: 42px; padding: 0 12px;
	border-radius: 10px; border: 1px solid #E2DCCB; margin: 0 4px; color: var(--emerald); font-weight: 600;
}
.ds-pagination .page-numbers.current { background: var(--gold); border-color: var(--gold); color: var(--emerald-deep); }
.ds-empty { text-align: center; color: var(--ink-soft); }

/* 404 */
.ds-404 { text-align: center; }
.ds-404__inner { max-width: 560px; margin: 0 auto; padding: 40px 0; }
.ds-404__star {
	display: block; width: 90px; height: 90px; margin: 0 auto 24px;
	background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
	-webkit-mask: url('../images/khatam-fill.svg') center/contain no-repeat;
	mask: url('../images/khatam-fill.svg') center/contain no-repeat;
}

/* ==========================================================================
   ANIMATIONS D'APPARITION
   ========================================================================== */
.ds-reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.ds-reveal.is-visible { opacity: 1; transform: none; }
.ds-cards .ds-card.ds-reveal:nth-child(2) { transition-delay: .08s; }
.ds-cards .ds-card.ds-reveal:nth-child(3) { transition-delay: .16s; }
.ds-cards .ds-card.ds-reveal:nth-child(4) { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
	* { animation: none !important; transition: none !important; }
	.ds-reveal { opacity: 1; transform: none; }
	html { scroll-behavior: auto; }
}

/* ==========================================================================
   SÉLECTEUR DE LANGUE
   ========================================================================== */
.ds-langswitch { display: inline-flex; align-items: center; gap: 2px; padding: 3px; border: 1px solid rgba(201,162,75,.45); border-radius: 50px; }
.ds-langswitch__item {
	display: inline-grid; place-items: center; min-width: 34px; height: 28px; padding: 0 8px;
	font-size: .76rem; font-weight: 600; letter-spacing: .05em; color: #E4DDCB; border-radius: 50px;
	transition: background .25s var(--ease), color .25s var(--ease);
}
.ds-langswitch__item:hover { color: var(--gold-bright); }
.ds-langswitch__item.is-active { background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark)); color: var(--emerald-deep); }
.ds-langswitch--mobile { margin-bottom: 24px; }
.is-scrolled .ds-langswitch__item { color: #E4DDCB; }

/* ==========================================================================
   PRODUITS — boutons « voir plus »
   ========================================================================== */
.ds-products__more, .ds-products__note { text-align: center; margin-top: 40px; }
.ds-product-single__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.ds-product-single__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.ds-product-single__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
@media (max-width: 860px) { .ds-product-single__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
	.ds-cards--4 { grid-template-columns: repeat(2, 1fr); }
	.ds-header__phone { display: none; }
}

@media (max-width: 900px) {
	.ds-nav, .ds-header__cta { display: none; }
	.ds-burger { display: flex; }
	.ds-about__grid,
	.ds-bespoke__grid,
	.ds-contact__grid { grid-template-columns: 1fr; }
	.ds-about__visual { max-width: 420px; margin: 0 auto; }
	.ds-bespoke__visual { max-width: 360px; margin: 0 auto; order: -1; }
	.ds-footer__inner { grid-template-columns: 1fr 1fr; }
	.ds-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
	body { font-size: 16px; }
	.ds-cards--3, .ds-cards--4 { grid-template-columns: 1fr; }
	.ds-form__row { grid-template-columns: 1fr; gap: 0; }
	.ds-trust__sep { display: none; }
	.ds-trust__item { flex-basis: 45%; }
	.ds-footer__inner { grid-template-columns: 1fr; }
	.ds-footer__bottominner { flex-direction: column; text-align: center; }
	.ds-hero { min-height: 92vh; }
	.ds-btn--lg { width: 100%; }
	.ds-hero__actions { flex-direction: column; }
}
