@import url("assets/fonts/fonts.css");
/*
  Magalie Joly Allaitement 64 — styles globaux
  Palette à modifier ici si nécessaire.
*/
:root {
  --sage: #7C9188;
  --sage-deep: #52675f;
  --sage-pale: #edf1ee;
  --powder: #EBCDCD;
  --powder-pale: #f9eeee;
  --grey: #CCCCCC;
  --cream: #FAF7F2;
  --charcoal: #3F4442;
  --white: #FFFFFF;
  --line: rgba(82, 103, 95, 0.18);
  --shadow: 0 18px 45px rgba(63, 68, 66, 0.10);
  --shadow-soft: 0 8px 26px rgba(63, 68, 66, 0.08);
  --radius: 1.5rem;
  --radius-sm: 1rem;
  --wrap: min(1120px, calc(100% - 2.5rem));
  --ease: cubic-bezier(.23, 1, .32, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--charcoal); font-family: "Montserrat", Arial, sans-serif; font-size: 16px; line-height: 1.65; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2px; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--powder); color: var(--charcoal); }

.skip-link { position: fixed; left: 1rem; top: -4rem; z-index: 100; padding: .8rem 1rem; background: var(--charcoal); color: white; border-radius: .6rem; font-weight: 700; }
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 3px solid var(--sage-deep); outline-offset: 3px; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(250,247,242,.94); backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 24px rgba(63,68,66,.06); }
.header-inner { width: var(--wrap); min-height: 78px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--charcoal); min-width: 0; }
.brand-logo { width: 116px; height: 116px; margin: -19px 0; flex: 0 0 auto; display: block; object-fit: contain; border-radius: .7rem; }
.brand-mark { width: 41px; height: 41px; display: grid; place-items: center; flex: 0 0 auto; border: 1px dashed var(--sage); border-radius: 50%; color: var(--sage-deep); font: italic 700 1.12rem "Cormorant Garamond", serif; }
.brand-copy { display: grid; line-height: 1.08; }
.brand-copy strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.42rem; font-weight: 700; letter-spacing: -.02em; }
.brand-copy span { font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--sage-deep); margin-top: .22rem; }
.nav-toggle { width: 46px; height: 46px; display: inline-grid; place-content: center; gap: 5px; border: 1px solid var(--line); border-radius: .8rem; background: var(--white); color: var(--charcoal); }
.nav-toggle i { width: 20px; height: 1.5px; background: currentColor; display: block; transition: transform .2s var(--ease), opacity .2s var(--ease); }
.site-nav { display: none; }
.site-nav.open { display: flex; position: absolute; left: 0; right: 0; top: 78px; padding: 1rem 1.25rem 1.35rem; flex-direction: column; gap: .2rem; background: var(--cream); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.site-nav a { padding: .72rem .35rem; text-decoration: none; font-size: .82rem; font-weight: 700; letter-spacing: .02em; }
.site-nav a[aria-current="page"] { color: var(--sage-deep); }
.nav-cta { margin-top: .4rem; }

.wrap { width: var(--wrap); margin-inline: auto; }
.section { padding: 4.5rem 0; position: relative; }
.section-sm { padding: 3rem 0; }
.eyebrow { display: inline-flex; align-items: center; gap: .55rem; margin: 0 0 .7rem; color: var(--sage-deep); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; }
h1, h2, h3, h4 { margin: 0; color: var(--charcoal); font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; line-height: 1.03; letter-spacing: -.028em; }
h1 { font-size: clamp(2.75rem, 8.5vw, 5.65rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.7rem); }
h3 { font-size: clamp(1.5rem, 3.3vw, 2.1rem); }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.02rem, 2vw, 1.24rem); line-height: 1.7; color: #505856; }
.muted { color: #66706c; }
.small { font-size: .84rem; }
.text-center { text-align: center; }
.text-center .eyebrow { justify-content: center; }
.stack > * + * { margin-top: 1rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }
.btn { min-height: 49px; padding: .78rem 1.1rem; display: inline-flex; align-items: center; justify-content: center; gap: .5rem; border: 1px solid transparent; border-radius: 999px; text-decoration: none; font-size: .78rem; font-weight: 700; letter-spacing: .02em; text-align: center; transition: transform .16s var(--ease), box-shadow .16s var(--ease), background .16s var(--ease); }
.btn:hover { transform: translateY(-2px); text-decoration: none; box-shadow: 0 8px 20px rgba(63,68,66,.12); }
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--sage-deep); color: var(--white); }
.hero .btn-primary { min-height: 58px; padding-inline: 1.45rem; font-size: .86rem; box-shadow: 0 10px 24px rgba(67, 91, 81, .22); }
.btn-secondary { background: var(--powder); color: var(--charcoal); }
.btn-light { background: var(--white); color: var(--sage-deep); }
.btn-outline { border-color: var(--sage); color: var(--sage-deep); background: transparent; }
.btn-sm { min-height: 41px; padding: .6rem .9rem; font-size: .7rem; }

