/* =========================================================
   Institut Al-Fayrouz — Feuille de styles principale
   Palette : crème & or, typographies Cinzel / Cormorant / Mulish
   ========================================================= */

/* ---------- Variables ---------- */
:root {
    --paper:      #faf6ef;
    --paper-2:    #f3ece0;
    --ink:        #25201a;
    --ink-soft:   #5a5046;
    --gold:       #c19a4f;
    --gold-deep:  #b88a3e;
    --gold-dark:  #8a6b2c;
    --line:       rgba(193, 154, 79, .28);
    --dark:       #1d1812;
    --dark-2:     #2a231a;
    --white:      #ffffff;
    --radius:     18px;
    --radius-sm:  12px;
    --shadow:     0 18px 50px -24px rgba(40, 30, 12, .45);
    --shadow-sm:  0 10px 28px -18px rgba(40, 30, 12, .4);
    --maxw:       1180px;
    --serif:      'Cormorant Garamond', Georgia, serif;
    --display:    'Cinzel', serif;
    --sans:       'Mulish', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
svg { display: block; }

/* ---------- Layout helpers ---------- */
.wrap {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: 24px;
}

.section-pad { padding: clamp(64px, 9vw, 120px) 0; }

.pattern-bg {
    position: relative;
    background-color: var(--paper-2);
    background-image:
        radial-gradient(circle at 1px 1px, rgba(193, 154, 79, .14) 1.4px, transparent 0);
    background-size: 26px 26px;
}

/* ---------- Eyebrows & section heads ---------- */
.eyebrow {
    display: inline-block;
    font-family: var(--sans);
    font-weight: 700;
    font-size: .74rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 16px;
    position: relative;
    padding-left: 34px;
}
.eyebrow::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    width: 26px; height: 1.5px;
    background: var(--gold);
    transform: translateY(-50%);
}

.section-head {
    max-width: 640px;
    margin: 0 auto clamp(40px, 5vw, 64px);
    text-align: center;
}
.section-head .eyebrow { padding-left: 0; }
.section-head .eyebrow::before { display: none; }

.section-title,
.section-head h2 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.12;
    color: var(--ink);
    letter-spacing: -.01em;
}

.section-sub {
    margin-top: 16px;
    font-size: 1.12rem;
    color: var(--ink-soft);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-weight: 700;
    font-size: .95rem;
    line-height: 1;
    padding: 14px 24px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
    white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
    color: #fff;
    box-shadow: 0 12px 26px -12px rgba(184, 138, 62, .7);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -14px rgba(184, 138, 62, .8); }

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-2px); }

.btn-light {
    background: var(--ink);
    color: #fff;
    width: 100%;
    justify-content: center;
}
.btn-light:hover { background: var(--gold-deep); transform: translateY(-2px); }

/* ---------- Reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 246, 239, .85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled {
    box-shadow: 0 8px 30px -18px rgba(40, 30, 12, .5);
    background: rgba(250, 246, 239, .96);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-block: 14px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img {
    width: 46px; height: 46px;
    border-radius: 50%;
    object-fit: contain;
    border: 1.5px solid var(--line);
    background: var(--paper-2);
}
.brand-name {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.18rem;
    letter-spacing: .04em;
    line-height: 1;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.brand-name small {
    font-family: var(--sans);
    font-weight: 600;
    font-size: .62rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold-deep);
}

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav > a:not(.btn) {
    font-weight: 600;
    font-size: .95rem;
    color: var(--ink-soft);
    position: relative;
    transition: color .2s ease;
}
.main-nav > a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width .25s ease;
}
.main-nav > a:not(.btn):hover { color: var(--ink); }
.main-nav > a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 42px; height: 42px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 20px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}

/* =========================================================
   HERO
   ========================================================= */
.hero { padding: clamp(56px, 8vw, 104px) 0 clamp(64px, 9vw, 120px); }
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: clamp(40px, 6vw, 80px);
}
.hero-copy h1 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(2.4rem, 5.2vw, 4rem);
    line-height: 1.08;
    letter-spacing: -.015em;
    margin-bottom: 22px;
}
.hero-copy h1 em {
    font-style: italic;
    color: var(--gold-deep);
}
.lede {
    font-size: 1.18rem;
    color: var(--ink-soft);
    max-width: 540px;
    margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero medallion */
.hero-visual { display: flex; justify-content: center; }
.hero-medallion {
    position: relative;
    width: min(380px, 80vw);
    aspect-ratio: 1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 38%, rgba(255,255,255,.7), transparent 60%),
        linear-gradient(150deg, var(--paper) 0%, var(--paper-2) 100%);
    border: 1px solid var(--line);
    box-shadow: var(--shadow), inset 0 0 0 10px rgba(255,255,255,.5);
}
.hero-medallion::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    border: 1.5px dashed rgba(193, 154, 79, .4);
}
.hero-medallion > img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    border-radius: 50%;
}
.hero-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 11px;
    background: #fff;
    padding: 11px 16px;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
}
.hero-badge svg { width: 24px; height: 24px; color: var(--gold-deep); flex: 0 0 auto; }
.hero-badge b { display: block; font-size: .92rem; color: var(--ink); }
.hero-badge span { display: block; font-size: .76rem; color: var(--ink-soft); }
.hero-badge.b1 { top: 8%; left: -6%; }
.hero-badge.b2 { bottom: 10%; right: -8%; }

