/* ===================================================
   Om Karyann — sections.css
   Styles des sections homepage (hero, trust bar, …)
   =================================================== */

/* ===== TYPO ITALIANA (h1 display) — refonte 2026-05-03 =====
   Italiana est large naturellement : on cale font-weight 400 (Italiana n'a que 400),
   on FORCE le font-size hero (le clamp du preset est sometimes overridden) et color visible. */
/* Scopé aux héros landing (accueil + boutique) uniquement — sinon force 88px sur
   TOUT h1 en classe Italiana (ex. titre contact). Les titres de contenu suivent
   l'échelle Marcellus 46 par défaut (custom.css). */
.ok-section--hero h1.has-italiana-font-family,
.ok-section--boutique-hero h1.has-italiana-font-family {
    font-size: clamp(48px, 6.5vw, 88px) !important;
    font-weight: 400 !important;
    letter-spacing: 0.005em !important;
    color: var(--ok-text) !important;
    line-height: 1.05 !important;
}

h1.has-italiana-font-family em,
.has-italiana-font-family em {
    font-family: 'Cormorant Garamond', 'Italiana', Georgia, serif;
    font-style: italic;
    font-weight: 500;
    /* Italiana n'ayant pas d'italique, on bascule vers Cormorant pour les <em> */
}

/* ===== TYPO MARCELLUS (h2-h6) ===== */
h2.has-cormorant-font-family,
h3.has-cormorant-font-family,
h4.has-cormorant-font-family,
h5.has-cormorant-font-family,
h6.has-cormorant-font-family,
h2.has-marcellus-font-family,
h3.has-marcellus-font-family,
h4.has-marcellus-font-family {
    font-weight: 400 !important;
    letter-spacing: 0.005em;
}

h2.has-cormorant-font-family em,
h3.has-cormorant-font-family em,
h2.has-marcellus-font-family em,
h3.has-marcellus-font-family em {
    font-family: 'Cormorant Garamond', 'Marcellus', Georgia, serif;
    font-style: italic;
    font-weight: 500;
}

/* ===== HERO ===== */
.ok-section--hero {
	position: relative;
	overflow: hidden;
}

.ok-section--hero::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 52%;
	height: 100%;
	background: var(--ok-sage-light, #EFE5F2);
	clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
	z-index: 0;
	pointer-events: none;
}

.ok-hero__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.ok-hero__circle {
	position: absolute;
	border-radius: 50%;
}

.ok-hero__circle--1 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(242, 245, 240, 0.8), transparent 70%);
	top: -100px;
	right: -150px;
}

.ok-hero__circle--2 {
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(221, 229, 216, 0.5), transparent 70%);
	bottom: 0;
	left: -80px;
}

.ok-hero__circle--3 {
	width: 150px;
	height: 150px;
	background: radial-gradient(circle, rgba(160, 125, 88, 0.10), transparent 70%);
	top: 40%;
	right: 30%;
}

.ok-hero__inner {
	position: relative;
	z-index: 1;
	align-items: center;
}

.ok-hero__eyebrow {
	display: flex;
	align-items: center;
	gap: 16px;
	font-family: 'Jost', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ok-sage-600);
	margin-bottom: 24px;
}

.ok-hero__eyebrow-line {
	display: block;
	width: 40px;
	height: 1px;
	background: var(--ok-sage-600);
	flex-shrink: 0;
}

.ok-hero__desc {
	max-width: 480px;
	margin-top: 24px;
	margin-bottom: 40px;
}

.ok-hero__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}

/* Hero visual */
.ok-hero__visual {
	position: relative;
}

.ok-hero__img-frame {
	position: relative;
	padding: 20px 20px 20px 0;
}

.ok-hero__img {
	width: 100%;
	aspect-ratio: 4 / 5;
	background: linear-gradient(135deg, var(--ok-linen-warm), var(--ok-linen-deep));
	border-radius: 200px 200px 20px 20px;
}

.ok-hero__img-border {
	position: absolute;
	top: 0;
	right: 0;
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	border-radius: 24px;
	border: 2px solid var(--ok-gold-400);
	opacity: 0.4;
	pointer-events: none;
}

