/* ============================================================
   THIERRY WORBE — site 2026-09-12
   Moteur repris du site de Karine Panafieu (client-docs/karine-panafieu/site-moodboard-rebuild).
   Direction de production du site Thierry Worbe.
   ============================================================ */

:root {
  --forest: #314238;
  --forest-deep: #20342e;
  --sage: #7a8b80;
  --sage-ink: #5a6b61;
  --sage-soft: #b8c0b4;
  --terra: #c86d51;
  --terra-deep: #a85038;
  --cream: #f7f4ef;
  --paper: #fbf7ed;
  --sand: #eadcc8;
  --ink: #24352f;
  --white: #fffdf8;
  --line: rgba(49, 66, 56, .18);
  --line-strong: rgba(49, 66, 56, .34);
  --shadow: 0 24px 60px rgba(31, 48, 40, .13);
  --shadow-soft: 0 14px 36px rgba(31, 48, 40, .09);
  --display: "Cormorant Garamond", "Iowan Old Style", Baskerville, Georgia, serif;
  --body: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 17px; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 15% 5%, rgba(200,109,81,.07), transparent 28rem),
    radial-gradient(circle at 86% 16%, rgba(122,139,128,.10), transparent 31rem),
    repeating-linear-gradient(88deg, rgba(49,66,56,.015) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(3deg, rgba(200,109,81,.012) 0 1px, transparent 1px 9px);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--terra); outline-offset: 3px; }
p { max-width: 66ch; margin: 0 0 1.1rem; }
h1, h2, h3, .quote, .fbrand, .brand-name {
  font-family: var(--display);
  color: var(--forest);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -.018em;
}
h1 { margin: 0 0 1.2rem; font-size: clamp(3rem, 6.4vw, 6.25rem); }
h2 { margin: 0 0 1rem; font-size: clamp(2.25rem, 4.4vw, 4.35rem); }
h3 { margin: 0 0 .7rem; font-size: clamp(1.45rem, 2.25vw, 2rem); line-height: 1.14; }
strong { color: var(--forest); font-weight: 700; }

.wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.measure { max-width: 62ch; }
.skip { position: fixed; left: 16px; top: -100px; z-index: 400; padding: 10px 16px; color: var(--white); background: var(--forest); border-radius: 999px; }
.skip:focus { top: 12px; }

/* Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(49,66,56,.13);
  background: rgba(247,244,239,.92);
  backdrop-filter: blur(16px) saturate(120%);
}
header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(122,139,128,.5) 28%, rgba(200,109,81,.55) 53%, rgba(49,66,56,.45) 77%, transparent);
  opacity: .45;
}
.nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
header .nav { width: min(1360px, calc(100% - 32px)); }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; flex: 0 0 auto; }
.brand::after { content: "THIERRY WORBE"; color: var(--forest); font-family: var(--display); font-size: 1.42rem; font-weight: 650; letter-spacing: .12em; }
.brand-logo { width: 64px; height: 64px; object-fit: cover; object-position: center; border-radius: 50% 48% 52% 46%; mix-blend-mode: multiply; }
.brand-mark { display: none; }
.brand-txt { font-family: var(--display); font-size: 1.7rem; letter-spacing: .12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: clamp(13px, 1.6vw, 25px); }
.nav-links > a:not(.btn) { position: relative; color: var(--forest); font-size: .88rem; font-weight: 650; text-decoration: none; white-space: nowrap; }
.nav-links > a:not(.btn)::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: -8px; height: 2px; border-radius: 50%; background: var(--terra); transition: left .2s ease, right .2s ease; }
.nav-links > a:hover::after, .nav-links > a.is-active::after { left: 6%; right: 6%; }
.burger { display: none; width: 48px; height: 48px; border: 1px solid var(--line-strong); border-radius: 50% 46% 52% 44%; background: rgba(255,253,248,.72); color: var(--forest); font-size: 1.25rem; cursor: pointer; }

/* Buttons */
.btn {
  display: inline-flex;
  min-height: 51px;
  padding: 0 26px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px 999px 999px 42px;
  font-family: var(--body);
  font-size: .94rem;
  font-weight: 750;
  letter-spacing: .015em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--terra-deep); box-shadow: 0 12px 26px rgba(168,80,56,.22); }
