:root {
  --k-ink: #1f1a17;
  --k-muted: #5d5149;
  --k-paper: #fffaf2;
  --k-paper-deep: #f2eadc;
  --k-bordeaux: #740b18;
  --k-blue: #124f73;
  --k-gold: #c78b24;
  --k-green: #315b45;
  --k-border: #d7c7ad;
  --k-shadow: 0 12px 32px rgba(31, 26, 23, .10);
  --k-serif: Georgia, "Times New Roman", serif;
  --k-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Lora — police de l'introduction sur MOBILE uniquement. Auto-hebergee (OFL),
   aucun appel au CDN Google (conforme CNIL). Le navigateur ne telecharge ces
   fichiers que lorsqu'une regle les utilise reellement, donc seulement < 820 px. */
@font-face { font-family: "Lora"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/lora-regular.woff2") format("woff2"); }
@font-face { font-family: "Lora"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/lora-600.woff2") format("woff2"); }
@font-face { font-family: "Lora"; font-style: italic; font-weight: 400; font-display: swap; src: url("../fonts/lora-italic.woff2") format("woff2"); }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--k-ink);
  background: var(--k-paper);
  font-family: var(--k-sans);
  line-height: 1.65;
}
a { color: var(--k-blue); text-decoration-thickness: .08em; text-underline-offset: .16em; }
a:hover { color: var(--k-bordeaux); }
img { max-width: 100%; height: auto; }
:focus-visible { outline: 3px solid var(--k-gold); outline-offset: 3px; }
.screen-reader-text,
.k-skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.k-skip-link:focus {
  clip: auto;
  width: auto;
  height: auto;
  z-index: 1000;
  left: 1rem;
  top: 1rem;
  padding: .75rem 1rem;
  background: #fff;
  color: var(--k-ink);
}

.k-madras-bar {
  min-height: 14px;
  background: var(--k-blue) url("../img/madras-bleu-jaune-22.webp") center/320px auto;
}
.k-header {
  background: rgba(255, 250, 242, .96);
  border-bottom: 1px solid var(--k-border);
}
.k-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.k-brand { color: var(--k-ink); text-decoration: none; min-width: max-content; }
.k-brand__name {
  display: block;
  font-family: var(--k-serif);
  color: var(--k-bordeaux);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}
.k-brand__tagline { display: block; color: var(--k-muted); font-size: .92rem; }
.k-nav { margin-left: auto; }
.k-nav__list,
.k-footer__links {
  list-style: none;
  display: flex;
  gap: .25rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.k-nav__list a,
.k-footer__links a {
  display: inline-flex;
  padding: .55rem .75rem;
  color: var(--k-ink);
  text-decoration: none;
}
.k-nav__list a:hover { background: var(--k-paper-deep); color: var(--k-bordeaux); }
.k-nav-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--k-border);
  background: #fff;
  width: 44px;
  height: 44px;
}
.k-nav-toggle span[aria-hidden] {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--k-ink);
  margin: 0 auto;
  box-shadow: 0 6px 0 var(--k-ink), 0 -6px 0 var(--k-ink);
}
.k-search-strip {
  border-top: 1px solid var(--k-border);
  padding: .75rem clamp(1rem, 3vw, 2rem);
}
.k-search-strip form,
.k-archive-header form {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  gap: .5rem;
}
.search-field {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--k-border);
  padding: .78rem .9rem;
  background: #fff;
}
.search-submit,
button,
input[type="submit"] {
  border: 0;
  background: var(--k-bordeaux);
  color: #fff;
  padding: .78rem 1rem;
  cursor: pointer;
}
.search-submit:hover,
button:hover,
input[type="submit"]:hover { background: var(--k-blue); }

