/* ============================================================
   LE SOMMET DES SEXO — microsite styles
   Festival-grade sub-brand of Camille Bataillon. Loaded only on
   the Sommet template (see inc/sommet.php). Reuses the design-
   system tokens defined in style.css :root (--rose/--gold/--pine/
   --cream/--ink, --font-*, --radius-*). Concept: "une constellation
   de voix" — violet + gold prestige on deep grounds.
   Everything is scoped under .smt-* / .smt-site to avoid touching
   the main wellness theme.
   ============================================================ */

.smt-site {
	margin: 0;
	background: var(--cream-100);
	color: var(--ink-900);
	font-family: var(--font-sans);
	scroll-behavior: smooth;
	overflow-x: hidden; /* the constellation graphics bleed past their boxes by design */
}
.smt-site * { box-sizing: border-box; }
.smt-main { display: block; }

/* hide the main theme header/footer should they ever load on this page */
.smt-site .cb-header,
.smt-site .cb-footer { display: none; }

/* ---- shared layout ---- */
.smt-wrap { width: min(1120px, 92vw); margin: 0 auto; }
.smt-wrap--prose { max-width: 760px; }
.smt-section { padding: clamp(48px, 8vw, 104px) 0; position: relative; overflow: hidden; }
/* keep anchor jumps clear of the sticky header */
[id^="sommet-"] { scroll-margin-top: 84px; }

/* ---- grounds ---- */
.smt-ink { background: var(--ink-900); color: var(--cream-50); }
.smt-deep { background: var(--rose-700); color: var(--cream-50); }
.smt-vignette {
	position: absolute; inset: 0; pointer-events: none;
	background:
		radial-gradient(120% 90% at 78% 12%, rgba(106, 69, 164, .55) 0%, transparent 55%),
		radial-gradient(110% 90% at 10% 100%, rgba(0, 0, 0, .28) 0%, transparent 60%);
}

/* ---- type helpers ---- */
.smt-serif  { font-family: var(--font-display); }
.smt-italic { font-family: var(--font-display); font-style: italic; }
.smt-eyebrow {
	font-family: var(--font-sans); font-weight: 700; text-transform: uppercase;
	letter-spacing: .24em; font-size: 13px; color: var(--gold-600);
}
.smt-deep .smt-eyebrow, .smt-ink .smt-eyebrow { color: var(--gold-300); }
.smt-h2 { font-size: clamp(30px, 4.4vw, 52px); font-weight: 500; line-height: 1.02; margin: 10px 0 0; }
.smt-lead { font-size: clamp(17px, 1.8vw, 21px); line-height: 1.6; color: var(--ink-700); }
.smt-deep .smt-lead, .smt-ink .smt-lead { color: rgba(250, 244, 236, .85); }
.smt-divider { color: var(--gold-500); letter-spacing: .42em; margin-top: 24px; font-size: 18px; }
.smt-note { margin-top: 26px; font-size: 13.5px; color: var(--ink-400); text-align: center; }
.smt-section__head { text-align: center; margin-bottom: clamp(28px, 4vw, 48px); }

/* ---- pills & marks ---- */
.smt-pill {
	display: inline-flex; align-items: center; gap: .6em; border-radius: var(--radius-pill);
	font-weight: 700; line-height: 1; white-space: nowrap; font-size: 15px; padding: 12px 22px;
}
.smt-pill-gold { background: var(--gold-400); color: var(--ink-900); letter-spacing: .04em; }
.smt-mark { display: block; flex: 0 0 auto; }