/* =========================================================
   APPROCHE / FEATURES
   ========================================================= */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.feature {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px 30px;
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-ico {
    display: grid;
    place-items: center;
    width: 54px; height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(193,154,79,.16), rgba(193,154,79,.04));
    color: var(--gold-deep);
    margin-bottom: 22px;
}
.feature-ico svg { width: 26px; height: 26px; }
.feature h3 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.feature p { color: var(--ink-soft); font-size: 1rem; }

/* =========================================================
   PROGRAMMES
   ========================================================= */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
.program {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 30px;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.program:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--gold); }
.program-num {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 50px; height: 50px;
    border-radius: 50%;
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--gold-deep);
    background: linear-gradient(135deg, rgba(193,154,79,.18), rgba(193,154,79,.05));
    border: 1px solid var(--line);
}
.program h3 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 6px;
    line-height: 1.2;
}
.program p { color: var(--ink-soft); font-size: .98rem; }

/* =========================================================
   COURS / CLASSES
   ========================================================= */
.classes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.class-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 28px;
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
}
.class-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.class-tag {
    align-self: flex-start;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: rgba(193, 154, 79, .12);
    border: 1px solid var(--line);
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 18px;
}
.class-card h3 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 1.15;
    margin-bottom: 10px;
}
.class-card .desc { color: var(--ink-soft); font-size: .98rem; margin-bottom: 18px; }
.class-meta {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--line);
}
.class-meta li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    color: var(--ink-soft);
}
.class-meta svg { width: 18px; height: 18px; color: var(--gold-deep); flex: 0 0 auto; }
.class-price {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.9rem;
    color: var(--ink);
    margin-bottom: 22px;
}
.class-price span {
    font-family: var(--sans);
    font-weight: 600;
    font-size: .82rem;
    color: var(--ink-soft);
}
.class-card .wa { margin-top: auto; }

/* =========================================================
   TARIFS / PRICING
   ========================================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
}
.tier {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 38px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
}
.tier:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tier.featured {
    background: linear-gradient(165deg, var(--dark) 0%, var(--dark-2) 100%);
    color: #fff;
    border-color: var(--gold-deep);
    transform: scale(1.04);
}
.tier.featured:hover { transform: scale(1.04) translateY(-6px); }
.tier-flag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
    padding: 7px 18px;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}
.tier h3 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.tier .price {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 3rem;
    line-height: 1;
    color: var(--gold-deep);
}
.tier.featured .price { color: var(--gold); }
.tier .price small {
    font-family: var(--sans);
    font-weight: 600;
    font-size: .82rem;
    color: inherit;
    opacity: .7;
}
.tier .per {
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin: 14px 0 16px;
}
.tier.featured .per { color: var(--gold); }
.tier p {
    font-size: .98rem;
    color: var(--ink-soft);
}
.tier.featured p { color: rgba(255, 255, 255, .82); }

/* =========================================================
   PROFESSEURS
   ========================================================= */
.teachers-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(40px, 6vw, 72px);
    align-items: center;
}
.teachers-copy h2 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(1.9rem, 3.6vw, 2.7rem);
    line-height: 1.14;
    margin-bottom: 18px;
}
.teachers-copy > p {
    color: var(--ink-soft);
    font-size: 1.08rem;
    margin-bottom: 28px;
}
.teachers-points { display: flex; flex-direction: column; gap: 18px; }
.teachers-points li { display: flex; gap: 16px; align-items: flex-start; }
.tick {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
    color: #fff;
}
.tick svg { width: 16px; height: 16px; }
.teachers-points b { display: block; font-size: 1.05rem; color: var(--ink); margin-bottom: 2px; }
.teachers-points span > b + * { color: var(--ink-soft); }
.teachers-points li > span:last-child { color: var(--ink-soft); font-size: .98rem; }