.btn-primary:hover { background: var(--terra); box-shadow: 0 16px 32px rgba(168,80,56,.3); }
.btn-ghost { min-height: 45px; padding-inline: 2px; color: var(--forest); border: 0; border-radius: 0; border-bottom: 1px solid var(--forest); }
.btn-ghost:hover { color: var(--terra-deep); border-color: var(--terra-deep); transform: none; }
.btn-on-dark { color: var(--white); border-color: rgba(255,253,248,.55); background: rgba(255,253,248,.08); }
.btn-on-dark:hover { background: rgba(255,253,248,.17); }
.btn-row { display: flex; align-items: center; flex-wrap: wrap; gap: 14px 22px; margin-top: 1.4rem; }
.nav-cta { min-height: 43px; padding-inline: 19px; font-size: .85rem; }

/* Small brand language */
.eyebrow, .pill-badge, .pillar-num, .pillar-when, .kicker {
  color: var(--terra-deep);
  font-family: var(--body);
  font-size: .76rem;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 1rem; }
.eyebrow::before { content: ""; width: 38px; height: 8px; border-top: 2px solid var(--terra); border-radius: 50%; transform: rotate(-3deg); }
.pill-badge { display: inline-flex; padding: 9px 17px; margin: 0 0 1rem; color: var(--forest); border: 1px solid var(--line-strong); border-radius: 999px; background: rgba(247,244,239,.72); letter-spacing: .08em; }

/* Home hero */
.hero { position: relative; padding: 42px 0 96px; isolation: isolate; }
.hero::before, .hero::after, .organic-section::before, .organic-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border: 2px solid rgba(49,66,56,.22);
  border-radius: 44% 56% 48% 52% / 62% 38% 62% 38%;
}
.hero::before { width: min(66vw, 920px); height: 390px; left: -260px; top: 90px; transform: rotate(7deg); box-shadow: 0 0 0 13px rgba(122,139,128,.07), 0 0 0 25px rgba(200,109,81,.045); }
.hero::after { width: min(48vw, 680px); height: 330px; right: -240px; bottom: 34px; transform: rotate(-10deg); border-color: rgba(200,109,81,.26); box-shadow: 0 0 0 12px rgba(122,139,128,.06); }
.hero-brandplate { width: min(470px, 72vw); margin: 0 auto 26px; }
.hero-brandplate img { width: 100%; aspect-ratio: 1.84/1; object-fit: cover; mix-blend-mode: multiply; }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(42px, 6vw, 86px); align-items: center; }
.hero-copy { position: relative; padding: clamp(30px, 4vw, 58px); border-radius: 36% 64% 38% 62% / 16% 18% 14% 18%; background: rgba(255,253,248,.68); box-shadow: var(--shadow-soft); }
.hero-copy::before { content: "✦"; position: absolute; top: 16px; right: 34px; color: var(--terra); font-size: 1.7rem; }
.hero h1 { font-size: clamp(3.25rem, 6.2vw, 6rem); }
.hero h1 .terra { display: block; color: var(--terra-deep); font-size: .59em; font-style: italic; }
.hero-services { max-width: 52ch; margin: -.1rem 0 1rem; color: var(--sage-ink); font-size: .82rem; font-weight: 750; letter-spacing: .02em; line-height: 1.55; }
.hero .lead { font-size: clamp(1.08rem, 1.8vw, 1.34rem); line-height: 1.65; }
.hero-note { color: var(--forest); font-family: var(--display); font-size: 1.35rem; font-style: italic; }
.hero-visual { position: relative; min-height: 660px; }
.hero-portrait {
  position: absolute;
  inset: 0 8% 8% 5%;
  overflow: hidden;
  border-radius: 49% 51% 43% 57% / 28% 33% 67% 72%;
  box-shadow: var(--shadow);
  background: var(--sage);
}
.hero-portrait::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(32,52,46,.34)); }
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; filter: saturate(.84) sepia(.08) contrast(.96) brightness(1.03); }
.hero-nature { position: absolute; width: 34%; right: -1%; bottom: 2%; aspect-ratio: 1 / 1; overflow: hidden; border: 9px solid var(--paper); border-radius: 50% 50% 45% 55%; box-shadow: var(--shadow-soft); }
.hero-nature img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) sepia(.1); }
.sun-mark { position: absolute; width: 70px; height: 70px; right: 3%; top: 4%; border: 2px solid var(--terra); border-radius: 50%; }
.sun-mark::before, .sun-mark::after { content: ""; position: absolute; inset: -15px; border: 1px dashed rgba(200,109,81,.75); border-radius: 50%; }
.sun-mark::after { inset: 18px; border-style: solid; background: rgba(200,109,81,.13); }
.trust-list { display: flex; flex-wrap: wrap; gap: 9px; list-style: none; padding: 0; margin: 22px 0 0; }
.trust-list li { padding: 8px 13px; color: var(--forest); border: 1px solid var(--line); border-radius: 999px; background: rgba(247,244,239,.82); font-size: .78rem; font-weight: 650; }