.ok-hero__card-float {
	position: absolute;
	background: white;
	border-radius: 16px;
	padding: 14px 18px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: var(--ok-shadow-float);
}

.ok-hero__card-float--left {
	bottom: 20%;
	left: -30px;
}

.ok-hero__card-float--right {
	top: 20%;
	right: -20px;
}

.ok-hero__card-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Marcellus', 'Marcellus', serif;
	font-size: 18px;
	font-weight: 600;
	flex-shrink: 0;
}

.ok-hero__card-label {
	font-size: 10px;
	color: var(--ok-text-muted);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.ok-hero__card-value {
	font-size: 12px;
	color: var(--ok-text);
	font-weight: 600;
}

@media (max-width: 768px) {
	.ok-hero__card-float {
		display: none;
	}
	/* Note: .ok-hero__img aspect-ratio mobile est definie dans custom.css
	   (bloc P0.3 — HERO IMAGE FRAME) pour eviter les regles concurrentes.
	   Fix audit mobile 2026-07-14. */
}

/* ===== TRUST BAR ===== */
.ok-section--trust {
	border-bottom: 1px solid var(--ok-cream-border);
}

.ok-trust-grid {
	display: flex;
	align-items: center;
	justify-content: space-between; /* VH-05 : répartit les 4 items sur la largeur (était groupés au centre) */
	flex-wrap: wrap;
	gap: 24px;
}

.ok-trust-item {
	display: flex;
	align-items: center;
	gap: 16px;
}

.ok-trust-icon {
	width: 48px;
	height: 48px;
	background: var(--ok-sage-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--ok-sage-600);
}

.ok-trust-icon svg {
	width: 22px;
	height: 22px;
}

.ok-trust-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.ok-trust-text strong {
	font-family: 'Jost', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var(--ok-text);
}

.ok-trust-text span {
	font-size: 12px;
	color: var(--ok-text-muted);
}

@media (max-width: 768px) {
	.ok-trust-item {
		flex-direction: column;
		text-align: center;
	}
}

/* ===== À PROPOS ===== */

/* Centrage vertical des colonnes */
.ok-section--about .wp-block-columns { align-items: center; }

.ok-about__visual { position: relative; }
.ok-about__img { width: 100%; aspect-ratio: 3/4; background: linear-gradient(135deg, var(--ok-linen-warm), var(--ok-linen-deep)); border-radius: 24px; }
.ok-about__decor { position: absolute; bottom: -24px; right: -24px; width: 80px; height: 80px; border: 2px solid var(--ok-gold-400); border-radius: 4px; opacity: 0.5; pointer-events: none; }

/* Séparateur aligné à gauche + espacement correct */
.ok-section--about .ok-gold-separator { margin: 20px 0 28px; }

.ok-about__signature { font-family: 'Marcellus', 'Marcellus', serif; font-size: 18px; font-style: italic; color: var(--ok-gold-dark, #7C5E3F); margin-top: 24px; margin-bottom: 28px; }
.ok-about__signature em { font-weight: 500; }

@media (max-width: 768px) {
  .ok-about__decor { display: none; }
  .ok-about__img { aspect-ratio: 4/3; }
}

/* ===== TÉMOIGNAGES ===== */

/* Colonnes = hauteur égale */
.ok-section--testimonials .wp-block-columns { align-items: stretch; }
.ok-section--testimonials .wp-block-column { display: flex; }

.ok-testi-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--ok-transition-card);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.ok-testi-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.18);
}
.ok-testi__quote {
  font-family: 'Marcellus', 'Marcellus', serif;
  font-size: 56px;
  line-height: 0.8;
  color: var(--ok-gold-400);
  margin-bottom: 16px;
  display: block;
}
.ok-testi__text {
  color: #FFFFFF;
  font-style: italic;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}
