/* =========================================================
   STUDIO YUZU — Design System
   Charte : Cloud Dancer #F0EEE9 · Custard Yellow #FAE38E
            Blueberry Pie #D2E8FF · Cherry Pop #861519
   Typo  : Titres = Gliker · Texte = Poppins
   ========================================================= */

/* ---------- Police des titres : GLIKER ----------
   Gliker n'est pas une Google Font : dépose les fichiers dans /assets/fonts/
   (formats .woff2 recommandés). Tant qu'ils sont absents, Fredoka prend le relais. */
@font-face {
  font-family: "Gliker";
  src: url("/assets/fonts/Gliker-Regular.woff2") format("woff2"),
       url("/assets/fonts/Gliker-Regular.woff") format("woff");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Gliker";
  src: url("/assets/fonts/Gliker-SemiBold.woff2") format("woff2"),
       url("/assets/fonts/Gliker-SemiBold.woff") format("woff");
  font-weight: 500 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Gliker";
  src: url("/assets/fonts/Gliker-Bold.woff2") format("woff2"),
       url("/assets/fonts/Gliker-Bold.woff") format("woff");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Gliker";
  src: url("/assets/fonts/Gliker-Black.woff2") format("woff2"),
       url("/assets/fonts/Gliker-Black.woff") format("woff");
  font-weight: 800 900; font-style: normal; font-display: swap;
}

:root {
  --cloud: #F0EEE9;      /* fond crème */
  --custard: #FAE38E;    /* jaune accent */
  --blueberry: #D2E8FF;  /* bleu doux accent */
  --cherry: #861519;     /* rouge profond — marque / CTA */
  --cherry-dark: #6E1013;
  --espresso: #34251B;   /* brun logo — texte principal */
  --espresso-soft: #5A4638;
  --white: #FFFFFF;
  --cloud-2: #E7E3DA;    /* bordures douces */

  --font-display: "Gliker", "Fredoka", "Baloo 2", system-ui, sans-serif;
  --font-body: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 22px;
  --radius-lg: 34px;
  --radius-pill: 999px;
  --shadow: 0 14px 40px rgba(52, 37, 27, 0.10);
  --shadow-sm: 0 6px 18px rgba(52, 37, 27, 0.08);
  --maxw: 1160px;
  --gutter: clamp(18px, 5vw, 40px);
}

/* ---------- Accessibilité clavier ---------- */
/* Contour visible uniquement à la navigation clavier (pas au clic souris) */
:focus-visible {
  outline: 3px solid var(--cherry);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible, .nav-cta a:focus-visible {
  outline: 3px solid var(--espresso);
  outline-offset: 3px;
}
.bg-cherry :focus-visible, .site-footer :focus-visible, .offer-band :focus-visible {
  outline-color: var(--custard);
}
/* Lien d'évitement : invisible jusqu'au focus clavier */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--cherry); color: #fff; font-family: var(--font-display);
  font-weight: 600; padding: .8em 1.4em; border-radius: 0 0 14px 0;
}
.skip-link:focus { left: 0; text-decoration: none; }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
/* le header collant ne doit pas masquer la cible des ancres */
[id] { scroll-margin-top: 90px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--espresso);
  background: var(--cloud);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--cherry); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; color: var(--espresso); margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 5.5vw, 3.6rem); letter-spacing: -.5px; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); }
p { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.2rem; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(56px, 8vw, 100px) 0; }
.section--tight { padding: clamp(36px, 5vw, 64px) 0; }
.bg-cloud { background: var(--cloud); }
.bg-white { background: var(--white); }
.bg-custard { background: var(--custard); }
.bg-blueberry { background: var(--blueberry); }
.bg-cherry { background: var(--cherry); color: var(--cloud); }
.bg-cherry h1, .bg-cherry h2, .bg-cherry h3 { color: var(--white); }
.bg-cherry a:not(.btn) { color: var(--custard); }
.bg-cherry .lead, .bg-cherry p, .bg-cherry li { color: var(--cloud); }
/* Boutons sur fond bordeaux : contraste garanti */
.bg-cherry .btn--primary { background: var(--custard); color: var(--espresso); }
.bg-cherry .btn--primary:hover { background: #f6d968; color: var(--espresso); }
.bg-cherry .btn--custard { background: var(--custard); color: var(--espresso); }
.bg-cherry .btn--ghost { color: #fff; border-color: #fff; }
.bg-cherry .btn--ghost:hover { background: #fff; color: var(--cherry); }
.center { text-align: center; }
.lead { font-size: 1.18rem; color: var(--espresso-soft); max-width: 62ch; }
.center .lead, .lead.center { margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px; font-size: .82rem;
  color: var(--cherry); margin-bottom: .6rem;
}
.bg-cherry .eyebrow { color: var(--custard); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
  padding: .85em 1.6em; border-radius: var(--radius-pill);
  border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s;
  text-decoration: none; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: var(--cherry); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--cherry-dark); color: #fff; }
.btn--ghost { background: transparent; color: var(--cherry); border-color: var(--cherry); }
.btn--ghost:hover { background: var(--cherry); color: #fff; }
.btn--light { background: var(--cloud); color: var(--cherry); }
.btn--light:hover { background: #fff; }
.btn--custard { background: var(--custard); color: var(--espresso); }
.btn--custard:hover { background: #f6d968; color: var(--espresso); }

/* ---------- Choix entre deux réservations équivalentes ---------- */
/* Utilisé sur /planning/ : ce n'est pas une action principale + une secondaire,
   mais deux portes d'entrée de même poids. Les deux restent des boutons pleins,
   y compris sur mobile (voir l'exception à la règle .hero-cta plus bas). */
.choice-cta { gap: .9rem; flex-wrap: wrap; }
.choice-cta .btn { justify-content: center; }
.choice-cta .btn--ghost {
  background: var(--white); color: var(--cherry); border-color: var(--cherry);
}
.choice-cta .btn--ghost:hover { background: var(--cherry); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(240, 238, 233, .88); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cloud-2);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .7rem var(--gutter); max-width: var(--maxw); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: .55rem; font-family: var(--font-display); font-weight: 600; font-size: 1.45rem; color: var(--espresso); }
.brand:hover { text-decoration: none; }
.brand .brand-mark { width: 38px; height: 38px; flex: none; }
/* Symbole réel du logo Yuzu, recoloré via masque (net sur fond crème) */
.brand-symbol {
  width: 32px; height: 42px; flex: none; display: block;
  background-color: var(--cherry);
  -webkit-mask: url("/assets/img/studio-yuzu-symbol.png") no-repeat center / contain;
  mask: url("/assets/img/studio-yuzu-symbol.png") no-repeat center / contain;
}
.brand .brand-txt { display: flex; flex-direction: column; line-height: 1; }
/* Logo complet réel (studio YUZU), recoloré en bordeaux via masque pour rester lisible sur crème */
.brand-logo {
  display: block; width: 180px; height: 52px; flex: none;
  background-color: var(--cherry);
  -webkit-mask: url("/assets/img/studio-yuzu-logo-full.png") no-repeat left center;
  mask: url("/assets/img/studio-yuzu-logo-full.png") no-repeat left center;
  -webkit-mask-size: contain; mask-size: contain;
}
@media (max-width: 520px){ .brand-logo { width: 142px; height: 42px; } }
.brand small { display:block; font-family: var(--font-body); font-weight:500; font-size:.62rem; letter-spacing:2px; text-transform:uppercase; color: var(--cherry); margin-top:2px;}
.nav-links { display: flex; align-items: center; gap: .3rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--espresso); font-weight: 500; padding: .5rem .7rem; border-radius: var(--radius-pill); font-size: .96rem; }
.nav-links a:hover { background: var(--white); text-decoration: none; }
.nav-links a.active { color: var(--cherry); }
.nav-links .btn--primary { color: var(--white); }
.nav-links .btn--primary:hover { color: var(--white); background: var(--cherry-dark); }
.nav-cta { margin-left: .4rem; }
/* ---------- Menu déroulant (silo Activités) ---------- */
.has-sub { position: relative; }
.has-sub > button {
  font-family: inherit; font-size: .96rem; font-weight: 500; color: var(--espresso);
  background: none; border: 0; cursor: pointer; padding: .5rem .7rem;
  border-radius: var(--radius-pill); display: inline-flex; align-items: center; gap: .35em;
}
.has-sub > button:hover { background: var(--white); }
.has-sub > button::after {
  content: ""; width: 6px; height: 6px; border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-1px); transition: transform .2s;
}
.has-sub[data-open="true"] > button::after { transform: rotate(-135deg) translateY(-2px); }
.submenu {
  list-style: none; margin: 0; padding: .7rem; position: absolute; top: calc(100% + .4rem); left: 50%;
  transform: translateX(-50%);
  width: 560px; max-width: calc(100vw - 2rem);
  background: var(--white); border: 1px solid var(--cloud-2);
  border-radius: 18px; box-shadow: var(--shadow); display: none; z-index: 120;
}
.has-sub[data-open="true"] .submenu { display: grid; grid-template-columns: 1fr 1fr; gap: .2rem 1.2rem; align-items: start; }
.sub-group { list-style: none; }
.sub-group ul { list-style: none; margin: 0; padding: 0; }
.sub-group + .sub-group .sub-label { margin-top: .3rem; }
.submenu a { display: block; padding: .6rem .8rem; border-radius: 12px; font-size: .94rem; }
.submenu a:hover { background: var(--cloud); text-decoration: none; }
.submenu .sub-label {
  display: block; padding: .5rem .8rem .2rem; font-family: var(--font-display); font-weight: 600;
  font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cherry);
}
.submenu hr { border: 0; border-top: 1px solid var(--cloud-2); margin: .4rem .5rem; }

@media (max-width: 940px) {
  .has-sub > button { width: 100%; justify-content: space-between; padding: .8rem .6rem; }
  .submenu {
    position: static; transform: none; left: auto; width: auto; max-width: none;
    columns: 1; box-shadow: none; border: 0; background: transparent; padding: 0 0 .4rem .8rem;
  }
  .submenu a { padding: .55rem .6rem; }
}

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--espresso); border-radius: 3px; margin: 5px 0; transition: .3s; }

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: .1rem;
    background: var(--cloud); border-bottom: 1px solid var(--cloud-2);
    padding: .6rem var(--gutter) 1.2rem; box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .8rem .6rem; }
  .nav-cta { margin: .4rem 0 0; }
  .nav.open .nav-toggle span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2){ opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(48px, 8vw, 92px) 0; overflow: hidden; }
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 5vw, 56px); align-items: center; }
.hero h1 { margin-bottom: .35em; }
.hero-kicker {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  color: var(--cherry); margin: -.2rem 0 1rem;
}
.hero .badges { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.2rem 0; }
.badge {
  display: inline-flex; align-items: center; gap: .4em;
  background: var(--white); color: var(--espresso); border-radius: var(--radius-pill);
  padding: .45em 1em; font-size: .9rem; font-weight: 500; box-shadow: var(--shadow-sm);
}
.badge--rating { font-weight: 600; }
.badge--rating .stars-mini { color: #E8A93B; letter-spacing: 1px; font-size: .82rem; }
.badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--cherry); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }
.hero-visual { position: relative; }
.hero-visual .blob {
  aspect-ratio: 1/1; border-radius: 46% 54% 58% 42% / 48% 44% 56% 52%;
  background: linear-gradient(150deg, var(--custard), var(--blueberry));
  display: grid; place-items: center; box-shadow: var(--shadow); overflow: hidden;
}
.hero-visual .blob img { width: 68%; height: auto; }
.hero-visual .blob--photo { background: var(--cloud-2); }
.hero-visual .blob--photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 360px; margin: 0 auto; }
}