/* Sections */
.section, .section-tight, .pillars, .legit-strip, .offer-band { position: relative; padding: clamp(76px, 9vw, 128px) 0; }
.section-tight { padding-block: clamp(62px, 7vw, 94px); }
.organic-section { position: relative; isolation: isolate; }
.organic-section::before { width: 410px; height: 220px; top: 32px; right: -210px; transform: rotate(12deg); }
.organic-section::after { width: 330px; height: 180px; bottom: 30px; left: -190px; border-color: rgba(200,109,81,.24); }
.section-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-head p { margin-inline: auto; }
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::after { content: ""; width: 38px; height: 8px; border-top: 2px solid var(--terra); border-radius: 50%; transform: rotate(3deg); }
.section-sage { color: var(--white); background: var(--forest); border-radius: 8% 8% 8% 8% / 4% 4% 4% 4%; }
.section-sage h2, .section-sage h3, .section-sage strong { color: var(--white); }
.section-sage .eyebrow { color: #f0b7a2; }
.paper-wave { background: rgba(255,253,248,.64); border-block: 1px solid var(--line); }

.pillar-grid, .care-grid, .legit-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar-card, .care-card, .legit-item {
  position: relative;
  min-height: 310px;
  padding: 38px 31px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,253,248,.71);
  box-shadow: var(--shadow-soft);
}
.pillar-card:nth-child(1), .care-card:nth-child(1) { border-radius: 46% 54% 18% 22% / 18% 20% 13% 16%; }
.pillar-card:nth-child(2), .care-card:nth-child(2) { border-radius: 22% 42% 45% 28% / 18% 27% 22% 33%; transform: translateY(28px); }
.pillar-card:nth-child(3), .care-card:nth-child(3) { border-radius: 54% 46% 24% 20% / 22% 18% 28% 15%; }
.pillar-card::after, .care-card::after { content: ""; position: absolute; width: 110px; height: 80px; right: -26px; bottom: -22px; border: 10px double rgba(122,139,128,.12); border-radius: 50%; }
.pillar-num { display: block; margin-bottom: 20px; }
.pillar-when { display: block; margin: .6rem 0 1rem; color: var(--sage-ink); letter-spacing: .09em; }
.pillar-card p, .care-card p { font-size: .93rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(42px, 7vw, 88px); align-items: center; }
.split.reverse > :first-child { order: 2; }
.story { max-width: 590px; }
.portrait-slot {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  min-height: 570px;
  overflow: visible;
  background: transparent;
}
.image-orbit {
  position: relative;
  width: 100%;
  min-height: 540px;
  overflow: hidden;
  border-radius: 52px 86px 56px 74px;
  box-shadow: var(--shadow);
  background: var(--sage);
}
.portrait-slot img {
  position: static;
  flex: 1 1 0;
  width: 100%;
  height: 0;
  min-height: 0;
  border-radius: 52px 86px 56px 74px;
  object-fit: cover;
  box-shadow: var(--shadow);
  filter: saturate(.86) sepia(.06);
}
.image-orbit img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.86) sepia(.06); }
.portrait-slot.landscape { min-height: 455px; }
.portrait-slot.small { min-height: 620px; }
.portrait-slot::after { display: none; }
.portrait-slot .mono-caption {
  position: static;
  align-self: flex-start;
  width: auto;
  max-width: 100%;
  margin: 0;
  padding: 1px 3px 1px 12px;
  border: 0;
  border-left: 2px solid rgba(200,109,81,.7);
  color: var(--sage-ink);
  background: transparent;
  box-shadow: none;
  font-family: var(--display);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  font-style: italic;
  line-height: 1.35;
  text-align: left;
}
.portrait-slot.no-frame .mono-caption { display: none; }