.k-main { min-height: 60vh; }
.k-hero {
  min-height: 72vh;
  display: grid;
  align-items: end;
  padding: clamp(3rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
  background:
    linear-gradient(180deg, rgba(31,26,23,.18), rgba(31,26,23,.72)),
    url("../img/banniere-kaseko.webp") center/cover no-repeat;
  color: #fff;
}
.k-hero__content { max-width: 820px; }
.k-eyebrow {
  color: var(--k-gold);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .78rem;
}
.k-hero h1,
.k-archive-header h1,
.k-entry__header h1 {
  font-family: var(--k-serif);
  letter-spacing: 0;
  line-height: 1.05;
  margin: .2rem 0 .75rem;
}
.k-hero h1 { font-size: clamp(3.3rem, 10vw, 8rem); }
.k-hero p { max-width: 680px; font-size: clamp(1.1rem, 2vw, 1.45rem); }
.k-home-grid,
.k-listing,
.k-section,
.k-archive-header,
.k-entry {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}
.k-home-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: -2.5rem;
  background: var(--k-border);
  box-shadow: var(--k-shadow);
}
.k-home-grid a {
  min-height: 150px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #fff;
  color: var(--k-ink);
  text-decoration: none;
}
.k-home-grid span { color: var(--k-bordeaux); font-family: var(--k-serif); font-size: 1.5rem; }
.k-home-grid strong { color: var(--k-muted); font-weight: 500; }
.k-section,
.k-archive-header { padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem; }
.k-section h2 { font-family: var(--k-serif); color: var(--k-bordeaux); font-size: 2.1rem; }
.k-listing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-bottom: 3rem;
}
.k-card {
  background: #fff;
  border: 1px solid var(--k-border);
  border-radius: 6px;
}
.k-card a {
  display: block;
  color: var(--k-ink);
  text-decoration: none;
  padding: 1rem;
}
.k-card img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.k-card__type { color: var(--k-blue); font-size: .8rem; text-transform: uppercase; font-weight: 700; }
.k-card h2 { font-family: var(--k-serif); color: var(--k-bordeaux); line-height: 1.2; }
.k-entry { padding: clamp(2rem, 5vw, 4rem) 0; }
.k-breadcrumb { color: var(--k-muted); font-size: .9rem; margin-bottom: 1rem; }
.k-entry__header { max-width: 860px; }
.k-entry__header h1 { font-size: clamp(2.4rem, 7vw, 5rem); color: var(--k-bordeaux); }
.k-chapo {
  font-family: var(--k-serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--k-muted);
}
.k-entry__layout {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 760px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  margin-top: 2rem;
}
.k-entry__aside {
  position: sticky;
  top: 1rem;
  border-left: 4px solid var(--k-gold);
  padding-left: 1rem;
  color: var(--k-muted);
}
.k-entry__content {
  font-family: var(--k-serif);
  font-size: 1.14rem;
}
.k-entry__content > p:first-of-type::first-letter {
  float: left;
  color: var(--k-bordeaux);
  font-size: 4rem;
  line-height: .85;
  padding-right: .4rem;
}
.k-entry__content h2,
.k-entry__content h3 { color: var(--k-blue); font-family: var(--k-serif); line-height: 1.2; }
.k-entry__content table {
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
}
.k-entry__content th,
.k-entry__content td {
  border: 1px solid var(--k-border);
  padding: .5rem;
}
.k-dict-entry,
.k-sources {
  border-top: 3px solid var(--k-border);
  margin-top: 2rem;
  padding-top: 1rem;
}
.k-dict-entry {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: .5rem 1rem;
}
.k-dict-entry dt { font-weight: 700; color: var(--k-blue); }
.k-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.k-media-card {
  border: 1px solid var(--k-border);
  background: #fff;
  padding: .75rem;
}
.k-media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.k-footer {
  margin-top: 3rem;
  background: #1f1a17;
  color: #fff;
}
.k-footer__ornament {
  height: 26px;
  background: url("../img/filet-fleur-rouge.webp") center/auto 26px repeat-x;
}
.k-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem clamp(1rem, 3vw, 2rem);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.k-footer a { color: #fff; }

@media (max-width: 860px) {
  .k-header__inner { flex-wrap: wrap; }
  .k-nav-toggle { display: inline-block; }
  .k-nav {
    display: none;
    flex-basis: 100%;
    margin-left: 0;
  }
  .k-nav.is-open { display: block; }
  .k-nav__list { display: grid; }
  .k-home-grid,
  .k-listing,
  .k-media-grid { grid-template-columns: 1fr; }
  .k-entry__layout { grid-template-columns: 1fr; }
  .k-entry__aside { position: static; }
}

/* Heritage layer: keep the Dreamweaver-era families visible. */
body.kaseko-site {
  background:
    linear-gradient(rgba(255, 250, 242, .88), rgba(255, 250, 242, .9)),
    url("../img/madras-bleu-jaune-22.webp") top center/360px auto repeat;
}
.k-header {
  background:
    url("../img/bougainvillier.webp") top center/contain no-repeat,
    linear-gradient(#fffaf2, #f6ecd9);
  box-shadow: 0 3px 0 rgba(116, 11, 24, .16);
}
.k-header__inner {
  min-height: 150px;
  align-items: end;
}
.k-brand {
  display: grid;
  gap: .25rem;
}
.k-brand__image-wrap {
  display: block;
  width: min(430px, 64vw);
}
.k-brand__image {
  display: block;
  width: 100%;
  filter: drop-shadow(0 8px 12px rgba(31, 26, 23, .18));
}
.k-brand__tagline {
  color: #520811;
  font-family: var(--k-serif);
  font-size: clamp(.98rem, 1.6vw, 1.2rem);
  font-style: italic;
  text-align: center;
}
.k-nav {
  align-self: end;
  padding-bottom: .4rem;
}
.k-nav__list {
  align-items: center;
}
.k-nav__list > li {
  position: relative;
}
.k-nav__list a {
  border-radius: 0;
  color: #23130e;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}
.k-nav__list > li > a {
  border-bottom: 3px solid transparent;
}
.k-nav__list > li > a:hover,
.k-nav__list > li:focus-within > a {
  border-color: var(--k-gold);
  background: rgba(255, 255, 255, .74);
}
.k-nav__submenu {
  display: none;
  position: absolute;
  z-index: 20;
  min-width: 190px;
  list-style: none;
  padding: .35rem;
  margin: 0;
  background: #fffaf2;
  border: 1px solid var(--k-border);
  box-shadow: var(--k-shadow);
}
.k-nav__submenu a {
  display: block;
  padding: .55rem .7rem;
  white-space: nowrap;
}
.k-nav__list > li:hover > .k-nav__submenu,
.k-nav__list > li:focus-within > .k-nav__submenu {
  display: block;
}
.k-search-strip {
  background: rgba(94, 0, 0, .92);
  border-top: 1px solid rgba(255,255,255,.3);
}
.k-search-strip .search-field {
  border-color: rgba(255,255,255,.55);
}
.k-search-strip .search-submit {
  background: #c78b24;
  color: #21140f;
  font-weight: 700;
}
.k-home-banner {
  width: min(1000px, calc(100% - 2rem));
  margin: 1.5rem auto 0;
  text-align: center;
}
.k-home-banner img {
  max-height: 150px;
  object-fit: contain;
}
.k-home-banner p {
  margin: .25rem 0 0;
  color: #5e0000;
  font-family: var(--k-serif);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-style: italic;
}
.k-home-intro {
  width: min(1000px, calc(100% - 2rem));
  margin: 1rem auto 2rem;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(255, 250, 242, .9);
  border-top: 5px solid var(--k-bordeaux);
  border-bottom: 5px solid var(--k-green);
  font-family: Georgia, "Times New Roman", serif;
  color: #24150f;
}
.k-home-intro h1,
.k-home-intro h2,
.k-home-intro h3 {
  color: #5e0000;
  font-family: Georgia, "Times New Roman", serif;
}
.k-home-grid {
  margin-top: 0;
  border: 5px solid rgba(94, 0, 0, .72);
  box-shadow: 0 12px 22px rgba(63, 32, 14, .18);
}
.k-home-grid a {
  background:
    linear-gradient(rgba(255, 250, 242, .94), rgba(255, 250, 242, .88)),
    url("../img/madras-bleu-jaune-22.webp") center/280px auto;
}
.k-home-grid span {
  color: #5e0000;
}
.k-entry {
  background: rgba(255, 250, 242, .94);
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
}
.k-entry__header {
  border-bottom: 3px double var(--k-border);
  padding-bottom: 1rem;
}
.k-entry__aside {
  border-left: 0;
}
.k-entry__ornament {
  min-height: 420px;
  background: url("../img/filet-fleur-rouge.webp") top center/42px auto repeat-y;
}
.k-entry__content {
  color: #24150f;
}
.k-entry__content img {
  border: 1px solid rgba(116, 11, 24, .25);
}
.k-entry--legacy .k-entry__content img,
.k-home-intro img {
  border: 0;
  box-shadow: none;
  background: transparent;
}
.k-entry--legacy .k-entry__content a img,
.k-home-intro a img {
  border: 0;
}
.k-entry__content .Intertitre,
.k-entry__content .Intertitre1,
.k-entry__content .Titre,
.k-entry__content .TitreRouge {
  color: #740b18;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}
.k-entry__content .lettrine,
.k-entry__content .Lettrine,
.k-entry__content .LettrineRouge {
  color: #740b18;
  float: left;
  font-size: 4.6rem;
  line-height: .82;
  padding-right: .35rem;
}

.k-family-rythme .k-entry {
  border-top: 10px solid #124f73;
}
.k-family-rythme .k-entry__header h1,
.k-family-rythme .k-entry__content h2 {
  color: #124f73;
}
.k-family-rythme .k-entry__content {
  font-family: Georgia, "Times New Roman", serif;
}

.k-family-chant {
  background:
    linear-gradient(rgba(255, 244, 247, .74), rgba(255, 244, 247, .78)),
    url("../img/madras-rose.jpg") top center repeat;
}
.k-family-chant .k-entry {
  background: rgba(255, 252, 247, .95);
  border-top: 10px solid #8f1121;
  box-shadow: 0 10px 28px rgba(94, 0, 0, .16);
}
.k-family-chant .k-entry__header h1,
.k-family-chant .k-entry__content h2,
.k-family-chant .k-entry__content .Titre_Chant {
  color: #8f1121;
  text-align: center;
}
.k-family-chant .k-entry__content {
  font-family: Georgia, "Times New Roman", serif;
  color: #21140f;
}
.k-family-chant .k-entry__content table {
  margin-left: auto;
  margin-right: auto;
}

.k-family-creole {
  background: #5e0000;
}
.k-family-creole .k-header {
  box-shadow: 0 3px 0 rgba(199, 139, 36, .4);
}
.k-family-creole .k-entry {
  background: #fff7e8;
  border-top: 10px solid #315b45;
}
.k-family-creole .k-entry__header h1 {
  color: #5e0000;
}
.k-family-creole .k-entry__content {
  color: #2b1a12;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
}
.k-family-creole .k-entry__content h2,
.k-family-creole .k-entry__content h3 {
  color: #315b45;
}

.k-dictionary-hero {
  width: min(1040px, calc(100% - 2rem));
  margin: 2rem auto 0;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  background:
    linear-gradient(135deg, rgba(255, 250, 242, .96), rgba(242, 234, 220, .96)),
    url("../img/madras-bleu-jaune-22.webp") center/320px auto;
  border-top: 8px solid #740b18;
  border-bottom: 8px solid #315b45;
}
.k-dictionary-hero h1 {
  margin: .2rem 0 .7rem;
  color: #5e0000;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
}
.k-dictionary-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .75rem;
  align-items: center;
  margin-top: 1rem;
}
.k-dictionary-search input {
  width: 100%;
  border: 2px solid var(--k-border);
  padding: .9rem 1rem;
  font-size: 1.05rem;
}
.k-dictionary-count {
  color: #5e0000;
  font-weight: 700;
}
.k-dictionary-grid {
  width: min(1180px, calc(100% - 2rem));
  margin: 1.25rem auto 3rem;
  columns: 3 270px;
  column-gap: 1rem;
}
.k-dictionary-card {
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin: 0 0 1rem;
  padding: 1rem;
  background: #fffaf2;
  border: 1px solid var(--k-border);
  border-top: 4px solid #c78b24;
}
.k-dictionary-card[hidden] {
  display: none;
}
.k-dictionary-card h2 {
  margin: 0;
  color: #124f73;
  font-family: Georgia, "Times New Roman", serif;
}
.k-dictionary-card header p {
  margin: .15rem 0 .75rem;
  color: #740b18;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 700;
}
.k-dictionary-card dl {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: .3rem .6rem;
}
.k-dictionary-card dt {
  color: #315b45;
  font-weight: 700;
}
.k-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .64rem 1rem;
  color: #fff;
  background: #7b0000;
  border: 2px solid #7b0000;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.k-button:hover,
.k-button:focus {
  color: #fff;
  background: #003f74;
  border-color: #003f74;
}
.k-button--secondary {
  color: #7b0000;
  background: #fffaf0;
}
.k-button--secondary:hover,
.k-button--secondary:focus {
  color: #fff;
}
.k-lexique-page {
  padding-top: 42px;
}
.k-lexique-header {
  text-align: center;
}
.k-lexique-header h1 {
  margin: .2em 0 .18em;
  color: #770000;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  text-shadow: 2px 2px 3px rgba(153, 153, 153, .9);
}
.k-lexique-subtitle {
  margin: 0 auto 1.5rem;
  color: #00366c;
  font-size: clamp(1.2rem, 2.8vw, 1.75rem);
  font-style: italic;
  font-weight: 700;
}
.k-lexique-source {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 230px);
  gap: 1.5rem;
  align-items: center;
  margin: 1.5rem 0 2rem;
  padding: 1.2rem;
  background: #fffaf0;
  border: 1px solid #d8b98f;
  border-top: 6px solid #315b45;
}
.k-lexique-source h2,
.k-lexique-tool h2 {
  margin: .1rem 0 .55rem;
  color: #770000;
  font-family: Georgia, "Times New Roman", Times, serif;
}
.k-lexique-actions,
.k-lexique-direction,
.k-lexique-letters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.k-lexique-cover {
  display: block;
  justify-self: end;
  width: min(100%, 210px);
  background: #fff;
  border: 1px solid #d8b98f;
  padding: .35rem;
  box-shadow: 0 8px 18px rgba(49, 31, 18, .18);
}
.k-lexique-cover img {
  display: block;
  width: 100%;
  height: auto;
}
.k-lexique-tool {
  margin-top: 1.5rem;
  padding: 1.2rem;
  background:
    linear-gradient(rgba(255, 250, 240, .96), rgba(255, 250, 240, .96)),
    url("../img/madras-bleu-jaune-22.webp") center/340px auto;
  border: 1px solid #d8b98f;
  border-top: 6px solid #7b0000;
}
.k-lexique-tool__head {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.k-lexique-controls {
  display: grid;
  gap: .75rem;
}
.k-lexique-controls input {
  width: 100%;
  min-height: 48px;
  padding: .8rem 1rem;
  border: 2px solid #315b45;
  background: #fff;
  color: #1e1712;
  font-size: 1rem;
}
.k-lexique-direction button,
.k-lexique-letters button {
  min-height: 36px;
  padding: .42rem .7rem;
  color: #00366c;
  background: #fffaf0;
  border: 1px solid #d8b98f;
  font-weight: 700;
  cursor: pointer;
}
.k-lexique-direction button.is-active,
.k-lexique-letters button.is-active,
.k-lexique-direction button:hover,
.k-lexique-letters button:hover {
  color: #fff;
  background: #00366c;
  border-color: #00366c;
}
.k-lexique-letters {
  margin: 1rem 0;
}
.k-lexique-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: .8rem;
}
.k-lexique-card {
  padding: .85rem;
  background: #fffef8;
  border: 1px solid #d8b98f;
  border-top: 4px solid #c78b24;
}
.k-lexique-card[hidden] {
  display: none;
}
.k-lexique-card.is-featured {
  outline: 3px solid #00366c;
  outline-offset: 2px;
}
.k-lexique-card__fr,
.k-lexique-card__creole {
  margin: 0;
  line-height: 1.25;
}
.k-lexique-card__fr {
  color: #00366c;
  font-weight: 700;
}
.k-lexique-card__creole {
  margin-top: .35rem;
  color: #770000;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.18rem;
  font-weight: 700;
}
.k-lexique-card dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .2rem .45rem;
  margin: .65rem 0 0;
  font-size: .9rem;
}
.k-lexique-card dt {
  color: #315b45;
  font-weight: 700;
}
.k-lexique-empty {
  margin: 1rem 0 0;
  color: #770000;
  font-weight: 700;
}
.k-footer {
  background:
    linear-gradient(rgba(31, 26, 23, .94), rgba(31, 26, 23, .94)),
    url("../img/banniere-pied-kaseko.webp") center/cover no-repeat;
}

@media (max-width: 860px) {
  .k-header__inner {
    min-height: 118px;
    align-items: center;
  }
  .k-brand__image-wrap {
    width: min(310px, 72vw);
  }
  .k-nav__submenu {
    position: static;
    display: block;
    box-shadow: none;
    border: 0;
    padding-left: 1rem;
  }
  .k-entry__ornament {
    display: none;
  }
  .k-dictionary-search {
    grid-template-columns: 1fr;
  }
  .k-lexique-source,
  .k-lexique-tool__head {
    grid-template-columns: 1fr;
  }
  .k-lexique-tool__head {
    display: grid;
  }
  .k-lexique-cover {
    justify-self: center;
  }
}

/* Stabilisation visuelle apres recette LocalWP. */
.k-header {
  position: relative;
  overflow: visible;
  background: linear-gradient(#fffaf2, #f6ecd9);
}
.k-header::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 52%;
  top: 10px;
  width: 118px;
  height: 226px;
  background: url("../img/bougainvillier.webp") center top/contain no-repeat;
  pointer-events: none;
}
.k-header__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 470px) minmax(420px, 1fr);
  gap: clamp(1rem, 5vw, 5rem);
  min-height: 164px;
  align-items: center;
}
.k-brand {
  min-width: 0;
  width: 100%;
}
.k-brand__image-wrap {
  width: min(460px, 100%);
}
.k-brand__tagline {
  max-width: 470px;
  text-align: left;
  line-height: 1.25;
  white-space: normal;
}
.k-nav {
  width: 100%;
  max-width: 650px;
  justify-self: end;
  margin-left: 0;
  padding-bottom: 0;
}
.k-nav__list {
  justify-content: flex-end;
  gap: .25rem .8rem;
}
.k-nav__list a {
  padding: .45rem .55rem;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}