/* ---- buttons ---- */
.smt-btn {
	display: inline-flex; align-items: center; justify-content: center;
	font-family: var(--font-sans); font-weight: 700; font-size: 16px; line-height: 1;
	padding: 16px 30px; border-radius: var(--radius-pill); text-decoration: none;
	border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
	transition: transform var(--dur, .36s) var(--ease, ease), box-shadow var(--dur, .36s) var(--ease, ease), background-color var(--dur, .36s) var(--ease, ease), color var(--dur, .36s) var(--ease, ease);
}
.smt-btn--sm { padding: 11px 20px; font-size: 14px; }
.smt-btn--lg { padding: 19px 40px; font-size: 18px; }
.smt-btn--gold { background: var(--gold-400); color: var(--ink-900); box-shadow: 0 12px 30px rgba(201, 166, 92, .32); }
.smt-btn--gold:hover { background: var(--gold-500); transform: translateY(-2px); box-shadow: 0 16px 38px rgba(201, 166, 92, .4); }
.smt-btn--ghost { background: transparent; color: var(--cream-50); border-color: rgba(250, 244, 236, .5); }
.smt-btn--ghost:hover { background: rgba(250, 244, 236, .12); border-color: var(--cream-50); }
.smt-btn--outline { background: transparent; color: var(--rose-600); border-color: var(--rose-400); }
.smt-btn--outline:hover { background: var(--rose-400); color: #fff; transform: translateY(-2px); }

/* ---- constellation graphic ---- */
.smt-constellation { position: absolute; pointer-events: none; overflow: visible; opacity: .9; }
.smt-constellation--hero { right: clamp(-90px, -4vw, -40px); top: -50px; width: clamp(340px, 42vw, 560px); height: auto; }
.smt-constellation--cta  { left: -60px; bottom: -70px; width: clamp(280px, 34vw, 460px); height: auto; opacity: .7; }

/* ---- meta strip (1re édition · ··· · en ligne) ---- */
.smt-meta {
	display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap;
	font-weight: 700; font-size: 14px; letter-spacing: .22em; text-transform: uppercase;
	color: var(--gold-300);
}
.smt-meta sup { font-size: .62em; vertical-align: .55em; }
.smt-meta__dots { display: inline-flex; gap: 5px; align-items: center; }
.smt-meta__dots i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; display: inline-block; }

/* ════════ SITE HEADER (microsite chrome) ════════ */
.smt-preview-bar {
	position: sticky; top: 0; z-index: 60; background: var(--ink-900); color: var(--gold-300);
	font-size: 13px; font-weight: 600; text-align: center; padding: 9px 16px; letter-spacing: .02em;
}
.smt-preview-bar a { color: var(--cream-50); text-decoration: underline; margin-left: 10px; }

.smt-site-header {
	position: sticky; top: 0; z-index: 50;
	background: rgba(74, 54, 115, .92);
	-webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
	color: var(--cream-50); border-bottom: 1px solid rgba(201, 166, 92, .28);
}
.smt-site-header__inner {
	width: min(1180px, 94vw); margin: 0 auto; display: flex; align-items: center;
	gap: 24px; min-height: 68px; padding: 10px 0;
}
.smt-brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.smt-brand__name { display: flex; flex-direction: column; line-height: .92; }
.smt-brand__line1 { font-family: var(--font-display); font-size: 19px; font-weight: 500; }
.smt-brand__line2 { font-family: var(--font-display); font-style: italic; font-size: 24px; font-weight: 600; color: var(--gold-300); }

.smt-site-nav { display: flex; gap: 26px; margin-left: auto; }
.smt-site-nav a {
	color: rgba(250, 244, 236, .9); text-decoration: none; font-weight: 600; font-size: 15px;
	padding: 6px 0; border-bottom: 2px solid transparent; transition: color .25s, border-color .25s;
}
.smt-site-nav a:hover { color: #fff; border-color: var(--gold-400); }

.smt-site-header__actions { display: flex; align-items: center; gap: 16px; }
.smt-back {
	color: rgba(250, 244, 236, .72); text-decoration: none; font-size: 13px; font-weight: 600;
	white-space: nowrap; transition: color .25s;
}
.smt-back:hover { color: var(--gold-300); }

/* ════════ HERO ════════ */
.smt-hero { padding: clamp(72px, 12vw, 132px) 0 clamp(56px, 9vw, 100px); position: relative; overflow: hidden; }
.smt-hero__inner { position: relative; width: min(1120px, 92vw); margin: 0 auto; }
.smt-wordmark { margin: 26px 0 0; line-height: .94; }
.smt-wordmark__1 { display: block; font-size: clamp(44px, 8vw, 92px); font-weight: 500; color: var(--cream-50); letter-spacing: .005em; }
.smt-wordmark__2 { display: block; font-size: clamp(64px, 13vw, 150px); font-weight: 600; color: var(--gold-300); line-height: .96; letter-spacing: -.01em; margin-top: 2px; }
.smt-hero__tagline { font-size: clamp(19px, 2.4vw, 30px); color: var(--rose-200); margin: 26px 0 0; max-width: 620px; line-height: 1.3; }

.smt-hero__meta { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; margin-top: 38px; }
.smt-dateblock { display: inline-flex; align-items: baseline; gap: 10px; line-height: 1; }
.smt-dateblock__d { font-family: var(--font-display); font-weight: 600; font-size: clamp(56px, 9vw, 96px); color: var(--cream-50); line-height: .9; }
.smt-dateblock__sep { font-family: var(--font-display); font-weight: 400; font-size: clamp(34px, 5vw, 60px); color: var(--gold-300); line-height: .9; }
.smt-dateblock__yr { font-weight: 800; font-size: clamp(15px, 1.6vw, 21px); letter-spacing: .16em; text-transform: uppercase; color: var(--cream-50); margin-left: 6px; line-height: 1.05; }

.smt-hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 40px; }

