/* =====================================================================
   Oz-Être — feuille de style
   Palette issue du logo : verts forêt & feuillage, lumière dorée, crème.
   Ambiance : douce, naturelle, apaisante.
   ===================================================================== */

/* ---------- Variables ---------- */
:root {
    /* Palette turquoise issue du logo (les noms "forest/green/leaf" sont
       conservés en interne mais portent désormais les teintes teal). */
    --forest-900: #0b3a3f;   /* teal profond — hero, footer */
    --forest-800: #0f4a50;
    --forest-700: #147b82;   /* teal principal — titres, boutons, liens */
    --forest-600: #1a939a;
    --green-500:  #25a8ac;
    --leaf-400:   #34c6cd;   /* turquoise vif du logo */
    --leaf-300:   #7adcdd;
    --leaf-100:   #ddf5f4;

    --gold-600:   #c98a22;
    --gold-500:   #dfa238;
    --gold-400:   #ecc05a;
    --gold-200:   #f6dfa3;

    --cream:      #f7f5ef;
    --cream-deep: #eef1ec;
    --paper:      #fffefb;
    --ink:        #213032;
    --muted:      #566b6c;
    --line:       rgba(20, 123, 130, .16);

    --shadow-sm:  0 2px 10px rgba(11, 58, 63, .06);
    --shadow-md:  0 10px 30px rgba(11, 58, 63, .11);
    --shadow-lg:  0 24px 60px rgba(11, 58, 63, .17);

    --radius:     18px;
    --radius-lg:  28px;
    --maxw:       1120px;

    --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --sans:  "Nunito Sans", -apple-system, "Segoe UI", Roboto, sans-serif;

    --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset léger ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
    margin: 0;
    font-family: var(--sans);
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest-700); text-decoration-color: rgba(20,123,130,.3); text-underline-offset: 3px; }
a:hover { color: var(--forest-600); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; color: var(--forest-800); margin: 0 0 .5em; letter-spacing: .2px; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 500; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
h4 { font-size: 1.22rem; }
p  { margin: 0 0 1.15em; }
strong { color: var(--forest-800); }

::selection { background: var(--gold-200); color: var(--forest-900); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.section { padding-block: clamp(3.2rem, 7vw, 6rem); }
.section--tight { padding-block: clamp(2.2rem, 4vw, 3.5rem); }
.section--cream { background: var(--cream-deep); }
.section--paper { background: var(--paper); }
.section--forest { background: var(--forest-800); color: #eef3ea; }
.section--forest h2, .section--forest h3 { color: #fff; }
.narrow { max-width: 760px; margin-inline: auto; }
.measure { max-width: 68ch; }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 999;
    background: var(--forest-700); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Boutons ---------- */
.btn {
    --btn-bg: var(--forest-700);
    --btn-fg: #fff;
    display: inline-flex; align-items: center; gap: .5em;
    background: var(--btn-bg); color: var(--btn-fg);
    font-family: var(--sans); font-weight: 700; font-size: .98rem; letter-spacing: .2px;
    padding: .85em 1.6em; border-radius: 999px; border: 0; cursor: pointer;
    text-decoration: none; white-space: nowrap; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
    box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--btn-fg); }
.btn--gold { --btn-bg: linear-gradient(135deg, var(--gold-500), var(--gold-400)); --btn-fg: #3a2c08; }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--forest-700); box-shadow: inset 0 0 0 2px rgba(20,123,130,.38); }
.btn--ghost:hover { --btn-bg: rgba(20,123,130,.07); }
.btn--light { --btn-bg: #fff; --btn-fg: var(--forest-800); }
.btn--sm { padding: .6em 1.2em; font-size: .9rem; }
.btn--lg { padding: 1em 2em; font-size: 1.05rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }

/* ---------- Header / navigation ---------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(248, 244, 234, .82);
    backdrop-filter: saturate(150%) blur(12px);
    -webkit-backdrop-filter: saturate(150%) blur(12px);
    border-bottom: 1px solid var(--line);
}
.site-header .container { max-width: 1280px; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 84px; }
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 64px; width: auto; }
@media (max-width: 480px) { .brand__logo { height: 54px; } }

.main-nav__list { display: flex; align-items: center; gap: .12rem; list-style: none; margin: 0; padding: 0; }
.main-nav__link {
    display: inline-flex; align-items: center; height: 40px;
    padding: 0 .6rem; border-radius: 10px; white-space: nowrap;
    font-size: .9rem; font-weight: 600; color: var(--ink); text-decoration: none;
    transition: background .2s, color .2s;
}
.main-nav__link:hover { background: rgba(20,123,130,.08); color: var(--forest-700); }
.main-nav__link.is-active { color: var(--forest-700); background: rgba(20,123,130,.11); }
.main-nav__cta { margin-left: .3rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 10px; cursor: pointer; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--forest-800); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1200px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed; inset: 84px 0 auto 0;
        background: var(--cream); border-bottom: 1px solid var(--line);
        max-height: 0; overflow: hidden; transition: max-height .4s var(--ease);
        box-shadow: var(--shadow-md);
    }
    .main-nav.open { max-height: 85vh; overflow-y: auto; }
    .main-nav__list { flex-direction: column; align-items: stretch; gap: 0; padding: .6rem 1.1rem 1.4rem; }
    .main-nav__link { padding: .85rem .6rem; border-bottom: 1px solid var(--line); border-radius: 0; }
    .main-nav__cta { margin: 1rem 0 0; }
    .main-nav__cta .btn { width: 100%; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--forest-800); color: #f0f5ec; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.hero::after { /* voile dégradé pour la lisibilité */
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(160deg, rgba(11,58,63,.82) 0%, rgba(15,74,80,.68) 45%, rgba(7,42,46,.9) 100%);
}
.hero__inner { padding-block: clamp(4rem, 11vw, 8rem); position: relative; }
.hero__eyebrow {
    font-family: var(--serif); font-style: italic; font-size: 1.35rem; color: var(--gold-400);
    margin-bottom: 1rem; display: block;
}
.hero h1 { color: #fff; max-width: 18ch; text-shadow: 0 2px 30px rgba(0,0,0,.3); }
.hero__lead { font-size: 1.2rem; max-width: 56ch; color: #e3ecdf; margin-top: 1.2rem; }
.hero .btn-row { margin-top: 2rem; }
.hero__meta { margin-top: 2.2rem; font-size: .95rem; color: #cdddc6; display: flex; flex-wrap: wrap; gap: 1.2rem; }
.hero__meta span { display: inline-flex; align-items: center; gap: .4rem; }

/* ---------- Page header (pages internes) ---------- */
.page-hero { position: relative; background: var(--forest-800); color: #eef4ea; overflow: hidden; isolation: isolate; }
.page-hero::before {
    content: ""; position: absolute; inset: 0; z-index: -1; opacity: .9;
    background:
      radial-gradient(120% 120% at 85% -10%, rgba(52,198,205,.32), transparent 55%),
      radial-gradient(90% 90% at 0% 120%, rgba(223,162,56,.18), transparent 55%),
      linear-gradient(160deg, var(--forest-800), var(--forest-900));
}
.page-hero__inner { padding-block: clamp(2.8rem, 7vw, 5rem); }
.page-hero h1 { color: #fff; margin: 0; }
.page-hero__lead { font-size: 1.15rem; color: #dce7d6; max-width: 60ch; margin-top: .8rem; }
.breadcrumb { font-size: .85rem; color: #b9cdb0; margin-bottom: 1rem; }
.breadcrumb a { color: #d7e6cf; }

/* ---------- Eyebrow / titres de section ---------- */
.eyebrow {
    display: inline-block; font-family: var(--sans); font-weight: 700; font-size: .8rem;
    letter-spacing: .18em; text-transform: uppercase; color: var(--gold-600);
    margin-bottom: .8rem;
}
.section-head { max-width: 62ch; margin-bottom: 2.6rem; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Prose (corps de texte des pages) ---------- */
.prose { font-size: 1.08rem; }
.prose h2 { margin-top: 2.2em; }
.prose h3 { margin-top: 1.8em; color: var(--forest-700); }
.prose h4 { margin-top: 1.5em; color: var(--forest-700); font-size: 1.18rem; }
.prose ul { padding-left: 0; list-style: none; margin: 0 0 1.4em; }
.prose ul li {
    position: relative; padding-left: 1.9rem; margin-bottom: .65rem;
}
.prose ul li::before {
    content: ""; position: absolute; left: .25rem; top: .62em;
    width: .6rem; height: .6rem; border-radius: 50%;
    background: linear-gradient(135deg, var(--leaf-400), var(--green-500));
}
.prose blockquote {
    margin: 2rem 0; padding: 1.4rem 1.8rem; border-left: 4px solid var(--gold-400);
    background: var(--leaf-100); border-radius: 0 var(--radius) var(--radius) 0;
    font-family: var(--serif); font-size: 1.4rem; font-style: italic; color: var(--forest-800);
}

/* ---------- Grilles & cartes ---------- */
.grid { display: grid; gap: 1.6rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 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(--paper); border-radius: var(--radius); padding: 1.8rem;
    box-shadow: var(--shadow-sm); border: 1px solid var(--line);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__icon {
    width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
    background: linear-gradient(135deg, var(--leaf-100), var(--leaf-300));
    font-size: 1.6rem; margin-bottom: 1rem;
}
.card h3 { color: var(--forest-700); margin-bottom: .4rem; }
.card p:last-child { margin-bottom: 0; }
.card__link { font-weight: 700; text-decoration: none; display: inline-flex; gap: .3rem; margin-top: .6rem; }
.card__link::after { content: "→"; transition: transform .2s; }
.card:hover .card__link::after { transform: translateX(4px); }

/* Carte service avec image */
.service-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.service-card__img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.service-card__body { padding: 1.6rem 1.6rem 1.8rem; flex: 1; display: flex; flex-direction: column; }
.service-card__body .card__link { margin-top: auto; }

/* ---------- Split (texte + image) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 5vw, 4rem); align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; }
.split__media.framed { position: relative; }
.split__media.framed::before {
    content: ""; position: absolute; inset: -14px -14px auto auto; width: 70%; height: 70%;
    border: 2px solid var(--gold-400); border-radius: var(--radius-lg); z-index: -1;
}

/* ---------- Liste de "pour qui" / check ---------- */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: .8rem; }
.checklist li { position: relative; padding-left: 2.2rem; }
.checklist li::before {
    content: "✓"; position: absolute; left: 0; top: 0;
    width: 1.55rem; height: 1.55rem; border-radius: 50%; display: grid; place-items: center;
    background: var(--leaf-100); color: var(--forest-600); font-weight: 800; font-size: .85rem;
}

/* ---------- Bandeau d'appel (CTA) ---------- */
.cta-band { text-align: center; position: relative; overflow: hidden; isolation: isolate; }
.cta-band::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background:
      radial-gradient(80% 120% at 50% -20%, rgba(236,192,90,.22), transparent 60%),
      linear-gradient(160deg, var(--forest-700), var(--forest-900));
}
.cta-band { color: #eef4ea; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #d7e5d0; max-width: 52ch; margin-inline: auto; }

/* ---------- Tarifs ---------- */
.price-card { display: flex; flex-direction: column; border: 1px solid var(--line); }
.price-card--featured { border: 2px solid var(--gold-400); box-shadow: var(--shadow-md); position: relative; }
.price-card--featured::after {
    content: "Le plus complet"; position: absolute; top: 1.2rem; right: -2.6rem;
    transform: rotate(45deg); background: var(--gold-400); color: #3a2c08;
    font-size: .72rem; font-weight: 800; letter-spacing: .05em; padding: .3rem 3rem;
}
.price-card__head { margin-bottom: 1rem; }
.price-card__price { font-family: var(--serif); font-size: 2.6rem; color: var(--forest-700); line-height: 1; }
.price-card__price small { font-size: .9rem; color: var(--muted); font-family: var(--sans); }
.price-card__sub { color: var(--muted); font-size: .95rem; }
.price-card .checklist { margin: 1.2rem 0; }
.price-card .btn { margin-top: auto; }

.price-mini { display: flex; gap: 1rem; align-items: baseline; flex-wrap: wrap; padding: 1.1rem 0; border-bottom: 1px dashed var(--line); }
.price-mini:last-child { border-bottom: 0; }
.price-mini__amount { font-family: var(--serif); font-size: 1.6rem; color: var(--forest-700); white-space: nowrap; }

table.fees { width: 100%; border-collapse: collapse; margin-top: 1rem; }
table.fees td { padding: .55rem .4rem; border-bottom: 1px solid var(--line); }
table.fees td:last-child { text-align: right; font-weight: 700; color: var(--forest-700); white-space: nowrap; }

/* ---------- Témoignages ---------- */
.reviews-meta { text-align: center; margin-bottom: 2.5rem; }
.reviews-meta .stars { color: var(--gold-500); font-size: 1.5rem; letter-spacing: .15em; }
.masonry { columns: 3 280px; column-gap: 1.5rem; }
@media (max-width: 640px) { .masonry { columns: 1; } }
.review {
    break-inside: avoid; background: var(--paper); border-radius: var(--radius);
    padding: 1.5rem 1.6rem; margin-bottom: 1.5rem; box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
}
.review__stars { color: var(--gold-500); letter-spacing: .12em; margin-bottom: .5rem; }
.review__text { font-size: .98rem; line-height: 1.7; margin: 0 0 1rem; }
.review__author { display: flex; align-items: center; gap: .7rem; }
.review__avatar {
    width: 40px; height: 40px; border-radius: 50%; flex: none;
    background: linear-gradient(135deg, var(--leaf-400), var(--green-500));
    color: #fff; display: grid; place-items: center; font-weight: 800; font-family: var(--serif); font-size: 1.1rem;
}
.review__name { font-weight: 700; color: var(--forest-800); }
.review__date { font-size: .8rem; color: var(--muted); }

/* ---------- Formulaire ---------- */
.form { display: grid; gap: 1.1rem; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 620px) { .form .row { grid-template-columns: 1fr; } }
.field label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: .35rem; color: var(--forest-800); }
.field input, .field textarea, .field select {
    width: 100%; font: inherit; padding: .8rem 1rem; border-radius: 12px;
    border: 1.5px solid var(--line); background: #fff; color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
    outline: none; border-color: var(--green-500); box-shadow: 0 0 0 4px rgba(37,168,172,.18);
}
.field--hp { position: absolute; left: -9999px; } /* honeypot */
.form__note { font-size: .85rem; color: var(--muted); }

.alert { padding: 1rem 1.2rem; border-radius: 12px; margin-bottom: 1.4rem; font-weight: 600; }
.alert--ok { background: var(--leaf-100); color: var(--forest-800); border: 1px solid var(--leaf-300); }
.alert--err { background: #fbe9e4; color: #8a3a22; border: 1px solid #f0c4b6; }

.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { background: var(--forest-800); color: #eaf2e5; border-radius: var(--radius-lg); padding: 2rem; }
.contact-info h2 { color: #fff; }
.contact-info a { color: var(--gold-400); }
.contact-info .info-line { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: 1.1rem; }
.contact-info .info-line .ic { font-size: 1.3rem; }

/* ---------- Badges de confiance ---------- */
.trust { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: center; }
.trust img { height: 64px; width: auto; filter: saturate(.9); opacity: .9; }

/* ---------- Bandeau événement ---------- */
.event {
    border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.6rem);
    background: linear-gradient(135deg, var(--leaf-100), #fbf3df);
    border: 1px solid var(--leaf-300);
}
.event__tag { display: inline-block; background: var(--gold-400); color: #3a2c08; font-weight: 800; font-size: .8rem; padding: .3rem .8rem; border-radius: 999px; margin-bottom: 1rem; }

/* ---------- Newsletter ---------- */
.newsletter { display: grid; grid-template-columns: auto 1fr; gap: 1.6rem; align-items: center; }
@media (max-width: 620px) { .newsletter { grid-template-columns: 1fr; text-align: center; } }
.newsletter__qr { width: 140px; height: 140px; border-radius: 14px; background: #fff; padding: 8px; box-shadow: var(--shadow-sm); }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-900); color: #c9d8c1; margin-top: 0; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.3fr; gap: 2rem; padding-block: 3.4rem; }
@media (max-width: 780px) { .site-footer__grid { grid-template-columns: 1fr; gap: 1.8rem; } }
.site-footer__logo-chip { display: inline-block; background: #fff; border-radius: 16px; padding: .9rem 1.1rem; box-shadow: var(--shadow-sm); margin-bottom: 1.1rem; }
.site-footer__logo-chip img { height: 96px; width: auto; display: block; }
.site-footer__baseline { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: #d9e6d1; max-width: 30ch; }
.site-footer__title { font-family: var(--sans); font-size: .82rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 1rem; }
.site-footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.site-footer__links a { color: #c9d8c1; text-decoration: none; }
.site-footer__links a:hover { color: #fff; }
.site-footer__contact { font-style: normal; line-height: 1.9; }
.site-footer__contact a { color: #c9d8c1; text-decoration: none; }
.site-footer__contact a:hover { color: var(--gold-400); }
.site-footer__note { font-size: .85rem; color: #93a78b; margin-top: 1rem; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); }
.site-footer__bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; padding-block: 1.2rem; font-size: .85rem; color: #93a78b; }
.site-footer__bottom a { color: #93a78b; text-decoration: none; }
.site-footer__bottom a:hover { color: #fff; }

/* ---------- Animations d'apparition ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ---------- Divers ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.lead { font-size: 1.2rem; color: var(--muted); }
.tag-row { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0; }
.tag { background: var(--leaf-100); color: var(--forest-700); border-radius: 999px; padding: .35rem .9rem; font-size: .85rem; font-weight: 600; }
.divider-leaf { text-align: center; color: var(--leaf-400); font-size: 1.4rem; margin: 1.5rem 0; }