.gallery-organic, .galerie { display: grid; grid-template-columns: 1.3fr .8fr 1fr; grid-template-rows: 260px 245px; gap: 13px; margin-top: 46px; }
.gallery-organic figure, .gal-item { position: relative; margin: 0; overflow: hidden; background: var(--sage); }
.gallery-organic figure:nth-child(1), .gal-item--big { grid-row: span 2; border-radius: 42% 14% 12% 35% / 26% 18% 28% 48%; }
.gallery-organic figure:nth-child(2), .gal-item:nth-child(2) { border-radius: 22% 58% 28% 35% / 30% 38% 34% 44%; }
.gallery-organic figure:nth-child(3), .gal-item:nth-child(3) { border-radius: 48% 20% 42% 15% / 26% 35% 22% 48%; }
.gallery-organic figure:nth-child(4), .gal-item:nth-child(4) { border-radius: 30% 43% 18% 48% / 44% 23% 49% 20%; }
.gallery-organic figure:nth-child(5), .gal-item:nth-child(5) { border-radius: 18% 50% 38% 27% / 30% 34% 46% 37%; }
.gallery-organic img, .gal-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) sepia(.08) brightness(.98); transition: transform .55s ease; }
.gallery-organic figure:hover img, .gal-item:hover img { transform: scale(1.035); }

/* Offer, proof and FAQ compatibility */
.offer-card { display: grid; grid-template-columns: 1.25fr .75fr; gap: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 14% 6% 14% 6% / 12% 8% 14% 9%; background: rgba(255,253,248,.72); box-shadow: var(--shadow); }
.offer-card > div { padding: clamp(34px, 5vw, 62px); }
.offer-price-box { display: flex; flex-direction: column; justify-content: center; color: var(--white); background: var(--forest); }
.offer-price-box .pill-badge { color: var(--white); border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.08); }
.offer-facts, .cert-list { list-style: none; margin: 1.5rem 0 0; padding: 0; }
.offer-facts li, .cert-list li { position: relative; padding: 12px 0 12px 30px; border-bottom: 1px solid var(--line); }
.offer-facts li::before, .cert-list li::before { content: "✦"; position: absolute; left: 1px; color: var(--terra); }
.legit-head { max-width: 750px; margin-bottom: 42px; }
.legit-item { min-height: 180px; padding: 30px; border-radius: 45% 55% 40% 60% / 30% 38% 62% 70%; display: flex; align-items: center; }
.legit-item p { margin: 0; font-family: var(--display); color: var(--forest); font-size: 1.32rem; line-height: 1.25; }
.testimonial { max-width: 760px; margin: 0 auto; padding: 40px 48px; border: 1px solid var(--line); border-radius: 40% 60% 46% 54% / 22% 18% 23% 19%; background: rgba(255,253,248,.7); }
.quote-text, .quote { font-family: var(--display); font-size: clamp(1.35rem, 2.4vw, 2rem); font-style: italic; line-height: 1.45; }
.attribution { color: var(--sage-ink); font-size: .85rem; font-weight: 700; }
.faq-list { display: grid; gap: 12px; margin-top: 30px; }
.faq-item { border: 1px solid var(--line); border-radius: 28px 46px 28px 46px; background: rgba(255,253,248,.69); overflow: hidden; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 28px; color: var(--forest); font-family: var(--display); font-size: 1.28rem; font-weight: 650; cursor: pointer; }
.faq-item summary::after { content: "+"; color: var(--terra-deep); font-family: var(--body); font-size: 1.3rem; }
.faq-item[open] summary::after { content: "−"; }
.faq-answer { padding: 0 28px 24px; }