/* ════════ INTRO ════════ */
.smt-intro { text-align: center; }
.smt-intro .smt-divider { display: inline-block; }

/* ════════ POURQUOI ════════ */
.smt-why { background: var(--cream-200); }
.smt-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.smt-card {
	background: #fff; border: 1px solid var(--cream-300); border-radius: var(--radius-lg);
	padding: 32px 28px; box-shadow: var(--shadow-md); position: relative;
	transition: transform var(--dur, .36s) var(--ease, ease), box-shadow var(--dur, .36s) var(--ease, ease);
}
.smt-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.smt-card__num { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--gold-500); }
.smt-card__sticker {
	position: absolute; top: -14px; right: -10px; z-index: 1;
	background: var(--gold-400); color: var(--ink-900); border: 2px solid var(--cream-50);
	font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
	white-space: nowrap; padding: 8px 14px; border-radius: 999px; transform: rotate(-6deg);
	box-shadow: 0 10px 24px rgba(74, 54, 115, .28);
}
.smt-card h3 { font-size: 25px; font-weight: 600; margin: 8px 0 12px; line-height: 1.08; color: var(--ink-900); }
.smt-card p { font-size: 15.5px; line-height: 1.6; color: var(--ink-700); margin: 0; }

/* ════════ PROGRAMME ════════ */
.smt-prog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); }
.smt-day__head { display: flex; align-items: baseline; gap: 12px; padding-bottom: 14px; border-bottom: 1.5px solid var(--gold-500); }
.smt-day__num { font-size: 52px; font-weight: 600; line-height: .9; color: var(--rose-500); }
.smt-day__name { font-size: 30px; font-weight: 500; line-height: 1; color: var(--ink-900); }
.smt-day__mo { font-weight: 800; font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-600); margin-left: auto; }

.smt-sched { display: flex; flex-direction: column; }
.smt-sess { display: grid; grid-template-columns: 96px 1fr; column-gap: 16px; padding: 16px 0; }
.smt-sess + .smt-sess { border-top: 1px solid var(--cream-300); }
.smt-sess__time { font-weight: 800; font-size: 12.5px; letter-spacing: .04em; color: var(--rose-500); line-height: 1.45; padding-top: 3px; }
.smt-sess__who { font-family: var(--font-display); font-weight: 600; font-size: 21px; line-height: 1.05; color: var(--ink-900); }
.smt-sess__what { font-size: 14px; line-height: 1.45; color: var(--ink-700); margin-top: 5px; }
.smt-sess.is-open .smt-sess__who { font-style: italic; font-weight: 500; color: var(--rose-600); }
.smt-sess__tags { display: flex; gap: 6px; margin-top: 9px; }
.smt-tag {
	display: inline-flex; align-items: center; border-radius: var(--radius-pill);
	font-weight: 700; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
	line-height: 1; padding: 6px 12px; color: var(--ink-700); border: 1.2px solid var(--gold-500);
}
.smt-tag.is-atelier { background: var(--gold-400); border-color: var(--gold-400); color: var(--ink-900); }