.botanical { position: absolute; width: 150px; height: 190px; opacity: .52; pointer-events: none; }
.botanical svg { width: 100%; height: 100%; }
.botanical path { stroke: var(--sage); stroke-width: 1.2; fill: none; stroke-linecap: round; }
.botanical.right { right: 0; top: -3rem; }
.botanical.left { left: -2rem; bottom: -2.5rem; transform: scaleX(-1); }

.hero { position: relative; display: flex; flex-direction: column; overflow: hidden; background: var(--cream); }
.hero-image { order: 2; width: 100%; height: 360px; object-fit: cover; object-position: 82% center; }
.hero-inner { order: 1; width: var(--wrap); margin-inline: auto; padding: 3.5rem 0 4rem; }
.hero-content { max-width: 670px; }
.hero h1 { max-width: 650px; }
.hero .lead { max-width: 570px; margin-top: 1.15rem; }
.tagline { margin-top: 1.4rem; color: var(--sage-deep); font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(1.35rem, 2.7vw, 1.8rem); font-style: italic; line-height: 1.2; }
.hero-notes { margin-top: 1.7rem; display: flex; flex-wrap: wrap; gap: .7rem 1.1rem; color: #535d59; font-size: .79rem; font-weight: 600; }
.hero-notes span { display: inline-flex; align-items: center; gap: .35rem; }
.hero-notes svg { color: var(--sage-deep); }

.intro-grid, .about-preview, .contact-grid, .two-col { display: grid; gap: 2rem; }
.feature-panel { padding: 2rem; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.feature-panel .quote-mark { color: var(--powder); font: 700 6rem/.5 "Cormorant Garamond", serif; }
.quote { margin: .55rem 0 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(1.55rem, 3vw, 2.25rem); line-height: 1.18; }

.card-grid { display: grid; gap: 1rem; }
.soft-card { padding: 1.45rem; background: var(--white); border: 1px solid rgba(82,103,95,.08); border-radius: var(--radius-sm); box-shadow: 0 4px 18px rgba(63,68,66,.04); }
.soft-card h3 { margin-bottom: .45rem; }
.soft-card p:last-child { margin-bottom: 0; }
.icon-disc { width: 43px; height: 43px; display: grid; place-items: center; margin-bottom: 1rem; border-radius: 50%; background: var(--sage-pale); color: var(--sage-deep); }
.icon-disc.pink { background: var(--powder-pale); }
.icon-disc svg, .list-check svg { width: 21px; height: 21px; stroke-width: 1.7; }

.when-grid { display: grid; gap: .75rem; }
.when-item { padding: 1rem; display: flex; align-items: start; gap: .75rem; background: var(--white); border-radius: 1rem; }
.when-item span { width: 25px; height: 25px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; color: var(--sage-deep); background: var(--sage-pale); font: 600 1rem "Cormorant Garamond", serif; }
.when-item p { margin: 0; font-size: .88rem; line-height: 1.45; }

.pink-section { background: var(--powder-pale); }
.sage-section { background: var(--sage-pale); }
.sos-panel { padding: clamp(1.8rem, 5vw, 3.8rem); position: relative; overflow: hidden; color: var(--white); background: var(--sage-deep); border-radius: 2rem; }
.sos-panel h2, .sos-panel p { color: var(--white); }
.sos-panel .eyebrow { color: #e7efe9; }
.sos-panel .eyebrow::before { background: #e7efe9; }
.sos-panel .disclaimer { padding: .9rem 1rem; margin-top: 1.25rem; max-width: 850px; background: rgba(255,255,255,.12); border-left: 2px solid var(--powder); font-size: .84rem; }
.sos-panel .botanical { right: -2rem; bottom: -4rem; top: auto; opacity: .35; }
.sos-panel .botanical path { stroke: #e5eeea; }

.timeline { display: grid; gap: .8rem; counter-reset: steps; }
.step { position: relative; padding: 1.1rem 1.15rem 1.1rem 4.1rem; background: var(--white); border-radius: 1rem; }
.step::before { counter-increment: steps; content: counter(steps, decimal-leading-zero); position: absolute; left: 1rem; top: 1rem; color: var(--sage-deep); font: 600 1.55rem/1 "Cormorant Garamond", serif; }
.step h3 { font-size: 1.32rem; margin-bottom: .15rem; }
.step p { margin: 0; font-size: .84rem; }

.photo-frame { position: relative; padding: .6rem; background: var(--white); border-radius: 12rem 12rem 1.4rem 1.4rem; box-shadow: var(--shadow); }
.photo-frame img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 11.4rem 11.4rem 1rem 1rem; }
.photo-placeholder { width: 100%; aspect-ratio: 4/5; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .65rem; border: 1px dashed var(--sage); border-radius: 11.4rem 11.4rem 1rem 1rem; color: var(--sage-deep); background: linear-gradient(150deg, #f7fbf8, var(--powder-pale)); text-align: center; padding: 1.5rem; }
.photo-placeholder svg { width: 50px; height: 50px; opacity: .72; }
.photo-placeholder strong { font-family: "Cormorant Garamond", serif; font-size: 1.35rem; }
.photo-placeholder span { max-width: 200px; font-size: .72rem; line-height: 1.45; }

.service-card { display: flex; flex-direction: column; padding: 1.5rem; background: var(--white); border-radius: var(--radius-sm); box-shadow: 0 5px 20px rgba(63,68,66,.05); text-decoration: none; transition: transform .18s var(--ease), box-shadow .18s var(--ease); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); text-decoration: none; }
.service-card .service-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin: .8rem 0; color: var(--sage-deep); }
.service-card .price { font: 600 1.7rem/1 "Cormorant Garamond", serif; }
.service-card p { color: #59625f; font-size: .86rem; }
.service-card .service-link { margin-top: auto; color: var(--sage-deep); font-size: .75rem; font-weight: 700; letter-spacing: .03em; }

.review-grid { display: grid; gap: 1rem; }
.review-card { display: flex; flex-direction: column; min-height: 196px; padding: 1.35rem; border: 1px dashed var(--grey); border-radius: var(--radius-sm); background: rgba(255,255,255,.58); }
.review-card .stars { color: #b47878; letter-spacing: .12em; font-size: .9rem; }
.review-card blockquote { margin: 1rem 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.25rem; font-style: italic; line-height: 1.25; }
.review-card cite { margin-top: auto; font-size: .73rem; color: #68716e; font-style: normal; }
.review-note { max-width: 720px; margin: 1.4rem auto 0; font-size: .78rem; color: #616966; }

.final-cta { position: relative; overflow: hidden; padding: clamp(2.4rem, 7vw, 4.7rem); background: linear-gradient(132deg, #f2e1e1, #f9eeee 65%, #edf1ee); border-radius: 2rem; }
.final-cta p { max-width: 670px; }

.page-hero { padding: 4.6rem 0 3.2rem; background: linear-gradient(115deg, var(--sage-pale), var(--cream) 72%); }
.page-hero .lead { max-width: 720px; margin-top: 1rem; }
.breadcrumb { margin-bottom: 1rem; font-size: .73rem; color: #64706a; }
.breadcrumb a { color: var(--sage-deep); }

.service-detail { padding: 2rem 0; border-top: 1px solid var(--line); scroll-margin-top: 90px; }
.service-detail:first-of-type { border-top: 0; }
.service-detail-grid { display: grid; gap: 1.3rem; }
.service-detail .service-top { display: flex; flex-wrap: wrap; align-items: start; justify-content: space-between; gap: .75rem 1.5rem; }
.service-detail h2 { margin-bottom: .38rem; }
.service-detail .duration { color: var(--sage-deep); font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.price-box { flex: 0 0 auto; min-width: 102px; padding: .8rem .9rem; text-align: center; border-radius: 1rem; background: var(--powder-pale); color: var(--sage-deep); }
.price-box strong { display: block; font: 600 2rem/1 "Cormorant Garamond", serif; }
.price-box span { font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.detail-panel { padding: 1.2rem; border-radius: 1rem; background: var(--sage-pale); }
.detail-panel.pink { background: var(--powder-pale); }
.detail-panel h3 { margin-bottom: .55rem; font-size: 1.5rem; }
.list-check { display: grid; gap: .5rem; padding: 0; margin: .75rem 0 0; list-style: none; }
.list-check li { display: flex; gap: .55rem; align-items: start; font-size: .86rem; }
.list-check svg { flex: 0 0 auto; margin-top: .1rem; color: var(--sage-deep); }
.notice { padding: 1rem 1.1rem; border-left: 3px solid var(--sage); border-radius: 0 .75rem .75rem 0; background: var(--sage-pale); font-size: .84rem; }
.notice.warning { border-color: #a46c6c; background: var(--powder-pale); }
.notice p:last-child { margin-bottom: 0; }

.faq { max-width: 850px; margin-inline: auto; }
.faq details { background: var(--white); border-bottom: 1px solid var(--line); }
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary { position: relative; padding: 1rem 2.7rem 1rem 0; cursor: pointer; list-style: none; font-size: .92rem; font-weight: 700; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: .25rem; top: .67rem; color: var(--sage-deep); font: 400 2rem/1 "Cormorant Garamond", serif; }
.faq details[open] summary::after { content: "–"; }
.faq .answer { padding: 0 0 1.2rem; font-size: .88rem; color: #56605c; }

.credentials { display: grid; gap: 1rem; }
.credential { padding: 1rem; border-radius: 1rem; background: var(--white); }
.credential strong { display: block; margin-bottom: .2rem; color: var(--sage-deep); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.credential p { margin: 0; font-size: .88rem; }

.contact-card { padding: 1.5rem; background: var(--sage-deep); color: var(--white); border-radius: var(--radius); }
.contact-card h2, .contact-card p, .contact-card a { color: var(--white); }
.contact-list { display: grid; gap: .7rem; margin: 1.25rem 0; }
.contact-list a { display: inline-flex; align-items: center; gap: .6rem; font-size: .9rem; }
.contact-list svg { width: 19px; height: 19px; color: #e2eee7; }
.form-card { padding: clamp(1.25rem, 4vw, 2rem); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.form-card h2 { margin-bottom: .4rem; }
.form-warning { padding: .9rem 1rem; margin: 1rem 0 1.25rem; border-radius: .8rem; background: var(--powder-pale); font-size: .8rem; }
.contact-form { display: grid; gap: 1rem; }
.form-row { display: grid; gap: 1rem; }
.field { display: grid; gap: .38rem; }
.field label { color: #4c5652; font-size: .78rem; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; min-height: 47px; padding: .7rem .75rem; border: 1px solid #b7c1bc; border-radius: .65rem; background: #fff; color: var(--charcoal); font-size: .9rem; }
.field textarea { min-height: 108px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(82,103,95,.26); border-color: var(--sage-deep); }
.checkbox { display: flex; align-items: start; gap: .65rem; font-size: .77rem; line-height: 1.45; }
.checkbox input { width: 20px; height: 20px; flex: 0 0 auto; margin-top: .05rem; accent-color: var(--sage-deep); }
.form-status { display: none; padding: .75rem 1rem; border-radius: .7rem; font-size: .82rem; }
.form-status.success { display: block; color: #254434; background: #e4f1e7; }
.form-status.error { display: block; color: #6d2929; background: #fae7e7; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.process-list { counter-reset: process; display: grid; gap: .8rem; }
.process-list div { position: relative; padding-left: 3.2rem; }
.process-list div::before { counter-increment: process; content: counter(process); position: absolute; left: 0; top: -.1rem; width: 2rem; height: 2rem; display: grid; place-items: center; border-radius: 50%; background: var(--powder-pale); color: var(--sage-deep); font: 600 1.2rem "Cormorant Garamond", serif; }
.process-list h3 { margin-bottom: .15rem; font-size: 1.35rem; }
.process-list p { margin: 0; font-size: .86rem; }

.legal-layout { max-width: 850px; }
.legal-layout h2 { margin-top: 2.2rem; margin-bottom: .75rem; font-size: 2.15rem; }
.legal-layout h3 { margin-top: 1.5rem; margin-bottom: .45rem; font-size: 1.5rem; }
.legal-layout ul { padding-left: 1.2rem; }
.legal-layout li { margin-bottom: .4rem; }
.to-complete { display: inline-block; padding: .1rem .45rem; border-radius: .35rem; background: var(--powder-pale); color: #785959; font-size: .82em; font-weight: 700; }

.site-footer { padding: 3.5rem 0 1.5rem; color: #eaf1ec; background: var(--charcoal); }
.footer-grid { display: grid; gap: 2rem; }
.footer-brand { max-width: 330px; }
.footer-brand h2 { color: white; font-size: 2rem; }
.footer-brand p { font-size: .82rem; color: #d9e1dc; }
.footer-heading { margin-bottom: .65rem; color: #b9d1c5; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: .42rem; }
.footer-links a { color: #edf4ef; font-size: .78rem; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-scope { padding: 1rem; margin-top: 1.6rem; border-radius: .7rem; background: rgba(255,255,255,.09); font-size: .72rem; line-height: 1.5; color: #dbe7df; }
.footer-bottom { margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.15); color: #bbc9c0; font-size: .69rem; }

@media (max-width: 699px) {
  .brand-logo { width: 64px; height: 64px; margin: 0; }
  .hero .btn-primary { min-height: 56px; padding-inline: 1.35rem; }
  .photo-frame { width: min(72vw, 15rem); margin-inline: auto; }
  .photo-frame img { height: auto; aspect-ratio: auto; object-fit: contain; object-position: 50% 50%; background: #eeeae5; }
}

@media (min-width: 700px) {
  .section { padding: 6rem 0; }
  .card-grid.two, .review-grid, .credentials { grid-template-columns: repeat(2, 1fr); }
  .when-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(5, 1fr); }
  .step { padding: 3.2rem 1rem 1.1rem; min-height: 185px; }
  .step::before { top: 1.1rem; }
  .form-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.45fr 1fr 1fr; }
  .service-detail-grid { grid-template-columns: 1.55fr .9fr; }
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav { display: flex; align-items: center; gap: .25rem; }
  .site-nav a { padding: .55rem .55rem; }
  .site-nav .nav-cta { margin: 0 0 0 .45rem; padding: .6rem .95rem; color: white; background: var(--sage-deep); border-radius: 999px; }
  .intro-grid { grid-template-columns: 1.04fr .96fr; align-items: center; gap: 4rem; }
  .about-preview { grid-template-columns: .72fr 1.28fr; align-items: center; gap: 4rem; }
  .contact-grid { grid-template-columns: .78fr 1.22fr; align-items: start; gap: 2.5rem; }
  .two-col { grid-template-columns: 1fr 1fr; align-items: start; gap: 4rem; }
  .card-grid.three { grid-template-columns: repeat(3, 1fr); }
  .when-grid { grid-template-columns: repeat(3, 1fr); }
  .hero { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); align-items: stretch; min-height: 680px; }
  .hero-image { order: 2; width: 100%; height: 100%; min-height: 680px; object-position: 82% center; }
  .hero-inner { order: 1; width: auto; max-width: 640px; margin: 0 0 0 max(1.25rem, calc((100vw - 1120px) / 2)); padding: 6.2rem 2rem 5rem 0; display: flex; align-items: center; }
}

@media (min-width: 1100px) {
  .site-nav a { padding-inline: .68rem; }
  .service-detail-grid { grid-template-columns: 1.65fr .85fr; gap: 3rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