.hero-slim { position: relative; padding: 82px 0 68px; text-align: center; overflow: hidden; }
.hero-slim::before { content: ""; position: absolute; width: 720px; height: 250px; left: 50%; top: 12px; transform: translateX(-50%) rotate(-2deg); border: 2px solid rgba(122,139,128,.2); border-radius: 50%; box-shadow: 0 0 0 14px rgba(200,109,81,.035); }
.hero-slim .wrap { position: relative; max-width: 900px; }
.hero-slim .pill-badge { margin-inline: auto; }
.hero-slim h1 { font-size: clamp(3.2rem, 6vw, 5.7rem); }
.article-hero { padding-bottom: 32px; }
.article-section { padding-top: 28px; }
.no-break { white-space: nowrap; }

.cta-band { position: relative; padding: clamp(76px, 9vw, 120px) 0; overflow: hidden; color: var(--white); background: var(--forest); }
.cta-band::before, .cta-band::after { content: ""; position: absolute; width: 540px; height: 190px; border: 2px solid rgba(255,253,248,.18); border-radius: 50%; }
.cta-band::before { left: -220px; top: -30px; transform: rotate(15deg); }
.cta-band::after { right: -180px; bottom: -40px; transform: rotate(-12deg); }
.cta-band .wrap { position: relative; max-width: 850px; text-align: center; }
.cta-band p { margin-inline: auto; }
.cta-band .quote { color: var(--white); font-size: clamp(2.5rem, 5vw, 4.6rem); }
.cta-band .btn-row { justify-content: center; }

/* Contact, articles, utilities */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.contact-card, .article-content, .legal-card, .confirmation-card { padding: clamp(30px, 5vw, 58px); border: 1px solid var(--line); border-radius: 12% 5% 14% 6% / 9% 7% 12% 8%; background: rgba(255,253,248,.7); box-shadow: var(--shadow-soft); }
.contact-list { list-style: none; padding: 0; margin: 1.3rem 0; }
.contact-list li { padding: 13px 0; border-bottom: 1px solid var(--line); }
.article-content, .legal-card { max-width: 860px; margin: 0 auto; border-radius: 48px; }
.article-content h2, .legal-card h2 { margin-top: 2.7rem; font-size: 2.15rem; }
.article-content h3, .legal-card h3 { margin-top: 2rem; }
.confirmation-card { max-width: 760px; margin: 0 auto; text-align: center; border-radius: 48px; }
.confirmation-card::before { content: ""; display: block; width: 76px; height: 76px; margin: 0 auto 1.5rem; border: 2px solid var(--terra); border-radius: 50% 46% 52% 44%; background: radial-gradient(circle at 50% 50%, var(--terra) 0 6px, transparent 7px), radial-gradient(circle at 50% 50%, transparent 0 21px, rgba(122,139,128,.23) 22px 24px, transparent 25px); transform: rotate(-4deg); }
.confirmation-card .eyebrow { justify-content: center; }
.confirmation-card h1 { font-size: clamp(3rem, 6vw, 5rem); }
.confirmation-card p { margin-inline: auto; }
.confirmation-card .btn-row { justify-content: center; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 23px; }
.blog-card { overflow: hidden; border: 1px solid var(--line); border-radius: 38% 16% 22% 13% / 18% 12% 19% 14%; background: rgba(255,253,248,.72); box-shadow: var(--shadow-soft); text-decoration: none; }
.blog-card-media { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 30px; }
.blog-card-tag { color: var(--terra-deep); font-size: .75rem; text-transform: uppercase; letter-spacing: .13em; font-weight: 800; }
.newsletter-form { display: grid; gap: 10px; }
input, textarea, select { width: 100%; min-height: 50px; border: 1px solid var(--line-strong); border-radius: 22px 28px 22px 28px; padding: 12px 16px; color: var(--ink); background: rgba(255,253,248,.82); font: inherit; }
textarea { min-height: 140px; resize: vertical; }