/* ════════ INTERVENANT·ES ════════ */
.smt-speaker-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 20px; }
.smt-speaker { margin: 0; text-align: center; }
.smt-portrait {
	width: clamp(110px, 14vw, 156px); aspect-ratio: 1; margin: 0 auto 16px; border-radius: 50%;
	overflow: hidden; border: 6px solid var(--cream-50); box-shadow: 0 18px 48px rgba(74, 54, 115, .32);
}
.smt-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.smt-slot {
	display: flex; align-items: center; justify-content: center;
	background: repeating-linear-gradient(135deg, var(--cream-200) 0 14px, var(--cream-300) 14px 28px);
}
.smt-slot span { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-400); }
.smt-speaker__name { display: block; font-size: 21px; font-weight: 600; color: var(--cream-50); line-height: 1.1; }
.smt-speaker__topic { display: block; font-size: 13.5px; color: var(--gold-300); margin-top: 4px; }

/* ════════ PARTENAIRES ════════ */
.smt-partners { text-align: center; }
.smt-partners .smt-btn { margin-top: 24px; }
.smt-partner-logos {
	display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
	gap: 18px; margin-top: 32px;
}
.smt-partner-logo {
	display: flex; align-items: center; justify-content: center;
	width: 148px; height: 96px; padding: 14px; border-radius: 14px;
	background: var(--cream-50); border: 1px solid var(--cream-300);
	box-shadow: 0 8px 24px rgba(74, 54, 115, .08);
}
.smt-partner-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* ════════ INSCRIPTION CTA ════════ */
.smt-register { text-align: center; }
.smt-register__inner { position: relative; }
.smt-register .smt-meta { justify-content: center; }
.smt-register__title { font-size: clamp(36px, 6vw, 68px); font-weight: 500; color: var(--cream-50); margin: 18px 0 0; line-height: 1; }
.smt-register__text { color: rgba(250, 244, 236, .85); font-size: clamp(16px, 1.8vw, 19px); margin: 18px auto 0; max-width: 540px; }
.smt-register .smt-btn { margin-top: 34px; }
.smt-hash { font-weight: 800; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-300); margin-top: 28px; }

/* ════════ SITE FOOTER ════════ */
.smt-site-footer { position: relative; overflow: hidden; padding: clamp(40px, 6vw, 64px) 0 0; }
.smt-site-footer__inner {
	position: relative; width: min(1120px, 92vw); margin: 0 auto;
	display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
	padding-bottom: 32px;
}
.smt-site-footer__brand { display: flex; align-items: center; gap: 16px; }
.smt-site-footer__title { line-height: .95; }
.smt-site-footer__title .smt-serif { font-size: 22px; font-weight: 500; }
.smt-site-footer__title .smt-italic { font-size: 26px; color: var(--gold-300); margin-left: 6px; }
.smt-site-footer__host { font-size: 13.5px; color: rgba(250, 244, 236, .72); margin: 6px 0 0; }
.smt-site-footer__links { display: flex; gap: 22px; flex-wrap: wrap; }
.smt-site-footer__links a { color: rgba(250, 244, 236, .85); text-decoration: none; font-size: 14px; font-weight: 600; transition: color .25s; }
.smt-site-footer__links a:hover { color: var(--gold-300); }
.smt-site-footer__bottom {
	position: relative; border-top: 1px solid rgba(250, 244, 236, .14); margin-top: 6px;
	padding: 20px 0; width: min(1120px, 92vw); margin-left: auto; margin-right: auto;
	display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
	font-size: 13px; color: rgba(250, 244, 236, .6);
}
.smt-site-footer__bottom .smt-hash { margin-top: 0; }

/* ════════ RESPONSIVE ════════ */
@media (max-width: 880px) {
	.smt-cards { grid-template-columns: 1fr; }
	.smt-prog-grid { grid-template-columns: 1fr; }
	.smt-speaker-grid { grid-template-columns: repeat(3, 1fr); }
	.smt-site-nav { display: none; }
	.smt-back { display: none; }
}
@media (max-width: 560px) {
	.smt-speaker-grid { grid-template-columns: repeat(2, 1fr); }
	.smt-hero__cta .smt-btn { flex: 1 1 auto; }
	.smt-site-header__inner { min-height: 60px; }
}

/* Respect reduced-motion: the brand is "slow & gentle", never jarring. */
@media (prefers-reduced-motion: reduce) {
	.smt-site { scroll-behavior: auto; }
	.smt-btn, .smt-card { transition: none; }
}