.ok-testi__text p {
  margin: 0;
  color: #FFFFFF;
}
.ok-testi__author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 28px;
}
.ok-testi__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ok-gold-400);
  color: var(--ok-earth-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Marcellus', 'Marcellus', serif;
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
}
.ok-testi__name { color: #FFFFFF; font-weight: 600; font-size: 14px; }
.ok-testi__role { color: rgba(255, 255, 255, 0.7); font-size: 12px; margin-top: 2px; }
@media (max-width: 768px) { .ok-testi-card { padding: 28px; } .ok-testi__quote { font-size: 44px; } }

/* ===== CTA AGENDA ===== */
.ok-cta-card {
  background: linear-gradient(135deg, var(--ok-sage-600) 0%, var(--ok-sage-800) 80%);
  border-radius: 28px;
  padding: 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.ok-cta__halo {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.ok-cta__halo--1 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(160, 125, 88, 0.15), transparent 70%);
  top: -120px; right: -100px;
}
.ok-cta__halo--2 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
  bottom: -60px; left: -60px;
}
.ok-cta__content { position: relative; z-index: 1; }
.ok-cta__title {
  font-family: 'Marcellus', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: white;
  margin-bottom: 16px;
  line-height: 1.15;
}
.ok-cta__title em { font-weight: 500; font-style: normal; color: var(--ok-gold-400); }
.ok-cta__desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) { .ok-cta-card { padding: 48px 28px; } }

/* ===== NEWSLETTER ===== */
.ok-section--newsletter { border-top: 1px solid var(--ok-cream-border); }
.ok-newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.ok-newsletter__text { flex: 1; min-width: 260px; }
.ok-newsletter__title {
  font-family: 'Marcellus', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  color: var(--ok-text);
  margin-bottom: 8px;
  line-height: 1.2;
}
.ok-newsletter__title em { font-weight: 500; font-style: normal; color: var(--ok-sage-600); }
.ok-newsletter__desc { color: var(--ok-text-secondary); font-size: 15px; line-height: 1.6; }
.ok-newsletter__form { flex: 1; min-width: 280px; }
.ok-newsletter__field { display: flex; gap: 10px; flex-wrap: wrap; }
.ok-newsletter__input {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  border: 1.5px solid var(--ok-cream-400);
  border-radius: var(--ok-radius-btn);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--ok-text);
  background: white;
  transition: border-color 0.2s;
  outline: none;
}
.ok-newsletter__input:focus { border-color: var(--ok-sage-600); box-shadow: 0 0 0 3px rgba(125, 87, 144, 0.18); }
.ok-newsletter__input::placeholder { color: var(--ok-text-muted); }
.ok-newsletter__legal {
  font-size: 12px;
  color: var(--ok-text-muted);
  margin-top: 10px;
  line-height: 1.5;
}
.ok-newsletter__legal a { color: var(--ok-sage-600); text-decoration: underline; }
.ok-newsletter__legal a:hover { color: var(--ok-sage-700); }
@media (max-width: 768px) {
  .ok-newsletter__inner { flex-direction: column; align-items: flex-start; }
  .ok-newsletter__field { flex-direction: column; }
  .ok-newsletter__input { min-width: auto; width: 100%; }
}

/* ===== CARTES MASSAGES ===== */

/* Colonnes = hauteur égale */
.ok-section--massages .wp-block-columns { align-items: stretch; }
.ok-section--massages .wp-block-column { display: flex; }

/* Carte = flex colonne pleine hauteur */
.ok-card--massage { display: flex; flex-direction: column; height: 100%; align-items: stretch; }

/* Tous les enfants directs prennent la largeur complète (fix Gutenberg flex) */
.ok-card--massage > * { width: 100%; }

/* Image placeholder */
.ok-card__img-placeholder { flex-shrink: 0; }

/* Body = flex colonne, prend tout l'espace restant */
.ok-card__body { padding: 24px 28px; flex: 1; display: flex; flex-direction: column; align-items: stretch; }
.ok-card__body > * { width: 100%; }

/* Description extensible pour aligner le footer */
.ok-card__body > .wp-block-paragraph { flex: 1; }