/* decorative citrus dots */
.deco-dot { position: absolute; border-radius: 50%; opacity: .5; z-index: 1; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: clamp(18px, 3vw, 28px); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px){ .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 620px){ .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border-radius: var(--radius); padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--shadow-sm); border: 1px solid var(--cloud-2);
  transition: transform .18s ease, box-shadow .25s ease; height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
/* Variantes de cartes : la couleur remplace les pictogrammes */
.card { border-top: 4px solid var(--custard); }
.card--blue { border-top-color: var(--blueberry); background: #FAFCFF; }
.card.card--cherry { border-top-color: var(--cherry); background: var(--cherry); color: var(--cloud); }
.card.card--cherry h3, .card.card--cherry h4 { color: #fff; }
.card.card--cherry p, .card.card--cherry li, .card.card--cherry strong { color: var(--cloud); }
.card.card--cherry a:not(.btn) { color: var(--custard); }
.card.card--cherry .card-link { color: var(--custard); border-color: var(--custard); }
.card.card--cherry .pill { background: var(--custard); color: var(--espresso); }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--espresso-soft); margin-bottom: 1rem; }
.card .card-link { font-family: var(--font-display); font-weight: 600; border-bottom: 2px solid var(--custard); padding-bottom: 2px; }
.card .card-link:hover { border-color: var(--cherry); text-decoration: none; }