.teachers-visual { display: flex; justify-content: center; }
.teachers-visual img {
    width: min(360px, 78vw);
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 50%;
    padding: 26px;
    background:
        radial-gradient(circle at 50% 40%, rgba(255,255,255,.7), transparent 60%),
        var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

/* =========================================================
   CITATION
   ========================================================= */
.quote-band {
    background: linear-gradient(165deg, var(--dark) 0%, var(--dark-2) 100%);
    color: #fff;
    text-align: center;
}
.quote-band .wrap { max-width: 820px; }
.quote-mark {
    display: block;
    font-family: var(--serif);
    font-size: 5rem;
    line-height: .6;
    color: var(--gold);
    margin-bottom: 10px;
}
.quote-band blockquote {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1.6rem, 3.4vw, 2.4rem);
    line-height: 1.35;
    color: #fff;
}
.quote-band cite {
    display: block;
    margin-top: 20px;
    font-family: var(--sans);
    font-style: normal;
    font-weight: 700;
    font-size: .92rem;
    letter-spacing: .08em;
    color: var(--gold);
}
/* Inline-styled add-ons (.quote-source / .quran-verse) render on this dark band */
.quote-band .quote-source { color: rgba(255, 255, 255, .65); }
.quote-band .quran-verse { border-top-color: rgba(193, 154, 79, .35); }
.quote-band .quran-verse .quran-fr { color: #fff; }
.quote-band .quran-verse cite { color: rgba(255, 255, 255, .7); margin-top: 0; letter-spacing: normal; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 5vw, 64px);
    align-items: start;
}
.contact-copy h2 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(1.9rem, 3.6vw, 2.6rem);
    line-height: 1.14;
    margin-bottom: 16px;
}
.contact-copy > p { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 28px; }
.contact-list { display: flex; flex-direction: column; gap: 20px; }
.contact-list li { display: flex; align-items: center; gap: 16px; }
.ci {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 46px; height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(193,154,79,.16), rgba(193,154,79,.04));
    color: var(--gold-deep);
    border: 1px solid var(--line);
}
.ci svg { width: 22px; height: 22px; }
.contact-list b { display: block; font-size: 1.02rem; color: var(--ink); }
.contact-list div span { display: block; font-size: .9rem; color: var(--ink-soft); }

.contact-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px 32px;
    box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 20px; }
.field label {
    display: block;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .04em;
    margin-bottom: 8px;
    color: var(--ink);
}
.field input,
.field textarea {
    width: 100%;
    font-family: var(--sans);
    font-size: 1rem;
    color: var(--ink);
    background: var(--paper);
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    resize: vertical;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.field input::placeholder,
.field textarea::placeholder { color: #a89c8a; }
.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(193, 154, 79, .18);
}
.field textarea.invalid { border-color: #d8553f; box-shadow: 0 0 0 3px rgba(216, 85, 63, .14); }
.err {
    display: none;
    margin-top: 8px;
    font-size: .85rem;
    color: #c5452f;
}
.err.show { display: block; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 4px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    background: linear-gradient(180deg, var(--dark) 0%, #16120c 100%);
    color: rgba(255, 255, 255, .72);
    padding: clamp(48px, 6vw, 72px) 0 32px;
}
.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img {
    width: 46px; height: 46px;
    border-radius: 50%;
    object-fit: contain;
    background: var(--paper-2);
    border: 1px solid rgba(193, 154, 79, .4);
}
.footer-brand .fn {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: .06em;
    color: #fff;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-links a {
    font-size: .92rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .72);
    transition: color .2s ease;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: .85rem;
}
.footer-bottom .quote-mini { color: rgba(255, 255, 255, .5); max-width: 480px; text-align: right; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-copy { order: 2; }
    .hero-visual { order: 1; }
    .hero-copy .eyebrow { padding-left: 0; }
    .hero-copy .eyebrow::before { display: none; }
    .lede { margin-inline: auto; }
    .hero-actions { justify-content: center; }
    .approach-grid,
    .classes-grid,
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .tier.featured { transform: none; }
    .tier.featured:hover { transform: translateY(-6px); }
    .teachers-grid,
    .contact-grid { grid-template-columns: 1fr; }
    .teachers-visual { order: -1; }
}

@media (max-width: 760px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        background: var(--paper);
        padding: 16px 24px 24px;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s ease, transform .25s ease;
    }
    .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .main-nav > a:not(.btn) { padding: 10px 0; }
    .main-nav .btn { justify-content: center; margin-top: 8px; }
    .programs-grid,
    .approach-grid,
    .classes-grid,
    .pricing-grid { grid-template-columns: 1fr; }
    .hero-badge.b1 { left: 0; }
    .hero-badge.b2 { right: 0; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom .quote-mini { text-align: center; }
}

@media (max-width: 420px) {
    .hero-badge { display: none; }
}
#cours.classes.pattern-bg {
    background-color: var(--dark); 
    background-image: radial-gradient(circle at 1px 1px, rgba(193, 154, 79, .08) 1.4px, transparent 0);
}

#cours .section-title, 
#cours .section-sub {
    color: var(--white);
}