/* Footer toujours en bas */
.ok-card__footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--ok-cream-border); }
.ok-card__price { font-family: 'Marcellus', 'Marcellus', serif; font-size: 22px; font-weight: 600; color: var(--ok-earth-600); line-height: 1; }
.ok-card__duration { font-size: 12px; color: var(--ok-text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.ok-card__link-wrap { margin-top: 0; }
.ok-card__link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--ok-sage-600); text-decoration: none; margin-top: 16px; }
.ok-card__link:hover { gap: 10px; color: var(--ok-sage-700); }
.ok-massages__cta { text-align: center; margin-top: 48px; }

/* ===== SEKHEM ===== */
.ok-section--sekhem { position: relative; overflow: hidden; }
.ok-sekhem__glows { position: absolute; inset: 0; pointer-events: none; }
.ok-sekhem__glow { position: absolute; border-radius: 50%; }
.ok-sekhem__glow--1 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(160,125,88,0.12), transparent 70%); top: -100px; right: -100px; }
.ok-sekhem__glow--2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(125,87,144,0.1), transparent 70%); bottom: -80px; left: 10%; }
.ok-sekhem__visual { position: relative; }
.ok-sekhem__img { width: 100%; aspect-ratio: 4/5; background: linear-gradient(135deg, var(--ok-earth-800, #3F2D40), var(--ok-earth-dark, #2C1F2D)); border-radius: 24px; }
.ok-sekhem__img-accent { position: absolute; bottom: -20px; right: -20px; width: 80px; height: 80px; border: 2px solid var(--ok-gold-400); border-radius: 4px; opacity: 0.5; }
.ok-sekhem__citation { border-left: 3px solid var(--ok-gold-400); padding-left: 20px; margin: 24px 0; font-family: 'Jost', sans-serif; font-size: 14px; font-style: italic; color: rgba(255,255,255,0.8); line-height: 1.7; }
.ok-sekhem__citation p { margin: 0; }
.ok-sekhem__stats { display: flex; gap: 32px; margin: 32px 0; flex-wrap: wrap; }
.ok-sekhem__stat { display: flex; flex-direction: column; gap: 4px; }
.ok-sekhem__stat-val { font-family: 'Marcellus', 'Marcellus', serif; font-size: 32px; font-weight: 500; color: var(--ok-gold-400); line-height: 1; }
.ok-sekhem__stat-label { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.ok-gold-separator--light { background: var(--ok-gold-400); }
.ok-gold-separator--light::after { background: var(--ok-gold-400); }
@media (max-width: 768px) { .ok-sekhem__stats { gap: 20px; } .ok-sekhem__stat-val { font-size: 26px; } }

/* ===== CARTES STAGES ===== */

/* Colonnes = hauteur égale, le groupe interne prend toute la hauteur */
.ok-section--stages .wp-block-columns { align-items: stretch; }
.ok-section--stages .wp-block-column { display: flex; flex-direction: column; }
.ok-section--stages .wp-block-column > .wp-block-group { flex: 1; display: flex; flex-direction: column; }

/* Chaque carte prend une part égale dans la colonne */
.ok-card--stage { display: flex; align-items: flex-start; gap: 20px; padding: 28px; flex: 1; }
.ok-stage__icon { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-family: 'Marcellus', 'Marcellus', serif; font-size: 26px; font-weight: 500; color: white; flex-shrink: 0; }
.ok-stage__body { flex: 1; display: flex; flex-direction: column; min-height: 100%; }
.ok-stage__title { font-family: 'Marcellus', 'Marcellus', serif; font-size: 20px; font-weight: 500; color: var(--ok-text); margin-bottom: 4px; }
.ok-stage__sub { font-size: 14px; color: var(--ok-sage-600); margin-bottom: 10px; line-height: 1.4; }
.ok-stage__desc { font-size: 14px; color: var(--ok-text-secondary); line-height: 1.65; margin-bottom: 16px; flex: 1; }
.ok-stage__pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.ok-stages__cta { text-align: center; margin-top: 48px; }
@media (max-width: 768px) {
  .ok-card--stage { flex-direction: column; flex: none; }
  .ok-section--stages .wp-block-column > .wp-block-group { flex-direction: column; }
}

/* ===== BOUTIQUE ===== */

/* Colonnes = hauteur égale */
.ok-section--boutique .wp-block-columns { align-items: stretch; }
.ok-section--boutique .wp-block-column { display: flex; }

/* Carte = flex colonne pleine hauteur, enfants stretch */
.ok-card--boutique { display: flex; flex-direction: column; height: 100%; align-items: stretch; }

/* Forcer les enfants Gutenberg flex à prendre toute la largeur */
.ok-card--boutique > * { width: 100%; }

.ok-boutique__img { height: 220px; border-radius: 16px 16px 0 0; flex-shrink: 0; }
.ok-card--boutique .wp-block-heading, .ok-card--boutique p { text-align: center; }
.ok-card--boutique .wp-block-heading { font-size: 20px; margin-top: 20px; margin-bottom: 8px; padding: 0 20px; }
.ok-card--boutique p { font-size: 14px; color: var(--ok-text-secondary); padding: 0 20px; margin-bottom: 20px; flex: 1; }

/* Bouton toujours en bas */
.ok-card--boutique .wp-block-buttons { justify-content: center; padding-bottom: 24px; margin-top: auto; }
/* Bouton outline gold — cibler le lien, pas le wrapper */
.ok-btn--outline-gold .wp-block-button__link,
.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent !important;
  border: 1.5px solid var(--ok-gold-200, #E4D2B8) !important;
  color: var(--ok-gold-700, #5A4128) !important;
  border-radius: var(--ok-radius-btn);
  padding: 10px 24px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: var(--ok-transition-btn);
  display: inline-block;
}
.ok-btn--outline-gold .wp-block-button__link:hover,
.ok-btn--outline-gold:hover { background: var(--ok-gold-light, #F5E8D5) !important; border-color: var(--ok-gold-400) !important; }

/* VH-01 : règle de padding supprimée (2026-06-29) — elle ciblait d'anciennes classes
   .ok-section--massages/--stages/--boutique/etc. qui ne sont PLUS émises par
   home-blocks.php (sections désormais en .ok-section--tone-*). Règle morte +
   source de padding concurrente. Le padding section est désormais unique :
   .ok-section dans custom.css. */

/* ===== CARTES SHADOW HOVER-ONLY ===== */
.ok-card--massage[style*="box-shadow"],
.ok-card--boutique[style*="box-shadow"] {
    box-shadow: none !important;
}

.ok-card--massage:hover,
.ok-card--boutique:hover {
    box-shadow: var(--ok-shadow-card) !important;
}

/* ===== EYEBROW TÉMOIGNAGES CENTRÉ ===== */
.ok-section--testimonials .ok-eyebrow {
    text-align: center;
    width: 100%;
}

/* ===== TABLETTE (768px – 1024px) ===== */
@media (max-width: 1024px) {

    /* Hero : réduire le gap */
    .ok-hero__inner { gap: 40px; }

    /* Floating cards hero : masquer */
    .ok-hero__card-float { display: none; }

    /* Hero background diagonal : réduire */
    .ok-section--hero::before { width: 48%; }

    /* Trust bar : grille 2×2 */
    .ok-trust-grid { flex-wrap: wrap; }
    .ok-trust-grid .wp-block-column { flex-basis: 48% !important; }

    /* Sekhem : réduire gap */
    .ok-section--sekhem .wp-block-columns { gap: 40px; }

    /* About : réduire gap */
    .ok-section--about .wp-block-columns { gap: 40px; }

    /* CTA card : réduire padding */
    .ok-cta-card { padding: 56px 40px; }

    /* Newsletter : commencer à empiler */
    .ok-newsletter__inner { gap: 32px; }

    /* Sections padding tablette */
    .ok-section--massages,
    .ok-section--sekhem,
    .ok-section--stages,
    .ok-section--boutique,
    .ok-section--about,
    .ok-section--testimonials {
        padding-top: 64px !important;
        padding-bottom: 64px !important;
    }
}

/* ===== MOBILE (< 768px) — compléments ===== */
@media (max-width: 768px) {

    /* Hero : empiler + centrer */
    .ok-hero__inner { flex-direction: column; }
    .ok-hero__inner .wp-block-column { flex-basis: 100% !important; }
    .ok-hero__eyebrow { justify-content: center; }
    .ok-hero__actions { justify-content: center; }
    .ok-hero__desc { margin-left: auto; margin-right: auto; text-align: center; }

    /* Hero background diagonal : masquer */
    .ok-section--hero::before { display: none; }

    /* Trust bar : 1 colonne */
    .ok-trust-grid { flex-direction: column; }
    .ok-trust-grid .wp-block-column { flex-basis: 100% !important; }

    /* Sekhem : empiler */
    .ok-section--sekhem .wp-block-columns { flex-direction: column; }
    .ok-section--sekhem .wp-block-column { flex-basis: 100% !important; }
    .ok-sekhem__img-accent { display: none; }

    /* About : empiler */
    .ok-section--about .wp-block-columns { flex-direction: column; }
    .ok-section--about .wp-block-column { flex-basis: 100% !important; }

    /* Témoignages : 1 colonne */
    .ok-section--testimonials .wp-block-columns { flex-direction: column; }
    .ok-section--testimonials .wp-block-column { flex-basis: 100% !important; }

    /* CTA card */
    .ok-cta-card { padding: 40px 24px; border-radius: 20px; }

    /* Boutons hero pleine largeur */
    .ok-hero__actions { flex-direction: column; width: 100%; }
    .ok-hero__actions .wp-block-button { width: 100%; }
    .ok-hero__actions .wp-block-button__link { display: block; width: 100%; text-align: center; }
    .ok-hero__actions .ok-btn--ghost { width: 100%; text-align: center; justify-content: center; }

    /* Boutique : 1 colonne */
    .ok-section--boutique .wp-block-columns { flex-direction: column; }
    .ok-section--boutique .wp-block-column { flex-basis: 100% !important; }

    /* Massages : 1 colonne */
    .ok-section--massages .wp-block-columns { flex-direction: column; }
    .ok-section--massages .wp-block-column { flex-basis: 100% !important; }

    /* Stages : 1 colonne */
    .ok-section--stages .wp-block-columns { flex-direction: column; }
    .ok-section--stages .wp-block-column { flex-basis: 100% !important; }

    /* Newsletter : empiler */
    .ok-newsletter__inner { flex-direction: column; align-items: stretch; }

    /* Séparateurs dorés centrés */
    .ok-gold-separator { margin-left: auto; margin-right: auto; }
}

/* ===== BADGES MASSAGES OVERLAY ===== */
.ok-card--massage .ok-card__img-placeholder {
    position: relative;
}

.ok-card--massage .ok-card__img-placeholder .ok-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

/* ===== GRILLE MASSAGES LISTE COMPLETE ===== */
.ok-massages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ok-massages-grid .ok-card--massage {
    background: white;
    border: 1px solid var(--ok-cream-border, #E5D8C4);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--ok-transition-card);
    display: flex;
    flex-direction: column;
}

.ok-massages-grid .ok-card--massage:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(43, 36, 32, 0.1);
}

.ok-massages-grid .ok-card__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ok-massages-grid .ok-card__footer {
    margin-top: auto;
}

/* ===== GRILLE STAGES LISTE ===== */
.ok-stages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .ok-massages-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ok-massages-grid { grid-template-columns: 1fr; }
    .ok-stages-grid { grid-template-columns: 1fr; }
}

/* ===== ENCART CE QUI EST INCLUS ===== */
.ok-included {
    max-width: 860px;
    margin: 0 auto 48px;
    padding: 28px 32px;
    background: var(--ok-linen-warm);
    border-radius: 16px;
}

@media (max-width: 768px) {
    .ok-included div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}

/* ===================================================
   STAGES — couleurs par data-stage
   Source unique des gradients : custom.css :root
   =================================================== */

.ok-card--stage {
    border-radius: var(--ok-radius-card);
    background: var(--ok-white);
    box-shadow: var(--ok-shadow-card);
}

.ok-card--stage-link {
    box-shadow: none;
    border: 1px solid var(--ok-cream-border);
    text-decoration: none;
    color: inherit;
}

.ok-card--stage[data-stage="feminin"]            .ok-stage__icon { background: var(--ok-grad-stage-feminin); }
.ok-card--stage[data-stage="transgenerationnel"] .ok-stage__icon { background: var(--ok-grad-stage-transgen); }
.ok-card--stage[data-stage="sekhmet"]            .ok-stage__icon { background: var(--ok-grad-stage-sekhmet); }
.ok-card--stage[data-stage="enfant"]             .ok-stage__icon { background: var(--ok-grad-stage-enfant); }

.ok-stages__empty {
    text-align: center;
    color: var(--ok-text-muted);
}

/* ===================================================
   BOUTIQUE — placeholder visuels catégories
   =================================================== */

.ok-boutique__img--placeholder {
    height: 220px;
    border-radius: 16px 16px 0 0;
}

.ok-boutique__img--pendules  { background: var(--ok-grad-cat-pendules); }
.ok-boutique__img--bracelets { background: var(--ok-grad-cat-bracelets); }
.ok-boutique__img--encens    { background: var(--ok-grad-cat-encens); }

/* ══════════════════════════════════════════════
   SPOTLIGHT SEKHEM — massage signature (accueil + page massages)
   Section sombre à accents dorés (pointes de doré demandées).
   ══════════════════════════════════════════════ */
.ok-home-sekhem {
	position: relative;
	overflow: hidden;
	background: var(--ok-section-dark, #4E3C57);
	padding: clamp(56px, 8vw, 96px) 24px;
}
.ok-home-sekhem__glows { position: absolute; inset: 0; pointer-events: none; }
.ok-home-sekhem__glow { position: absolute; border-radius: 50%; }
.ok-home-sekhem__glow--1 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(181,143,90,0.22), transparent 70%); top: -140px; right: -120px; }
.ok-home-sekhem__glow--2 { width: 360px; height: 360px; background: radial-gradient(circle, rgba(147,118,168,0.20), transparent 70%); bottom: -120px; left: -80px; }
.ok-home-sekhem__inner {
	position: relative;
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 0.85fr 1fr;
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
}
.ok-home-sekhem__media { position: relative; }
.ok-home-sekhem__media img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 20px;
	display: block;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.ok-home-sekhem__badge {
	position: absolute;
	top: 18px; left: 18px;
	background: var(--ok-gold-accent, #B58F5A);
	color: var(--ok-earth-dark, #2C1F2D);
	font-family: 'Jost', sans-serif;
	font-size: 12px; font-weight: 600;
	letter-spacing: 0.08em;
	padding: 7px 14px;
	border-radius: 999px;
}
.ok-home-sekhem__content { color: #fff; }
.ok-home-sekhem .ok-eyebrow--gold {
	color: var(--ok-gold-on-dark, #D4B589);
	font-family: 'Jost', sans-serif;
	font-size: 12px; font-weight: 700;
	letter-spacing: 0.16em; text-transform: uppercase;
	margin: 0 0 14px;
}
.ok-home-sekhem__title {
	font-family: 'Italiana', 'Marcellus', serif;
	font-size: clamp(34px, 5vw, 56px);
	font-weight: 400; line-height: 1.05;
	color: #fff; margin: 0 0 14px;
}
.ok-home-sekhem__title .ok-reg { font-size: 0.36em; vertical-align: super; color: var(--ok-gold-on-dark, #D4B589); }
.ok-home-sekhem__subtitle {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(17px, 2.4vw, 21px);
	color: var(--ok-linen-deep, #E8DCCB);
	font-style: italic; margin: 0 0 6px;
}
.ok-home-sekhem .ok-gold-separator--light { margin: 20px 0; }
.ok-home-sekhem__desc {
	font-family: 'Jost', sans-serif;
	font-size: 15px; line-height: 1.75;
	color: rgba(255, 255, 255, 0.82);
	margin: 0 0 26px; max-width: 46ch;
}
.ok-home-sekhem__stats {
	display: flex; flex-wrap: wrap; gap: 28px;
	margin: 0 0 30px;
}
.ok-home-sekhem__stats span {
	display: flex; flex-direction: column;
	font-family: 'Jost', sans-serif;
	font-size: 12px; letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.7);
}
.ok-home-sekhem__stats strong {
	font-family: 'Marcellus', serif;
	font-size: 26px; font-weight: 500;
	color: var(--ok-gold-on-dark, #D4B589);
	line-height: 1.1; margin-bottom: 3px;
}
.ok-home-sekhem__cta { align-self: flex-start; }

@media (max-width: 860px) {
	.ok-home-sekhem__inner { grid-template-columns: 1fr; gap: 32px; }
	.ok-home-sekhem__media img { aspect-ratio: 16 / 10; }
	.ok-home-sekhem__stats { gap: 20px; }
}

/* ══════════════════════════════════════════════
   CARTE SIGNATURE SEKHEM — mise en avant en tête de la grille massages
   (page massages : version claire intégrée, remplace le bloc sombre).
   ══════════════════════════════════════════════ */
.ok-massage-featured {
	display: grid;
	grid-template-columns: minmax(200px, 34%) 1fr;
	background: #fff;
	border: 1px solid var(--ok-cream-border, #E5D8C4);
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 36px;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 8px 30px rgba(44, 31, 45, 0.05);
	transition: box-shadow .3s ease, transform .3s ease;
}
.ok-massage-featured:hover { box-shadow: 0 14px 42px rgba(44, 31, 45, 0.11); transform: translateY(-2px); }
.ok-massage-featured__media { position: relative; min-height: 200px; }
.ok-massage-featured__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ok-massage-featured__ribbon {
	position: absolute; top: 12px; left: 12px;
	background: var(--ok-gold-accent, #B58F5A);
	color: var(--ok-earth-dark, #2C1F2D);
	font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.07em;
	padding: 6px 12px; border-radius: 999px;
}
.ok-massage-featured__body {
	padding: clamp(20px, 2.4vw, 30px) clamp(22px, 2.8vw, 36px);
	display: flex; flex-direction: column; justify-content: center;
}
.ok-massage-featured__title {
	font-family: 'Italiana', 'Marcellus', serif;
	font-size: clamp(23px, 2.5vw, 30px); font-weight: 400; line-height: 1.12;
	color: var(--ok-text-primary, #2A2230); margin: 0 0 5px;
}
.ok-massage-featured__title sup { font-size: 0.42em; color: var(--ok-gold-dark, #8A6A47); vertical-align: super; }
.ok-massage-featured__subtitle {
	font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 16px;
	color: var(--ok-sage-cta, #7E5E94); margin: 0 0 9px; line-height: 1.3;
}
.ok-massage-featured__desc {
	font-family: 'Jost', sans-serif; font-size: 14px; line-height: 1.6;
	color: var(--ok-text-secondary, #5A4D5C); margin: 0 0 14px;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ok-massage-featured__meta { display: flex; gap: 18px; align-items: baseline; margin-bottom: 14px; }
.ok-massage-featured__price { font-family: 'Marcellus', serif; font-size: 21px; color: var(--ok-gold-dark, #8A6A47); }
.ok-massage-featured__duration { font-family: 'Jost', sans-serif; font-size: 13px; color: var(--ok-text-muted, #8B7E8B); }
.ok-massage-featured__cta {
	font-family: 'Jost', sans-serif; font-size: 13.5px; font-weight: 600;
	color: var(--ok-sage-cta, #7E5E94); letter-spacing: 0.03em;
}
.ok-massage-featured:hover .ok-massage-featured__cta { color: var(--ok-sage-hover, #78598E); }
@media (max-width: 760px) {
	.ok-massage-featured { grid-template-columns: 1fr; }
	.ok-massage-featured__media { min-height: 0; aspect-ratio: 16 / 9; }
}