.k-nav__submenu {
  right: 0;
  left: auto;
}
.k-search-strip {
  position: relative;
  z-index: 2;
}
.k-search-strip form {
  max-width: 420px;
}
.search-submit,
button,
input[type="submit"] {
  font-weight: 700;
}
.k-home-banner img {
  display: none;
}
.k-home-intro {
  margin-top: 2rem;
}
.k-home-intro table {
  max-width: 100%;
}
.k-home-fallback-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1.5rem;
  border: 1px solid rgba(94, 0, 0, .4);
  background: rgba(94, 0, 0, .4);
}
.k-home-fallback-nav a {
  padding: .85rem;
  background: rgba(255,250,242,.95);
  color: #5e0000;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  text-decoration: none;
}
.k-entry--page {
  min-height: 48vh;
}
.k-entry--page .wp-block-button__link,
.k-entry--page .wp-element-button {
  display: inline-block;
  background: #740b18;
  color: #fff;
  padding: .85rem 1rem;
  text-decoration: none;
}

@media (max-width: 1180px) {
  .k-header__inner {
    grid-template-columns: minmax(250px, 420px) minmax(380px, 1fr);
    gap: 2rem;
  }
  .k-header::after {
    left: 49%;
    opacity: .82;
  }
}

@media (max-width: 980px) {
  .k-header::after {
    display: none;
  }
  .k-header__inner {
    grid-template-columns: 1fr auto;
    min-height: auto;
  }
  .k-brand__image-wrap {
    width: min(380px, 74vw);
  }
  .k-nav {
    justify-self: stretch;
    max-width: none;
  }
  .k-nav__list {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .k-header__inner {
    display: flex;
  }
  .k-brand__tagline {
    font-size: .95rem;
  }
  .k-home-fallback-nav {
    grid-template-columns: 1fr 1fr;
  }
}

/* Heritage v2: reprise structurelle des gabarits Dreamweaver originaux. */
body.kaseko-site {
  background: #3b4548 url("../img/madras-bleu-jaune-original.jpg") top center repeat;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
  line-height: normal;
}
body.k-family-chant {
  background: url("../img/madras-rose.jpg") top center repeat;
}
body.k-family-creole {
  background: #5e0000;
}
.k-legacy-shell {
  position: relative;
  width: min(1056px, calc(100% - 28px));
  margin: 16px auto 0;
  background: #fef8e6;
  border: 1px solid #000;
  border-radius: 30px;
  box-shadow: 2px 2px 10px 5px #3b3b3b;
  overflow: visible;
}
.k-header {
  position: relative;
  min-height: 308px;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.k-header::after {
  display: none;
}
.k-banner-link {
  display: block;
  height: 270px;
  background: url("../img/banniere-haut-original.png") left top/100% auto no-repeat;
  border-radius: 29px 29px 0 0;
}
.k-top-leafs {
  position: absolute;
  top: -70px;
  left: -42px;
  z-index: 40;
  width: 146px;
  height: 363px;
  overflow: visible;
  pointer-events: none;
}
.k-top-leafs img {
  display: block;
  width: 146px;
  max-width: none;
  height: auto;
}
.k-header__inner {
  display: block;
  min-height: 0;
  max-width: none;
  padding: 0;
}
.k-nav-toggle {
  display: none;
}
.k-nav {
  position: relative;
  z-index: 50;
  display: block;
  width: auto;
  max-width: none;
  margin: -1px auto 0;
  padding: 0;
  justify-self: auto;
}
.k-nav__list {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  width: max-content;
  max-width: calc(100% - 160px);
  margin: 0 auto;
  padding: 0;
  background: #003877;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: bold;
  text-shadow: 1px 2px 3px rgba(0,0,0,1);
}
.k-nav__list,
.k-nav__list ul {
  list-style: none;
}
.k-nav__list > li,
.k-nav__submenu > li {
  position: relative;
  margin: 0;
  padding: 0;
}
.k-nav__list a,
.k-nav__list > li > a,
.k-nav__trigger {
  appearance: none;
  box-sizing: border-box;
  border: 0;
  display: block;
  padding: .48em .72em;
  background: #003877;
  color: #fef8e6;
  border: 0;
  border-radius: 0;
  font-size: inherit;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
  font: inherit;
  text-shadow: inherit;
  cursor: pointer;
}
.has-submenu > .k-nav__trigger::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .28em;
  border-left: .28em solid currentColor;
  border-top: .22em solid transparent;
  border-bottom: .22em solid transparent;
  vertical-align: middle;
}
.k-nav__list > .has-submenu > .k-nav__trigger::after {
  border-left: .22em solid transparent;
  border-right: .22em solid transparent;
  border-top: .28em solid currentColor;
  border-bottom: 0;
}
.k-nav__list > li > a:hover,
.k-nav__list > li > .k-nav__trigger:hover,
.k-nav__list > li:focus-within > a,
.k-nav__list > li:focus-within > .k-nav__trigger,
.k-nav__list > li:hover > a,
.k-nav__list > li:hover > .k-nav__trigger,
.k-nav__submenu > li:hover > a,
.k-nav__submenu > li:hover > .k-nav__trigger,
.k-nav__submenu > li:focus-within > a,
.k-nav__submenu > li:focus-within > .k-nav__trigger {
  background: #770000;
  color: #fff;
  text-decoration: none;
}
.k-nav__submenu {
  display: none;
  position: absolute;
  z-index: 1020;
  left: 0;
  right: auto;
  top: 100%;
  min-width: 8.2em;
  width: 8.2em;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: #003877;
  box-shadow: none;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: .92rem;
  text-shadow: 1px 2px 3px rgba(0,0,0,1);
}
.k-nav__submenu .k-nav__submenu {
  left: 99%;
  top: -3%;
}
.k-nav__submenu .k-nav__trigger,
.k-nav__submenu a {
  display: block;
  padding: .5em .75em;
  color: #fff;
  background: #003877;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 1em;
  line-height: 1.05;
  white-space: normal;
  text-align: left;
  width: 100%;
}
.k-nav__list li:hover > .k-nav__submenu,
.k-nav__list li:focus-within > .k-nav__submenu,
.k-nav__list li.is-open > .k-nav__submenu {
  display: block;
}
.k-nav-search {
  margin-left: .08rem;
}
.k-nav__list .k-nav-search__trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  height: 2.25rem;
  padding: .38rem .55rem;
}
.k-nav-search__icon {
  width: 1.08rem;
  height: 1.08rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(1px 2px 2px rgba(0,0,0,.85));
}
.k-nav-search > .k-nav__submenu {
  left: auto;
  right: 0;
  width: 18rem;
  min-width: 18rem;
  padding: .55rem;
  background: #003877;
}
.k-nav-search > .k-nav__submenu > li {
  position: static;
}
.k-nav-search .k-menu-search-form {
  display: flex;
  gap: .35rem;
  align-items: stretch;
  margin: 0;
  text-shadow: none;
}
.k-nav-search .search-field {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255,255,255,.55);
  padding: .58rem .65rem;
  font: 400 .92rem Arial, Helvetica, sans-serif;
  background: #fffaf2;
  color: #1b1b1b;
}
.k-nav-search .search-submit {
  flex: 0 0 auto;
  padding: .58rem .75rem;
  background: #770000;
  color: #fff;
  font: 700 .9rem Georgia, "Times New Roman", Times, serif;
  text-shadow: 1px 1px 2px rgba(0,0,0,.75);
}
.k-nav-search .search-submit:hover,
.k-nav-search .search-submit:focus {
  background: #9a1b00;
}
.k-main {
  min-height: 420px;
  padding: 0;
}
.k-entry,
.k-home-intro,
.k-archive-header,
.k-section,
.k-listing {
  width: auto;
  max-width: none;
}
.k-entry,
.k-home-intro {
  margin: 0;
  background: transparent;
  box-shadow: none;
}
.k-entry--legacy,
.k-home-intro {
  padding: 30px 98px 30px 95px;
  color: #3a3a3a;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: medium;
  text-align: justify;
}
.k-entry--legacy h1,
.k-home-intro h1,
.k-entry--legacy .TitreCreole {
  margin: .55em 0 .75em;
  color: #003877;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 45px;
  text-align: center;
  text-shadow: 2px 2px 3px rgba(153,153,153,1);
}
.k-entry--legacy h2,
.k-entry--legacy h3,
.k-entry--legacy .Intertitre,
.k-entry--legacy .Intertitre1,
.k-home-intro .Intertitre,
.k-home-intro .Intertitre1 {
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  color: #004488;
  text-shadow: 1px 1px 2px rgba(204,204,204,1);
}
.k-entry--legacy p,
.k-home-intro p {
  margin: 1em 0;
}
.k-entry--legacy .Letrine,
.k-entry--legacy .Letrine1,
.k-entry--legacy .Letrine11,
.k-entry--legacy .Letrine12,
.k-entry--legacy .Letrine-3,
.k-entry--legacy .Letrine2,
.k-entry--legacy .Letrine21,
.k-home-intro .Letrine,
.k-home-intro .Letrine1,
.k-home-intro .Letrine11,
.k-home-intro .Letrine12,
.k-home-intro .Letrine-3,
.k-home-intro .Letrine2,
.k-home-intro .Letrine21 {
  display: inline-block;
  margin: 0 .11em 0 0;
  vertical-align: -.08em;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 2.05em;
  font-weight: normal;
  line-height: .82;
  color: #800000;
  text-shadow: none;
}
.k-entry--legacy .Letrine span[style*="margin-left"],
.k-entry--legacy .Letrine1 span[style*="margin-left"],
.k-entry--legacy .Letrine11 span[style*="margin-left"],
.k-entry--legacy .Letrine12 span[style*="margin-left"],
.k-entry--legacy .Letrine-3 span[style*="margin-left"],
.k-entry--legacy .Letrine2 span[style*="margin-left"],
.k-entry--legacy .Letrine21 span[style*="margin-left"],
.k-home-intro .Letrine span[style*="margin-left"],
.k-home-intro .Letrine1 span[style*="margin-left"],
.k-home-intro .Letrine11 span[style*="margin-left"],
.k-home-intro .Letrine12 span[style*="margin-left"],
.k-home-intro .Letrine-3 span[style*="margin-left"],
.k-home-intro .Letrine2 span[style*="margin-left"],
.k-home-intro .Letrine21 span[style*="margin-left"] {
  margin-left: 0 !important;
}
.k-family-rythme .k-entry--legacy .Letrine1,
.k-family-rythme .k-entry--legacy .Letrine12,
.k-family-rythme .k-home-intro .Letrine1,
.k-family-rythme .k-home-intro .Letrine12,
.k-family-home .k-home-intro .Letrine12 {
  color: #00336a;
}
.k-family-rythme .k-entry--legacy .Letrine,
.k-family-rythme .k-entry--legacy .Letrine11,
.k-family-rythme .k-entry--legacy .Letrine-3,
.k-family-rythme .k-entry--legacy .Letrine2,
.k-family-rythme .k-entry--legacy .Letrine21 {
  color: #6a0000;
}
.k-family-chant .k-entry--legacy .Letrine,
.k-family-chant .k-entry--legacy .Letrine1,
.k-family-chant .k-entry--legacy .Letrine11,
.k-family-chant .k-entry--legacy .Letrine12,
.k-family-chant .k-entry--legacy .Letrine-3,
.k-family-chant .k-entry--legacy .Letrine2,
.k-family-chant .k-entry--legacy .Letrine21 {
  font-size: 1.86em;
  color: #00336a;
}
.k-family-creole .k-entry--legacy .Letrine,
.k-family-creole .k-entry--legacy .Letrine1,
.k-family-creole .k-entry--legacy .Letrine11,
.k-family-creole .k-entry--legacy .Letrine12,
.k-family-creole .k-entry--legacy .Letrine-3,
.k-family-creole .k-entry--legacy .Letrine2,
.k-family-creole .k-entry--legacy .Letrine21 {
  color: #6a0000;
}
.k-entry--legacy .Letrine:has(img),
.k-entry--legacy .Letrine1:has(img),
.k-entry--legacy .Letrine11:has(img),
.k-entry--legacy .Letrine12:has(img),
.k-entry--legacy .Letrine-3:has(img),
.k-entry--legacy .Letrine2:has(img),
.k-entry--legacy .Letrine21:has(img) {
  display: inline;
  margin-right: 0;
  vertical-align: baseline;
  font-size: inherit;
  line-height: inherit;
}
.k-entry--legacy table,
.k-home-intro table {
  max-width: 100%;
}
.k-entry--legacy td,
.k-home-intro td {
  font-family: Arial, Helvetica, sans-serif;
  font-size: small;
  color: #434343;
}
.k-family-chant .k-legacy-shell {
  background: #fef8e6;
}
.k-family-chant .k-entry--legacy h1 {
  color: #003877;
}
.k-family-chant .k-entry--legacy {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: medium;
  color: #3a3a3a;
  text-align: justify;
}
.k-family-chant .k-entry--legacy table {
  border-collapse: separate;
  border-spacing: 2px;
  margin-right: auto;
  margin-left: auto;
  font-family: Arial, Helvetica, sans-serif;
  font-size: medium;
  text-align: center;
}
.k-family-chant .k-entry--legacy table[cellspacing="5"] {
  border-spacing: 5px;
}
.k-family-chant .k-entry--legacy td {
  font-family: Arial, Helvetica, sans-serif;
  font-size: small;
  color: #434343;
  text-align: justify;
  vertical-align: top;
}
.k-family-chant .k-entry--legacy td[style*="#000080"],
.k-family-chant .k-entry--legacy td[style*="000080"] {
  color: #000080;
}
.k-family-chant .k-entry--legacy td[style*="#000080"] a,
.k-family-chant .k-entry--legacy td[style*="000080"] a {
  color: #0072a8;
}
.k-family-chant .k-entry--legacy .Titre_Chant {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: italic;
  font-size: medium;
  text-align: center;
  color: #263844;
  font-weight: 700;
  line-height: 1.25;
}
.k-family-chant .k-entry--legacy td.Titre_Chant,
.k-family-chant .k-entry--legacy .Titre_Chant p,
.k-family-chant .k-entry--legacy .Titre_Chant span {
  font-family: Georgia, "Times New Roman", Times, serif;
  text-align: center;
}
.k-family-chant .k-entry--legacy td.Titre_Chant {
  background: #fff;
  padding: 12px 18px;
}
.k-family-chant .k-entry--legacy .Titre_Chant p {
  margin-right: auto;
  margin-left: auto;
  color: #263844;
  font-size: 1.08rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.28;
}
.k-family-chant .k-entry--legacy .Titre_Chant > span:first-child,
.k-family-chant .k-entry--legacy .Titre_Chant span[style*="#000080"],
.k-family-chant .k-entry--legacy .Titre_Chant span[style*="000080"] {
  color: #000080 !important;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(2rem, 4.4vw, 2.65rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.15;
}
.k-family-chant .k-entry--legacy .Titre_Chant strong,
.k-family-chant .k-entry--legacy p strong,
.k-family-chant .k-entry--legacy strong[style*="#7D0000"],
.k-family-chant .k-entry--legacy strong[style*="#7d0000"] {
  color: #7d0000 !important;
  font-weight: 700;
}
.k-family-chant .k-entry--legacy .Titre_Chant em[style*="#7D0000"],
.k-family-chant .k-entry--legacy .Titre_Chant em[style*="#7d0000"],
.k-family-chant .k-entry--legacy .Titre_Chant strong[style*="#7D0000"],
.k-family-chant .k-entry--legacy .Titre_Chant strong[style*="#7d0000"] {
  color: #7d0000 !important;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.16rem;
  font-weight: 700;
  font-style: italic;
}
.k-family-chant .k-entry--legacy .Titre_Chant span[style*="#7D0000"],
.k-family-chant .k-entry--legacy .Titre_Chant span[style*="#7d0000"],
.k-family-chant .k-entry--legacy .Titre_Chant p[style*="#7D0000"],
.k-family-chant .k-entry--legacy .Titre_Chant p[style*="#7d0000"] {
  color: #7d0000 !important;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.16rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.3;
}
.k-family-chant .k-entry--legacy .Titre_Chant span[style*="#666"],
.k-family-chant .k-entry--legacy .Titre_Chant em[style*="#666"] {
  color: #666 !important;
  font-weight: 400;
  font-style: normal;
}
.k-family-chant .k-entry--legacy .Titre_Chant span[style*="text-align: right"],
.k-family-chant .k-entry--legacy .Titre_Chant p[style*="text-align: right"] {
  display: block;
  color: #0000a0 !important;
  font-size: large;
  text-align: right !important;
}
.k-page-kaladja .k-entry--legacy .k-hybrid-chant {
  margin: 1.5em auto 2em;
}
.k-page-kaladja .k-entry--legacy .Titre_Chant,
.k-page-kaladja .k-entry--legacy .k-hybrid-chant td,
.k-page-kaladja .k-entry--legacy .k-hybrid-chant .Titre_Chant {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: medium;
  font-style: italic;
  text-align: center;
}
.k-page-kaladja .k-entry--legacy .Titre_Chant p,
.k-page-kaladja .k-entry--legacy .k-hybrid-chant p {
  text-align: center;
}
.k-page-kaladja .k-entry--legacy .Titre_Chant p[align="left"],
.k-page-kaladja .k-entry--legacy .k-hybrid-chant p[align="left"] {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}
.k-family-creole .k-legacy-shell {
  background: #fef8e6;
}
.k-family-creole .k-entry--legacy h1,
.k-family-creole .k-entry--legacy .TitreCreole {
  color: #770000;
}
.k-family-creole .k-entry--legacy .Intertitre1 {
  color: #004a00;
}
.k-footer {
  margin: 0;
  color: #000;
  background: transparent;
}
.k-footer__ornament {
  display: none;
}
.k-footer__visual {
  min-height: 305px;
  background: url("../img/picture-foot-original.jpg") left top/100% auto no-repeat;
}
.k-footer__inner {
  max-width: none;
  padding: 0 1rem .35rem;
  display: flex;
  justify-content: center;
  gap: .35rem;
  color: #000;
  font-family: "Times New Roman", Times, serif;
  font-size: 1rem;
}
.k-footer__inner p {
  margin: 0;
}
.k-footer__links {
  display: flex;
  gap: .35rem;
  margin: 0;
  padding: 0;
}
.k-footer__links li + li::before {
  content: "|";
  margin-right: .35rem;
  color: #000;
}
.k-footer a {
  color: #000;
  padding: 0;
}
.k-archive-header {
  padding: 42px 95px 18px;
}
.k-listing {
  padding: 0 95px 42px;
}
.k-card {
  border-radius: 0;
  border-color: #c9b990;
}
.k-card h2 {
  color: #800000;
}
.k-dictionary-hero,
.k-dictionary-grid {
  width: auto;
  margin-left: 95px;
  margin-right: 95px;
}