/* Strip catégories numérotées (sous le hero) */
.cat-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--cloud-2); border-bottom: 1px solid var(--cloud-2); }
.cat-item { display: flex; align-items: baseline; gap: .6rem; padding: 1.3rem 1.2rem; border-right: 1px solid var(--cloud-2); color: var(--espresso); font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; transition: background .2s ease; }
.cat-item:last-child { border-right: 0; }
.cat-item:hover { background: var(--white); text-decoration: none; }
.cat-item .cat-num { font-size: .8rem; color: var(--cherry); font-weight: 600; }
@media (max-width: 700px){ .cat-strip { grid-template-columns: 1fr 1fr; } .cat-item:nth-child(2){border-right:0} .cat-item:nth-child(1),.cat-item:nth-child(2){border-bottom:1px solid var(--cloud-2)} }

/* Avis façon Google */
.quote .who-row { display: flex; align-items: center; gap: .7rem; margin-top: 1rem; }
.quote .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--cherry); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; flex: none; }
.quote .who-row .who { margin: 0; line-height: 1.2; }
.quote .src { display: block; font-size: .76rem; color: var(--espresso-soft); font-weight: 400; font-family: var(--font-body); }
.reviews-head { text-align: center; margin-bottom: 1.6rem; }
.reviews-head .score { font-family: var(--font-display); font-size: 2.4rem; color: var(--cherry); line-height: 1; }
.reviews-head .stars { color: #E8A93B; letter-spacing: 2px; font-size: 1.2rem; }

/* feature list */
.features { list-style: none; padding: 0; display: grid; gap: 1rem; }
.features li { display: flex; gap: .8rem; align-items: flex-start; }
/* Puce sobre (sans pictogramme) */
.features .check { flex: none; width: 10px; height: 10px; margin-top: .55em; border-radius: 50%; background: var(--cherry); }
.card--cherry .features .check { background: var(--custard); }

/* stats */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; text-align: center; }
.stats .num { font-family: var(--font-display); font-size: clamp(1.8rem,4vw,2.6rem); color: var(--cherry); line-height: 1; }
.bg-cherry .stats .num { color: var(--custard); }
.stats .lbl { font-size: .9rem; color: var(--espresso-soft); }
.bg-cherry .stats .lbl { color: var(--cloud); }
@media (max-width: 620px){ .stats { grid-template-columns: repeat(2,1fr); gap: 1.6rem; } }