/* Footer */
footer { position: relative; padding-top: 72px; color: rgba(255,253,248,.84); background: var(--forest-deep); }
footer::before { content: ""; position: absolute; left: 0; right: 0; top: -15px; height: 30px; background: radial-gradient(70% 35px at 50% 100%, var(--forest-deep) 66%, transparent 67%); }
footer > .wrap { display: grid; grid-template-columns: 1.35fr .8fr 1fr; gap: 58px; padding-bottom: 58px; }
footer a { text-decoration-color: rgba(255,253,248,.3); text-underline-offset: 4px; }
footer a:hover { color: var(--white); }
.footer-logo { width: 250px; height: auto; margin: -20px 0 12px; border-radius: 40%; object-fit: contain; mix-blend-mode: screen; opacity: .92; }
.fbrand { color: var(--white); font-size: 2.4rem; text-decoration: none; }
.fbrand-sub { color: #f1baa8; font-family: var(--display); font-size: 1.2rem; font-style: italic; }
.fdesc { max-width: 44ch; font-size: .87rem; }
.fhead { color: var(--white); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
footer p { margin-bottom: .65rem; }
.foot-legal { padding: 22px 0; border-top: 1px solid rgba(255,255,255,.13); }
.disclaimer { max-width: none; margin: 0; font-size: .7rem; line-height: 1.65; }

/* Consent */
.consent-banner { position: fixed; z-index: 300; right: 22px; bottom: 22px; width: min(430px, calc(100% - 44px)); padding: 22px; border: 1px solid var(--line-strong); border-radius: 32px 42px 26px 38px; background: var(--paper); box-shadow: var(--shadow); }
.consent-banner[hidden] { display: none; }
.consent-banner p { margin-bottom: 12px; font-size: .78rem; }
.consent-actions { display: flex; justify-content: flex-end; gap: 9px; }
.consent-actions .btn { min-height: 40px; padding-inline: 18px; }

/* Responsive */
@media (max-width: 1080px) {
  .brand-logo { width: 58px; height: 58px; }
  .brand::after { font-size: 1.25rem; }
  .nav-links { gap: 12px; }
  .nav-links > a:not(.btn) { font-size: .78rem; }
  .nav-cta { padding-inline: 14px; }
}

@media (max-width: 1040px) {
  .nav { min-height: 74px; }
  .burger { display: inline-grid; place-items: center; flex: 0 0 auto; }
  .nav-links { position: absolute; top: calc(100% + 1px); left: 18px; right: 18px; display: none; padding: 24px; flex-direction: column; align-items: stretch; gap: 0; border: 1px solid var(--line); border-radius: 20px 20px 40px 40px; background: var(--paper); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links > a:not(.btn) { padding: 13px 5px; font-size: .92rem; border-bottom: 1px solid var(--line); }
  .nav-links > a:not(.btn)::after { display: none; }
  .nav-cta { margin-top: 16px; }
}

@media (max-width: 900px) {
  .wrap { width: min(100% - 36px, 720px); }
  .nav { min-height: 74px; }
  header .nav { width: min(100% - 28px, 720px); }
  .brand-logo { width: 58px; height: 58px; }
  .burger { display: inline-grid; place-items: center; flex: 0 0 auto; }
  .nav-links { position: absolute; top: calc(100% + 1px); left: 18px; right: 18px; display: none; padding: 24px; flex-direction: column; align-items: stretch; gap: 0; border: 1px solid var(--line); border-radius: 20px 20px 40px 40px; background: var(--paper); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links > a:not(.btn) { padding: 13px 5px; font-size: .92rem; border-bottom: 1px solid var(--line); }
  .nav-links > a:not(.btn)::after { display: none; }
  .nav-cta { margin-top: 16px; }
  .hero { padding-top: 25px; }
  .hero-brandplate { width: min(440px, 84vw); }
  .hero-grid, .split, .offer-card, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { border-radius: 44px 76px 38px 62px; }
  .hero-visual { min-height: 620px; }
  .hero-portrait { inset: 0 6% 7% 4%; }
  .split.reverse > :first-child { order: 0; }
  .pillar-grid, .care-grid, .legit-row { grid-template-columns: 1fr; max-width: 650px; margin-inline: auto; }
  .pillar-card, .care-card { min-height: 0; border-radius: 45px 80px 42px 62px !important; transform: none !important; }
  .legit-item { min-height: 130px; border-radius: 42px 72px 45px 65px; }
  .gallery-organic, .galerie { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 190px 190px; }
  .gallery-organic figure:nth-child(1), .gal-item--big { grid-column: span 2; grid-row: auto; }
  footer > .wrap { grid-template-columns: 1fr 1fr; }
  footer > .wrap > :first-child { grid-column: span 2; }
}

@media (max-width: 560px) {
  html { font-size: 16px; }
  .wrap { width: min(100% - 28px, 520px); }
  h1 { font-size: clamp(2.75rem, 14vw, 4.2rem); }
  h2 { font-size: clamp(2.2rem, 11vw, 3.35rem); }
  .hero-brandplate { width: 92vw; margin-left: 50%; transform: translateX(-50%); }
  .hero-copy { padding: 29px 24px 34px; border-radius: 35px 58px 36px 52px; }
  .hero-copy::before { top: 10px; right: 18px; font-size: 1rem; line-height: 1; }
  .hero-services { font-size: .78rem; font-weight: 700; letter-spacing: .01em; }
  .hero-visual { min-height: 500px; }
  .hero-portrait { inset: 0 8% 8% 0; border-radius: 48% 52% 39% 61% / 28% 31% 69% 72%; }
  .hero-nature { width: 35%; right: -1%; bottom: 4%; border-width: 6px; }
  .sun-mark { width: 52px; height: 52px; right: 0; }
  .btn-row { align-items: stretch; flex-direction: column; }
  .btn-row .btn { width: 100%; }
  .trust-list { display: none; }
  .portrait-slot, .image-orbit { min-height: 470px; }
  .portrait-slot.landscape { min-height: 350px; }
  .portrait-slot img, .image-orbit { border-radius: 38px 58px 42px 54px; }
  .portrait-slot .mono-caption { padding-left: 10px; font-size: 1rem; }
  .gallery-organic, .galerie { grid-template-columns: 1fr; grid-template-rows: repeat(5, 220px); }
  .gallery-organic figure:nth-child(1), .gal-item--big { grid-column: auto; }
  .gallery-organic figure, .gal-item { border-radius: 38px 72px 40px 64px !important; }
  .offer-card { border-radius: 40px; }
  .offer-card > div { padding: 32px 23px; }
  .hero-slim { padding-block: 64px 50px; }
  .hero-slim h1 { font-size: clamp(2.9rem, 14vw, 4.4rem); }
  .hero .eyebrow { font-size: .7rem; letter-spacing: .09em; }
  .article-hero { padding: 58px 0 22px; }
  .article-hero h1 { font-size: clamp(2.45rem, 11vw, 3.1rem); }
  .article-section { padding-top: 20px; }
  .testimonial { padding: 30px 25px; border-radius: 32px 54px 36px 50px; }
  .contact-card, .article-content, .legal-card { padding: 30px 22px; border-radius: 34px; }
  footer > .wrap { grid-template-columns: 1fr; gap: 34px; }
  footer > .wrap > :first-child { grid-column: auto; }
  .footer-logo { width: 210px; }
}

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

/* ── Ajustements marque Thierry Worbe ──────────────────────────────
   La marque de Thierry est un carré compact, là où celle de Karine était
   un logotype large : on réduit sa taille en pied de page pour qu'elle
   pèse autant, visuellement, que le logotype d'origine. */
.footer-logo { width: 96px; margin: 0 0 14px; border-radius: 24px; mix-blend-mode: normal; opacity: 1; }
@media (max-width: 820px) { .footer-logo { width: 84px; } }

/* ── Cadrage des portraits ─────────────────────────────────────────
   object-fit:cover rogne en haut et en bas quand une photo verticale
   tombe dans une cellule plus large qu'elle. Sur un portrait, ce qui
   est rogné en haut, c'est le crâne. On ancre donc le cadrage vers le
   haut du sujet pour que le visage reste entier. */
.gallery-organic img, .gal-item img,
.portrait-slot img, .hero-portrait img { object-position: center 22%; }