@media (max-width: 1120px) {
  .k-legacy-shell {
    width: calc(100% - 16px);
    margin-top: 8px;
    border-radius: 18px;
  }
  .k-banner-link {
    height: clamp(150px, 25.6vw, 270px);
    border-radius: 17px 17px 0 0;
  }
  .k-header {
    min-height: calc(clamp(150px, 25.6vw, 270px) + 38px);
  }
  .k-top-leafs {
    left: -18px;
    top: -42px;
    transform: scale(.72);
    transform-origin: top left;
  }
  .k-nav__list {
    max-width: calc(100% - 36px);
  }
  .k-nav__list a,
  .k-nav__list > li > a,
  .k-nav__trigger {
    font-size: clamp(.78rem, 1.9vw, 1rem);
    padding: .5em .55em;
  }
  .k-entry--legacy,
  .k-home-intro,
  .k-archive-header,
  .k-listing {
    padding-left: clamp(1rem, 6vw, 95px);
    padding-right: clamp(1rem, 6vw, 98px);
  }
  .k-dictionary-hero,
  .k-dictionary-grid {
    margin-left: clamp(1rem, 6vw, 95px);
    margin-right: clamp(1rem, 6vw, 95px);
  }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
  .k-legacy-shell {
    width: 100%;
    margin: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    overflow: hidden;
  }
  .k-top-leafs {
    display: none;
  }
  .k-header {
    min-height: auto;
  }
  .k-banner-link {
    height: clamp(92px, 31vw, 150px);
    background-size: contain;
    background-position: center top;
    border-radius: 0;
  }
  .k-header__inner {
    display: block;
  }
  .k-nav-toggle {
    display: inline-block;
    width: auto;
    height: auto;
    margin: .4rem 0 .6rem 0;
    padding: .55rem .85rem;
    border: 1px solid #003877;
    border-radius: 8px;
    background: #003877;
    text-align: left;
    white-space: nowrap;
  }
  .k-nav-toggle span[aria-hidden] {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 2px;
    margin: 0;
    background: #fff;
    box-shadow: 0 6px 0 #fff, 0 -6px 0 #fff;
  }
  .k-nav-toggle::after {
    content: "Menu";
    display: inline-block;
    vertical-align: middle;
    margin-left: .6rem;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
  }
  .k-nav {
    display: none;
  }
  .k-nav.is-open {
    display: block;
  }
  .k-nav__list {
    display: block;
    width: calc(100% - 2rem);
    max-width: none;
  }
  .k-nav__submenu,
  .k-nav__submenu .k-nav__submenu {
    position: static;
    display: block;
    width: auto;
    max-width: none;
    padding-left: 1rem;
  }
  .k-nav-search > .k-nav__submenu {
    width: auto;
    min-width: 0;
    padding: .7rem;
  }
  .k-nav-search .k-menu-search-form {
    max-width: 100%;
  }
  .k-entry--legacy h1,
  .k-home-intro h1,
  .k-entry--legacy .TitreCreole {
    font-size: clamp(1.85rem, 9vw, 2.55rem) !important;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }
  .k-entry--legacy h1[style],
  .k-home-intro h1[style] {
    font-size: clamp(1.45rem, 8vw, 2.05rem) !important;
  }
  .k-entry--legacy,
  .k-home-intro {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 2rem 1.25rem;
    text-align: left;
    overflow-wrap: break-word;
  }
  .k-entry--legacy > *,
  .k-home-intro > * {
    max-width: 100%;
  }
  .k-entry--legacy p,
  .k-home-intro p {
    text-align: left;
  }
  .k-entry--legacy h1,
  .k-home-intro h1,
  .k-entry--legacy .TitreCreole {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    text-align: center !important;
  }
  .k-entry--legacy h1,
  .k-home-intro h1 {
    font-size: clamp(1.55rem, 7vw, 2rem) !important;
  }
  .k-entry--legacy h1[style],
  .k-home-intro h1[style] {
    font-size: clamp(1.28rem, 6.4vw, 1.7rem) !important;
  }
  .k-entry--legacy table,
  .k-home-intro table {
    display: block;
    width: 100% !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .k-entry--legacy img[align],
  .k-home-intro img[align] {
    float: none;
    display: block;
    margin: .75rem auto;
  }
  .k-footer__visual {
    min-height: 130px;
  }
}

/* --- Introduction sur mobile : police Lora (lisibilité), distincte du reste
   du site (qui garde Georgia). Desktop inchangé : Lora n'est appliquée — et
   donc chargée — que sous 820 px. --- */
@media (max-width: 820px) {
  .k-home-intro,
  .k-home-intro p,
  .k-home-intro li,
  .k-home-intro span,
  .k-home-intro td {
    font-family: "Lora", Georgia, "Times New Roman", serif !important;
  }
  .k-home-intro p,
  .k-home-intro li {
    font-size: 1.12rem !important;
    line-height: 1.72 !important;
    color: #14304e !important;        /* bleu nuit plus dense = meilleur contraste */
    letter-spacing: normal;
  }
  /* La lettrine d'attaque reste proportionnée au texte agrandi, en Lora. */
  .k-home-intro .Letrine,
  .k-home-intro .Letrine1,
  .k-home-intro .Letrine11,
  .k-home-intro .Letrine12,
  .k-home-intro .Letrine2,
  .k-home-intro .Letrine21,
  .k-home-intro .Letrine-3 {
    font-family: "Lora", Georgia, serif !important;
    line-height: 1 !important;
  }
}