/* ---------- Split section ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split--reverse .split-media { order: 2; }
@media (max-width: 820px){ .split { grid-template-columns: 1fr; } .split--reverse .split-media { order: 0; } }
.media-blob {
  border-radius: var(--radius-lg); aspect-ratio: 4/3; box-shadow: var(--shadow);
  background: linear-gradient(160deg, var(--blueberry), var(--custard));
  display: grid; place-items: center; color: var(--espresso); font-family: var(--font-display); overflow: hidden;
}
.media-blob img { width:100%; height:100%; object-fit: cover; }

/* ---------- Testimonials ---------- */
.quote { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); border:1px solid var(--cloud-2); }
.quote .stars { color: #E8A93B; letter-spacing: 2px; margin-bottom: .6rem; }
.quote p { font-style: italic; color: var(--espresso); }
.quote .who { font-family: var(--font-display); font-weight: 600; color: var(--cherry); margin-top: .6rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  background: var(--white); border: 1px solid var(--cloud-2); border-radius: var(--radius);
  padding: .3rem 1.3rem; margin-bottom: .8rem; box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem;
  padding: 1rem 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.6rem; color: var(--cherry); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 1rem; color: var(--espresso-soft); margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band .btn { margin: .3rem; }

/* ---------- Widget wrapper ---------- */
/* Les widgets Eversports ont besoin de largeur : on casse la contrainte du conteneur */
.widget-box {
  background: var(--white); border-radius: var(--radius); padding: clamp(10px, 1.6vw, 18px);
  box-shadow: var(--shadow-sm); border: 1px solid var(--cloud-2); min-height: 200px;
}
.widget-wide {
  width: 100%;
  max-width: 1500px;                 /* plus large que le conteneur standard (1160px) */
  margin-left: auto; margin-right: auto;
  padding: 0 clamp(12px, 3vw, 28px);
}
.widget-box > div[data-eversports-widget-id] { width: 100%; }
/* Hauteur généreuse : le widget se déploie entièrement, sans barre de défilement interne */
.widget-box, .widget-box * { max-height: none !important; }
.widget-box iframe {
  width: 100% !important;
  min-height: 900px;          /* planning : la semaine entière visible */
  height: auto;
  border: 0; display: block; overflow: hidden !important;
}
.widget-box--tall iframe { min-height: 1500px; }   /* tarifs : toutes les formules d'un coup */
@media (max-width: 700px){
  .widget-wide { padding: 0 4px; }
  .widget-box { padding: 6px; border-radius: 16px; }
  .widget-box iframe { min-height: 1200px; }
  .widget-box--tall iframe { min-height: 2100px; }
}
.widget-note { font-size: .85rem; color: var(--espresso-soft); margin-top: .6rem; }

/* ---------- Formulaire de contact ---------- */
.form { max-width: 660px; margin: 1.6rem auto 0; display: grid; gap: 1rem; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px){ .form .row { grid-template-columns: 1fr; } }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: .95rem; margin-bottom: .35rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .8em 1em; border-radius: 14px; border: 1.5px solid var(--cloud-2);
  background: var(--white); font-family: var(--font-body); font-size: 1rem; color: var(--espresso);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--cherry); box-shadow: 0 0 0 3px rgba(134,21,25,.12);
}
.field textarea { min-height: 140px; resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .85rem; color: var(--espresso-soft); }
.form-flash { max-width: 660px; margin: 1.4rem auto 0; border-radius: var(--radius); padding: 1rem 1.2rem; font-weight: 600; display: none; }
.form-flash.show, .form-flash:target { display: block; }
.form-flash--ok { background: var(--custard); color: var(--espresso); }
.form-flash--err { background: #f7d7d3; color: var(--cherry); }

/* Fil d'Ariane en bas de page : discret, sans charger le haut */
.bc-bottom { padding: 1.6rem 0 2.2rem; border-top: 1px solid var(--cloud-2); background: var(--cloud); }
.bc-bottom .breadcrumb { padding: 0; font-size: .84rem; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: .85rem; color: var(--espresso-soft); padding: 1rem 0 0; }
.breadcrumb a { color: var(--espresso-soft); }
.breadcrumb span { margin: 0 .4rem; }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta { display: none; }
@media (max-width: 700px){
  .mobile-cta {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    padding: .6rem; background: rgba(240,238,233,.95); backdrop-filter: blur(8px);
    border-top: 1px solid var(--cloud-2); gap: .5rem;
  }
  .mobile-cta .btn { flex: 1; justify-content: center; }
  body { padding-bottom: 74px; }
  body.no-sticky-cta { padding-bottom: 0; }

  /* Barre collante en custard : elle se distingue nettement des CTA de la page,
     pour ne plus avoir plusieurs boutons d'aspect identique à l'écran */
  .mobile-cta .btn--primary { background: var(--custard); color: var(--espresso); border-color: var(--custard); }
  .mobile-cta .btn--primary:hover,
  .mobile-cta .btn--primary:active { background: #f6d968; color: var(--espresso); border-color: #f6d968; }
  .mobile-cta .btn--ghost { background: var(--white); color: var(--cherry); }
  /* survol/appui : jaune Yuzu et texte foncé — jamais de blanc sur blanc */
  .mobile-cta .btn--ghost:hover,
  .mobile-cta .btn--ghost:active { background: var(--custard); color: var(--espresso); border-color: var(--cherry); }

  /* Sur mobile, l'action secondaire du hero passe en lien texte :
     un seul bouton plein par écran, la hiérarchie redevient lisible */
  .hero-cta { gap: .6rem; }
  .hero-cta .btn--ghost {
    background: none; border: 0; padding: .4em 0; text-decoration: underline;
    text-decoration-color: var(--custard); text-decoration-thickness: 2px; text-underline-offset: 4px;
  }
  .hero-cta .btn--ghost:hover { background: none; color: var(--cherry); }

  /* Exception : un choix entre deux options équivalentes garde deux vrais
     boutons, pleine largeur, empilés — sinon le second passe pour un détail */
  .choice-cta { flex-direction: column; align-items: stretch; }
  .choice-cta .btn,
  .choice-cta .btn--ghost {
    background: var(--white); color: var(--cherry); border: 2px solid var(--cherry);
    padding: .85em 1.4em; text-decoration: none; width: 100%;
  }
  .choice-cta .btn--primary {
    background: var(--cherry); color: var(--white); border-color: var(--cherry);
  }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--cherry-dark); color: var(--cloud); padding: clamp(48px,6vw,72px) 0 28px; border-top: 5px solid var(--custard); }
.site-footer a { color: var(--cloud); }
.site-footer a:hover { color: var(--custard); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
.footer-grid h4, .footer-grid .footer-title { color: #fff; font-size: 1.05rem; margin-bottom: .8rem; }
.footer-grid ul { list-style: none; padding: 0; }
.footer-grid li { margin-bottom: .5rem; }
.footer-brand { font-family: var(--font-display); font-size: 1.4rem; color: #fff; margin-bottom: .5rem; }
/* Logo du pied de page : même forme que le header, recolorée en crème
   pour rester lisible sur le fond bordeaux */
.footer-logo {
  display: block; width: 170px; height: 50px; margin-bottom: .9rem;
  background-color: var(--cloud);
  -webkit-mask: url("/assets/img/studio-yuzu-logo-full.png") no-repeat left center;
  mask: url("/assets/img/studio-yuzu-logo-full.png") no-repeat left center;
  -webkit-mask-size: contain; mask-size: contain;
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); margin-top: 2.4rem; padding-top: 1.4rem; font-size: .85rem; color: #C9BEB4; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; }
.social { display: flex; gap: .6rem; margin-top: .6rem; }
.social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.12); display: grid; place-items: center; }
.social a:hover { background: var(--custard); color: var(--espresso); }
/* Instagram seul : pastille + pseudo visible */
.social--solo a {
  width: auto; padding: .55rem 1.1rem .55rem .8rem; gap: .55rem;
  border-radius: var(--radius-pill); font-weight: 500; font-size: .92rem;
}
.social--solo a span { white-space: nowrap; }

/* Lien carte cadeau dans le header */
.nav-gift a {
  display: grid; place-items: center; width: 38px; height: 38px; padding: 0;
  border-radius: 50%; color: var(--cherry); background: var(--custard);
  box-shadow: var(--shadow-sm);
}
.nav-gift a:hover { background: var(--cherry); color: #fff; text-decoration: none; }
@media (max-width: 940px){
  .nav-gift a { width: auto; height: auto; justify-content: flex-start; gap: .6rem;
    padding: .8rem .6rem; border-radius: var(--radius-pill); background: transparent; box-shadow: none; }
  .nav-gift a::after { content: "Carte cadeau"; font-family: var(--font-body); font-weight: 500; font-size: .96rem; }
}

/* Icône Instagram dans le header */
.nav-ig a {
  display: grid; place-items: center; width: 38px; height: 38px; padding: 0;
  border-radius: 50%; color: var(--cherry); background: var(--white);
  box-shadow: var(--shadow-sm);
}
.nav-ig a:hover { background: var(--cherry); color: #fff; text-decoration: none; }
@media (max-width: 940px){
  .nav-ig a { width: auto; height: auto; justify-content: flex-start; gap: .6rem;
    padding: .8rem .6rem; border-radius: var(--radius-pill); background: transparent; box-shadow: none; }
  .nav-ig a::after { content: "Instagram"; font-family: var(--font-body); font-weight: 500; font-size: .96rem; }
}
@media (max-width: 820px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Articles : bloc "En bref", tableaux, signature ---------- */
.tldr {
  background: var(--blueberry); border-left: 5px solid var(--cherry);
  border-radius: 14px; padding: 1.1rem 1.3rem; margin: 1.4rem 0 2rem;
  font-size: 1.02rem; line-height: 1.6;
}
.tldr strong:first-child { font-family: var(--font-display); color: var(--cherry); }

.table-wrap { overflow-x: auto; margin: 1.2rem 0 1.6rem; -webkit-overflow-scrolling: touch; }
.table-wrap table { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 460px; }
.table-wrap th, .table-wrap td { text-align: left; padding: .7rem .9rem; border-bottom: 1px solid var(--cloud-2); vertical-align: top; }
.table-wrap thead th { background: var(--custard); font-family: var(--font-display); font-weight: 600; color: var(--espresso); }
.table-wrap tbody tr:nth-child(even) { background: #FBFAF7; }

article h2 { margin-top: 2.2rem; }
article h3 { margin-top: 1.5rem; }
article ol, article ul { padding-left: 1.4rem; }
article ol li, article ul li { margin-bottom: .45rem; }
/* puces et numéros aux couleurs de la charte, discrets */
article ul li::marker { color: var(--cherry); }
article ol li::marker { color: var(--cherry); font-family: var(--font-display); font-weight: 600; }
.container ul:not(.features):not(.nav-links):not(.submenu) li::marker { color: var(--cherry); }

.art-meta {
  margin-top: 2.4rem; padding-top: 1.2rem; border-top: 1px solid var(--cloud-2);
  font-size: .85rem; color: var(--espresso-soft);
}

/* Lien remontant vers la page mère (maillage en cocon) */
.parent-link {
  background: var(--cloud); border-left: 4px solid var(--custard);
  border-radius: 12px; padding: .9rem 1.1rem; margin: 0;
  font-size: .98rem; color: var(--espresso-soft);
}
.bg-white .parent-link { background: var(--cloud); }

/* ---------- Utilities ---------- */
.mt-0{margin-top:0}.mb-0{margin-bottom:0}
.pill { display:inline-block; background: var(--blueberry); color: var(--espresso); border-radius: var(--radius-pill); padding:.3em 1em; font-size:.82rem; font-weight:600; font-family:var(--font-display); }
.pill--custard{ background: var(--custard); }
.offer-band { background: var(--cherry); color: var(--cloud); text-align:center; font-size:.95rem; padding:.6rem 1rem; font-weight:500; }
.offer-band a { color: var(--custard); font-weight:600; }
/* Le contenu est visible par défaut ; l'animation ne se déclenche que si le JS est actif (classe .js) */
.js .anim { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .anim.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .js .anim{opacity:1;transform:none;transition:none} html{scroll-behavior:auto} }
