/* ==============================
   Studio Story – expérience en pratique
============================== */

.section--studio-story{
  padding: 64px 0;
}

.studioStory{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  align-items: center;
  margin-top: 32px;
}

.studioStory img{
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;      /* chaque PNG contient 2 cases */
  object-fit: contain;
  border-radius: 18px;
}

/* Phrase finale */
.container .studioStory__note {
  margin: 40px auto 0;
  max-width: 880px;

  text-align: center;
  font-size: 1.35rem;       /* clairement lisible, mais pas un H */
  line-height: 1.45;

  font-weight: 500;
  font-style: normal;

  opacity: 0.9;
  letter-spacing: -0.2px;
}

/* Mobile : 2 lignes */
@media (max-width: 900px){
  .studioStory{
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* ==============================
   Studio Intro – storytelling images
============================== */

.studioIntro__pivot{
  margin-top: 28px;
}

.studioIntro__pivot-text{
  margin: 0 0 24px;
  font-size: 1.5rem;
  opacity: 0.85;
}

/* Images storytelling */
.studioIntro__stories{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  align-items: center;
}

.studioIntro__stories img{
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;          /* 792x396 */
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255,255,255,0.6);
}

/* Mobile : 2 lignes */
@media (max-width: 900px){
  .studioIntro__stories{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .studioIntro__stories img{
    max-width: 100%;
  }
}
/* -----------------------------
   Design tokens (JELAM)
------------------------------ */
:root{
  --text: #2c3e50;
  --bg: #f4f4f4;
  --white: #ffffff;

  --button: #864ce5;
  --highlight: #00a8a8;
  --pictogram: #f5b907;

  --line: rgba(44, 62, 80, 0.18);
  --line-strong: rgba(44, 62, 80, 0.28);

  --shadow: 0 10px 30px rgba(44, 62, 80, 0.10);
  --shadow-soft: 0 6px 16px rgba(44, 62, 80, 0.10);

  --radius: 14px;
  --radius-sm: 10px;

  --max: 1100px;
  --title: #2c3e50;
}

/* -----------------------------
   Base
------------------------------ */
*{ box-sizing:border-box; }
html, body { height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
}

a{
  color: inherit;
  text-decoration: none;
  opacity: .9;
}
a:hover{ opacity: 1; }

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.page{
  min-height: 100vh;
}

/* -----------------------------
   Nav
------------------------------ */
.nav{
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 244, 244, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 16px 0;
  gap: 16px;
}
.logo{
  font-weight: 800;
  letter-spacing: .6px;
  padding: 10px 12px;
  border: 2px dashed var(--line-strong);
  border-radius: 12px;
  background: rgba(255,255,255,0.6);
}
.nav__links{
  display:flex;
  gap: 18px;
  align-items:center;
  font-weight: 600;
}
.nav__links a{
  padding: 10px 10px;
  border-radius: 10px;
}
.nav__links a:hover{
  background: rgba(255,255,255,0.65);
  outline: 1px dashed var(--line);
}
.nav__cta{ white-space: nowrap; }

@media (max-width: 860px){
  .nav__links{ display:none; }
}

/* -----------------------------
   Buttons
------------------------------ */
.btn{
  border: none;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: .2px;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, color .12s ease;
}

.btn--primary{
  background: var(--button);
  color: white;
  box-shadow: var(--shadow-soft);
  border: 2px solid rgba(0,0,0,0.08);
}
.btn--primary:hover{
  background: var(--pictogram) !important;
  color: var(--text) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn--secondary{
  background: rgba(255,255,255,0.7);
  color: var(--text);
  border: 2px dashed var(--line-strong);
}
.btn--secondary:hover{
  color: var(--highlight) !important;
  border-color: var(--highlight) !important;
  transform: translateY(-1px);
  background: rgba(255,255,255,0.95);
}

/* -----------------------------
   Badges
------------------------------ */
.badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
}
.badge--highlight{
  border-color: rgba(0,168,168,0.35);
  background: rgba(0,168,168,0.10);
}
.badge--pictogram{
  border-color: var(--pictogram);
  background: rgba(0,168,168,0.10);
}
.badge--button{
  border-color: var(--button);
  background: rgba(0,168,168,0.10);
}
.badge--soft{
  border-style: dashed;
}

/* -----------------------------
   Hero
------------------------------ */
.hero{
  position: relative;
  padding: 70px 0 30px;
}
.hero__inner{
  position: relative;
}
.hero__bg{
  position:absolute;
  inset: -10px -10px -30px -10px;
  border-radius: 24px;
  background:
    radial-gradient(900px 240px at 50% 0%, rgba(134,76,229,0.12), transparent 60%),
    radial-gradient(700px 240px at 12% 20%, rgba(0,168,168,0.10), transparent 60%),
    radial-gradient(700px 240px at 88% 20%, rgba(245,185,7,0.10), transparent 60%),
    repeating-linear-gradient(
      90deg,
      rgba(44,62,80,0.06) 0px,
      rgba(44,62,80,0.06) 1px,
      transparent 1px,
      transparent 18px
    );
  outline: 2px dashed rgba(44,62,80,0.16);
  box-shadow: var(--shadow-soft);
}
.hero__content{
  position: relative;
  padding: 46px 26px;
  text-align: left;
}
.hero__title{
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.6px;
  line-height: 1.05;
}
.hero__lead{
  margin-top: 14px;
  max-width: 720px;
  font-size: 18px;
  opacity: .9;
}
.hero__actions{
  margin-top: 22px;
  display:flex;
  justify-content:flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__chips{
  margin-top: 18px;
  display:flex;
  justify-content:flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

/* -----------------------------
   Hero – centered variant (explicite)
------------------------------ */
.hero__inner--centered{
  display: flex;
  justify-content: center;
}

.hero__content--centered{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 920px;
}

.hero__content--centered .hero__lead{
  margin-left: auto;
  margin-right: auto;
}

.hero__actions--centered{
  justify-content: center;
}

.hero__chips--centered{
  justify-content: center;
}

.hero__grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  position: relative;
}

.hero__visual{
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image{
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
}

@media (max-width: 860px){
  .hero__grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero__visual{
    order: 2;
  }

  .hero__content{
    order: 1;
    padding-bottom: 20px;
  }
}

/* -----------------------------
   Sections & grids
------------------------------ */
.section{
  padding: 46px 0;
}
.section--muted{
  background: rgba(255,255,255,0.35);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head{
  text-align:center;
  margin-bottom: 18px;
}
.section__title{
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.4px;
}
.section__subtitle{
  margin-top: 8px;
  max-width: 780px;
  opacity: .9;
}

.grid{
  display:grid;
  gap: 16px;
}
.grid--3{
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 980px){
  .grid--3{ grid-template-columns: 1fr; }
}

/* -----------------------------
   Card base
------------------------------ */
.card{
  background: rgba(255,255,255,0.72);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  position: relative;

  /* "wireframe / prototype" feel */
  outline: 1px solid rgba(44,62,80,0.08);
  overflow: hidden;
}
.card::before{
  content:"";
  position:absolute;
  inset: 10px;
  border-radius: calc(var(--radius) - 8px);
  border: 1px dashed rgba(44,62,80,0.14);
  pointer-events:none;
}
.card::after{
  content:"";
  position:absolute;
  inset: 0;
  background:
    radial-gradient(500px 120px at 70% 0%, rgba(44,62,80,0.05), transparent 60%),
    repeating-linear-gradient(
      0deg,
      rgba(44,62,80,0.035) 0px,
      rgba(44,62,80,0.035) 1px,
      transparent 1px,
      transparent 16px
    );
  opacity: .45;
  pointer-events:none;
}

/* -----------------------------
   Offer cards
------------------------------ */
.offer{
  min-height: 132px;
}
.offer__top{
  display:flex;
  gap: 12px;
  align-items:center;
}
.offer__icon{
  width: 44px;
  height: 44px;
  display:grid;
  place-items:center;
  border-radius: 12px;
  border: 2px dashed var(--line);
  background: rgba(255,255,255,0.8);
}
.offer__duration{
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .7px;
  opacity: .9;
}
.offer__title{
  font-weight: 900;
  font-size: 18px;
  margin-top: 2px;
}
.offer__cible{
  font-size: 1rem;
  line-height: 1.35;
  font-style: italic;
  margin-top: 4px;
}
.offer .offer__subtitle{
  margin: 12px 0 0;
  opacity: .9;
}

/* Accent borders per offer */
.offer--button{ border: 2px dashed rgba(134,76,229,0.35); }
.offer--highlight{ border: 2px dashed rgba(0,168,168,0.35); }
.offer--pictogram{ border: 2px dashed rgba(245,185,7,0.55); }

.offer--button .offer__icon{ color: var(--button); }
.offer--highlight .offer__icon{ color: var(--highlight); }
.offer--pictogram .offer__icon{ color: var(--pictogram); }

/* -----------------------------
   Lean loop cards
------------------------------ */
.loopWrap{
  position: relative;
}
.loopArrows{
  position:absolute;
  inset: 0;
  pointer-events:none;
}
.loopArrow{
  position:absolute;
  top: 58px;
  width: 80px;
  height: 80px;
  border-radius: 999px;
  border: 2px dashed rgba(44,62,80,0.18);
  background: radial-gradient(60px 60px at 40% 40%, rgba(0,168,168,0.10), transparent 60%);
  filter: blur(0.0px);
}
.loopArrow--1{
  left: 30%;
  transform: translateX(-50%) rotate(15deg);
}
.loopArrow--2{
  left: 66%;
  transform: translateX(-50%) rotate(-15deg);
  background: radial-gradient(60px 60px at 40% 40%, rgba(134,76,229,0.10), transparent 60%);
}

.loop__header{
  display:flex;
  align-items:center;
  gap: 10px;
}
.loop__step{
  width: 34px;
  height: 34px;
  display:grid;
  place-items:center;
  border-radius: 999px;
  font-weight: 900;
  color: white;
  box-shadow: var(--shadow-soft);
}
.loop__title{
  margin: 0;
  font-size: 20px;
  font-weight: 900;
}
.loop__icon{
  margin-top: 14px;
  color: var(--pictogram);
  width: 56px;
  height: 56px;
  display:grid;
  place-items:center;
  border-radius: 16px;
  border: 2px dashed rgba(245,185,7,0.50);
  background: rgba(255,255,255,0.75);
}
.loop__kicker{
  margin-top: 12px;
  font-weight: 900;
}
.loop__body{
  margin: 10px 0 0;
  opacity: .95;
  line-height: 1.45;
}
.loopNote{
  margin: 14px 0 0;
  text-align:center;
  opacity: .9;
}

/* Loop accents */
.loop--button{ border: 2px dashed rgba(134,76,229,0.35); }
.loop--highlight{ border: 2px dashed rgba(0,168,168,0.35); }
.loop--pictogram{ border: 2px dashed rgba(245,185,7,0.55); }

.loop__step--button{ background: var(--button); }
.loop__step--highlight{ background: var(--highlight); }
.loop__step--pictogram{ background: var(--pictogram); }

/* -----------------------------
   CTA / Contact block
------------------------------ */
.cta{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: stretch;
  background: rgba(255,255,255,0.55);
  border: 2px dashed rgba(44,62,80,0.18);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.cta::before{
  content:"";
  position:absolute;
  inset:-40px;
  background:
    radial-gradient(420px 200px at 20% 20%, rgba(0,168,168,0.10), transparent 60%),
    radial-gradient(520px 240px at 80% 30%, rgba(134,76,229,0.12), transparent 60%);
  pointer-events:none;
}
.cta__left, .cta__form{
  position: relative;
}
.cta__title{
  margin:0;
  font-size: 26px;
  letter-spacing: -0.2px;
}
.cta__subtitle{
  margin: 8px 0 16px;
  opacity: .9;
}
.cta__big{
  padding: 14px 18px;
  border-radius: 14px;
}

.cta__form{
  background: rgba(255,255,255,0.75);
  border-radius: 14px;
  padding: 14px;
  border: 1px solid rgba(44,62,80,0.12);
}
.field{
  display:grid;
  gap: 8px;
  margin-bottom: 12px;
}
.field span{
  font-weight: 800;
  font-size: 13px;
  opacity: .9;
}
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 2px solid rgba(44,62,80,0.12);
  background: rgba(244,244,244,0.55);
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(0,168,168,0.55);
  box-shadow: 0 0 0 4px rgba(0,168,168,0.12);
}

@media (max-width: 980px){
  .cta{ grid-template-columns: 1fr; }
}

/* -----------------------------
   Footer
------------------------------ */
.footer{
  padding: 26px 0 42px;
  border-top: 1px solid var(--line);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap: 18px;
  align-items:flex-start;
}
.footer__brand{
  font-weight: 900;
  letter-spacing: .5px;
}
.footer__small{
  margin-top: 6px;
  opacity: .85;
}
.footer__links{
  display:flex;
  gap: 14px;
  font-weight: 800;
}
@media (max-width: 700px){
  .footer__inner{ flex-direction: column; }
}

/* =========================================
   SketchCard – base (nouvelle version)
========================================= */

.sketchCard{
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(44,62,80,.10);
  overflow: hidden;

  /* Tokens configurables depuis React */
  --sketch-padding: 48px;     /* confort texte (augmenté) */
  --sketch-inset: 8px;       /* bord carte → tracé (augmenté) */
  --sketch-stroke: var(--text);
  --sketch-strokeWidth: 1.6;
  --sketch-stroke-safe: 2px;  /* sécurité liée au trait */
  --sketch-opacity: 0.55;
}

/* Texture légère type papier (facultatif mais recommandée) */
.sketchCard::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(44,62,80,0.03) 0px,
      rgba(44,62,80,0.03) 1px,
      transparent 1px,
      transparent 18px
    );
  opacity: .55;
  pointer-events:none;
  z-index: 0;
}

/* SVG de cadre : toujours à 100% de la carte */
.sketchCard__frame{
  position:absolute;
  padding: var(--sketch-inset);;
  width:100%;
  height:100%;
  pointer-events:none;
  z-index: 1;
}

/* .sketchCard__frame path{
  vector-effect: non-scaling-stroke;
} */

/* Zone de contenu protégée (responsive) */
/* .sketchCard__content{
  position: relative;
  z-index: 2;
  padding: calc(
    var(--sketch-inset) +
    var(--sketch-stroke-safe) +
    var(--sketch-padding)
  );
} */
 .sketchCard__content{
  position: relative;
  z-index: 2;
  padding: var(--sketch-padding);
  /* vertical OK */
  padding-top: var(--sketch-padding);
  padding-bottom: var(--sketch-padding);
  /* horizontal ajusté */
  padding-right: var(--sketch-padding);
  padding-left: calc(var(--sketch-padding) + 10px);
}
/* Reset paragraph centering issues */
p{
  margin-left: 0;
  margin-right: 0;
}

/* Centrage volontaire uniquement */
.section__head--centered{
  text-align: center;
}

.section__head--centered .section__subtitle{
  margin-left: auto;
  margin-right: auto;
}

/* Conteneurs standards : jamais centrés par défaut */
.card,
.offer,
.loop__body,
.cta__left{
  text-align: left;
}

/* DEBUG – visualiser les centrages involontaires */
/*
*{
  outline: 1px solid rgba(255,0,0,0.05);
}
*/

/* ==============================
   Studio timeline
============================== */

.studioTimeline{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
  margin-top: 32px;
}

@media (max-width: 980px){
  .studioTimeline{
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ------------------------------
   Colonne gauche : timeline
------------------------------ */

.studioTimeline__left{
  position: relative;
  padding-left: 36px;
}

/* Ligne verticale */
.studioTimeline__left::before{
  content:"";
  position:absolute;
  top: 0;
  bottom: 0;
  left: 12px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--line-strong) 0px,
    var(--line-strong) 6px,
    transparent 6px,
    transparent 14px
  );
  opacity: .8;
}

/* Item */
.studioTimeline__item{
  position: relative;
  margin-bottom: 32px;
}

/* Marqueur (1 / 2 / 3) */
.studioTimeline__marker{
  position:absolute;
  left: -2px;
  top: 18px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  font-weight: 900;
  font-size: 13px;
  color: white;
  background: var(--text);
  box-shadow: var(--shadow-soft);
  z-index: 2;
}

/* Dernier item : pas de marge inutile */
.studioTimeline__item:last-child{
  margin-bottom: 0;
}

/* Note bas de timeline */
.studioTimeline__note{
  margin-top: 12px;
  opacity: .85;
  font-size: 14px;
}

/* ------------------------------
   Colonne droite : image
------------------------------ */

.studioTimeline__right{
  position: relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

.studioTimeline__image{
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 18px;
  box-shadow: var(--shadow);
  outline: 2px dashed var(--line);
  background: rgba(255,255,255,0.6);
}

/* Mobile : image au-dessus */
@media (max-width: 980px){
  .studioTimeline__right{
    order: -1;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&display=swap');

/* ==============================
   Titles – Fredoka (Studio)
============================== */

.hero__title,
.section__title,
.loop__title,
.offer__title,
.cta__title{
  font-family: "Fredoka", ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;          /* moins massif */
  letter-spacing: -0.2px;   /* plus respirant */
}

/* ==============================
   Hero – Studio version
============================== */

.hero{
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
}

.hero__inner{
  width: 100%;
}

.hero__content{
  padding: 80px 24px;
}

.hero__title{
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.95;
  max-width: 12ch;
  margin: 0 auto;
}

.hero__lead{
  font-size: 22px;
  max-width: 42ch;
  margin: 28px auto 0;
  opacity: 0.9;
}

.hero__actions{
  margin-top: 48px;
}

.hero__chips{
  margin-top: 32px;
}

/* ==============================
   Buttons – force JELAM chart
============================== */

.btn--primary{
  background: var(--button) !important;
  color: #fff !important;
  border: none;
}

.btn--secondary{
  background: transparent !important;
  color: var(--text) !important;
  border: 2px dashed var(--line-strong) !important;
}

.hero__bg{
  display: none;
}

.container{
  max-width: 1280px;
}

/* ==============================
   Typography scale – Studio (rem)
============================== */

/* Base texte */
body,
p,
.loop__body,
.offer__subtitle,
.section__subtitle,
.cta__subtitle,
.footer__small{
  font-size: 1rem;
  line-height: 1.5;
}

/* Sous-sections / kicker / meta */
.loop__kicker,
.offer__duration,
.field span,
.badge{
  font-size: 1.25rem;
  line-height: 1.35;
}

/* H3 – titres de cards */
.loop__title,
.offer__title,
.cta__title{
  font-size: 1.5rem;
  line-height: 1.25;
}

/* H2 – titres de section */

/* ==============================
   Hero typography – Studio (rem)
============================== */

.hero__title{
  font-size: 4.5rem;
  line-height: 1.15;     /* plus aéré mais toujours tendu */
  max-width: 22ch;
  margin: 0 auto;
  font-weight: 600;     /* Fredoka respire mieux ici */
  letter-spacing: -0.15px;
}

.hero__lead{
  font-size: 1.5rem;
  max-width: 42ch;
  margin: 2rem auto 0;
}


/* ==============================
   H2 – Section titles (override)
============================== */

.section__title{
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.4px;
  font-weight: 600; /* Fredoka */
  margin-bottom: 2rem;
}

.hero .section__title{
  font-size: clamp(2.6rem, 5vw, 3.6rem);
}

.loop__title,
.offer__title{
  font-size: 1.5rem;
}

.loop__kicker,
.offer__duration{
  font-size: 1.25rem;
}

p{
  font-size: 1rem;
}
/* ==============================
   Hero highlight – Studio
============================== */

.hero__title .hl{
  position: relative;
  display: inline-block;
  z-index: 1;
}

.hero__title .hl::after{
  content: "";
  position: absolute;
  left: -0.15em;
  right: -0.15em;
  bottom: 0.15em;              /* ne couvre pas toute la hauteur */
  height: 0.45em;
  background: var(--highlight);
  opacity: 0.22;
  z-index: -1;
  transform: rotate(-1.5deg);  /* inclinaison légère */
  border-radius: 4px;
}

/* ==============================
   Hero highlight – color variants
============================== */

.hero__title .hl--highlight::after{
  background: var(--highlight);
}

.hero__title .hl--button::after{
  background: var(--button);
}

.hero__title .hl--pictogram::after{
  background: var(--pictogram);
}
/* ==============================
   Titles color – force black
============================== */

.hero__title,
.section__title,
.loop__title,
.offer__title,
.cta__title{
  color: var(--title) !important;
}
/* ==============================
   Body font – Inter
============================== */

body,
p,
.hero__lead,
.section__subtitle,
.loop__body,
.offer__subtitle,
.cta__subtitle,
.field span,
input,
textarea,
.badge,
.footer__small{
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
}
/* ==============================
   Studio Intro – visual layout
============================== */

.studioIntro{
  position: relative;
  display: flex;
  justify-content: center;
  margin: 64px 0px;
  padding: 30px 0;
}

.studioIntro__content{
  position: relative;
  text-align: center;
  z-index: 2;
}

/* Agrandir nettement le texte de la studio intro */
.studioIntro__lines{
  font-size: 1.85rem;
  line-height: 1.35;
  letter-spacing: -0.15px;
}

.studioIntro__pivot{
  margin-top: 20px;
  font-size: 1.5rem;
  opacity: 0.85;
  color: var(--highlight);
}

.studioIntro__outcome{
  margin-top: 20px;
  font-size: 2.5rem;
  line-height: 1.35;
}

.studioIntro__visualWrap{
  display: none;
}

.studioIntro__image{
  width: 100%;
  max-width: 420px;
  height: auto;
}

/* Mobile */
@media (max-width: 900px){
  .studioIntro__content{
    max-width: 100%;
    text-align: center;
  }
}

/* ==============================
   Studio Intro – verb highlights
============================== */


/* ==============================
   Studio Intro – fond “surface de travail / prototype”
============================== */
.section--studio-intro{
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

/* Surface de travail / prototype */
.section--studio-intro::before{
  content:"";
  position:absolute;
  inset:-60px;
  background:
    /* micro-grille irrégulière */
    linear-gradient(
      rgba(44,62,80,0.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(44,62,80,0.035) 1px,
      transparent 1px
    ),
    /* zones fantômes (tables / murs) */
    radial-gradient(
      600px 280px at 20% 30%,
      rgba(44,62,80,0.045),
      transparent 60%
    ),
    radial-gradient(
      700px 320px at 80% 70%,
      rgba(44,62,80,0.04),
      transparent 65%
    );
  background-size:
    38px 38px,
    42px 42px,
    auto,
    auto;
  pointer-events:none;
}
/* Highlight (studio intro) – single robust system */
.hl-soft{
  position: relative;
  display: inline-block;
  z-index: 1;
}

.hl-soft::after{
  content:"";
  position:absolute;
  left:-0.18em;
  right:-0.18em;
  bottom:0.15em;
  height:0.42em;
  opacity: 0.22;
  z-index:-1;
  transform: rotate(-1.5deg);
  border-radius: 4px;
  background: currentColor;
}

/* Garantir la lisibilité */
.section--studio-intro > .container{
  position: relative;
  z-index: 2;
}
/* ==============================
   Studio Intro – force text color
============================== */

.section--studio-intro,
.section--studio-intro p,
.section--studio-intro strong{
  color: var(--text) !important;
}

/* ==============================
   Highlight variants – studio intro
============================== */


/* Studio Intro – verb colors */
.hl-create{
  color: var(--button);
}

.hl-interact{
  color: var(--highlight);
}

.hl-learn{
  color: var(--pictogram);
}
/* ==============================
   Section subtitle – emphasis
============================== */

.section__subtitle_h3{
  font-family: "Fredoka", ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  color: var(--button);
  font-size: 2rem;
  line-height: 1.45;
}

.section__subtitle{
  font-size: 1.5rem;
  line-height: 1.45;
}

.section__subtitle--emphasis{
  font-size: 1.4rem;
  line-height: 1.5;
  opacity: 0.95;
}
/* ==============================
   Offers – clean architecture
============================== */

/* Grille des offres cœur (2 cartes) */
.grid--offers-core{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 980px){
  .grid--offers-core{
    grid-template-columns: 1fr;
  }
}


/* ==============================
   Offre ETI – transition visuelle
============================== */

/* H3 de transition */
.offers__h3{
  font-family: "Fredoka", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  margin: 64px auto 20px;
  position: relative;
  width: fit-content;
  color: var(--title);
}

/* Surlignage léger façon studio */
.offers__h3.offers__h3--highlight::after {
  content: "";
  position: absolute;
  left: -0.25em;
  right: -0.25em;
  bottom: 0.15em;
  height: 0.45em;
  background: var(--button);
  opacity: 0.22;
  z-index: -1;
  transform: rotate(-1.2deg);
  border-radius: 4px;
}

/* Texte de contexte ETI */
.offers__context{
  margin: 0 auto 32px;
  max-width: 760px;
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.55;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  opacity: 0.95;
  padding: 0 12px;
}

/* Carte ETI pleine largeur */
.offers__full{
  margin-top: 24px;
}

.offers__full .offer{
  width: 100%;
}

/* Outils inclus */
.offers__tools{
  margin-top: 28px;
  text-align: center;
  font-size: 1rem;
  opacity: 0.9;
}
/* ==============================
   Offre ETI – layout mono-colonne
============================== */

/* Forcer une structure verticale */
.offer--eti-centered .offer__top{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

/* Reset des contraintes héritées */
.offer--eti-centered .offer__meta{
  width: auto;
}

/* Icône centrée */
.offer--eti-centered .offer__icon{
  margin: 0;
}

/* Texte principal centré et lisible */
.offer--eti-centered .offer__title{
  margin-top: 4px;
}

/* Subtitle bien centré, largeur maîtrisée */
.offer--eti-centered .offer__subtitle{
  margin: 22px auto 0;
  max-width: 720px;
  text-align: center;
}

.offers__context strong{
  color: var(--button) !important;
}

/* ==============================
   Studio timeline – alternance image / carte (HEIGHT SYNC)
============================== */

.studioTimeline{
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* La ligne définit la hauteur de référence */
.studioTimeline__item{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch; /* clé : même hauteur carte / image */
  gap: 32px;
}

/* Alternance gauche / droite */
.studioTimeline__item--left{
  grid-template-areas: "card media";
}

.studioTimeline__item--right{
  grid-template-areas: "media card";
}

.studioTimeline__card{
  grid-area: card;
  display: flex;
}

.studioTimeline__media{
  grid-area: media;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

/* Image = hauteur de la ligne */
.studioTimeline__media img{
  /* height: 100%; */
  width: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  max-width: 300px;      /* image un peu plus présente */
  margin: auto;
  opacity: 0.95;
  border-radius: 18px;  /* coins arrondis, cohérents avec les cards */
}

/* Mobile : comportement naturel */
@media (max-width: 900px){
  .studioTimeline__item{
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "card";
    gap: 20px;
  }

  .studioTimeline__media img{
    height: auto;
    width: 100%;
    max-width: 240px;
  }
}
/* ==============================
   Studio timeline – accent étape 1
============================== */

/* Premier cadre en jaune */
.studioTimeline__item:first-child .loop{
  border: 2px dashed rgba(0,168,168,0.35);
}

/* Icône jaune */
.studioTimeline__item:first-child .loop__icon{
  color: var(--pictogram);
  border-color: rgba(245,185,7,0.55);
}

/* ==============================
   Studio timeline – étape 1 jaune (sketch)
============================== */

.studioTimeline__item:first-child .sketchCard{
  --sketch-stroke: var(--pictogram);
  --sketch-opacity: 0.7;
}

/* Harmoniser les traits internes */
.studioTimeline__item:first-child .sketchCard::after{
  opacity: 0.45;
}
/* ==============================
   Hero title – mobile fix
============================== */
@media (max-width: 600px){
  .hero__title{
    font-size: 2.5rem;
    line-height: 1.15;
  }
}
