/* ============================================================
   NATURA — Design system
   Modern editorial aesthetic: deep moss hero, sage/copper
   gradients, glass panels, reveal-on-scroll, generous whitespace.
   ============================================================ */

:root {
  /* Base */
  --bg: #3a4a40;
  --bg-2: #455a4d;
  --bg-3: #4f6757;
  --paper: #f7f5f0;
  --paper-2: #efeae1;
  --paper-3: #e7e1d6;
  --ink: #1a2b26;
  --ink-2: #36473f;
  --muted: #6a7a72;
  --line: rgba(255, 255, 255, 0.10);
  --line-dark: rgba(26, 43, 38, 0.12);

  /* Brand accents */
  --sage: #a3c9a8;
  --sage-deep: #7faa88;
  --sage-light: #c8e0cc;
  --moss: #5c8f72;
  --copper: #c98a5b;
  --copper-light: #e6a06a;
  --clay: #b8602e;
  --gold: #d9a861;

  /* Gradients */
  --grad: linear-gradient(135deg, #c8e0cc 0%, #a3c9a8 45%, #7faa88 100%);
  --grad-warm: linear-gradient(135deg, #e6a06a 0%, #c98a5b 50%, #b8602e 100%);
  --grad-hero: linear-gradient(160deg, #3a4a40 0%, #455a4d 55%, #4f6757 100%);
  --grad-soft: linear-gradient(135deg, rgba(163, 201, 168, 0.16), rgba(92, 143, 114, 0.14));
  --grad-soft-warm: linear-gradient(135deg, rgba(231, 160, 106, 0.16), rgba(194, 110, 66, 0.14));

  /* Effects */
  --shadow-sm: 0 4px 14px -6px rgba(58, 74, 64, 0.18);
  --shadow-md: 0 18px 38px -18px rgba(58, 74, 64, 0.30);
  --shadow-lg: 0 40px 80px -28px rgba(58, 74, 64, 0.45);
  --shadow-green: 0 20px 48px -16px rgba(127, 170, 136, 0.40);
  --shadow-copper: 0 20px 48px -16px rgba(200, 116, 60, 0.40);
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.10);
  --glass-light: rgba(255, 255, 255, 0.70);

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;

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

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-size: 16px;
}
h1, h2, h3, h4, .display {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.08;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; height: auto; }
ul, ol { margin: 0 0 1.4em 0; padding-left: 1.2em; }
p { margin-bottom: 1em; }
small { font-size: 0.85em; }
button { font-family: inherit; cursor: pointer; }
input, textarea { font-family: inherit; }
::selection { background: var(--sage); color: #1a2b26; }

/* ---------- LAYOUT ---------- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.wrap-prose { max-width: 760px; margin: 0 auto; padding: 0 28px; }
.wrap-wide { max-width: 1320px; margin: 0 auto; padding: 0 28px; }

/* ---------- TYPOGRAPHY HELPERS ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif; font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.20em; text-transform: uppercase; color: var(--sage-deep);
}
.eyebrow.warm { color: var(--clay); }
.eyebrow::before {
  content: ""; width: 24px; height: 1.5px; background: currentColor; opacity: 0.5;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 100px;
  background: rgba(163, 201, 168, 0.16); color: var(--sage-deep);
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.06em;
  border: 1px solid rgba(163, 201, 168, 0.35);
}
.pill .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sage); box-shadow: 0 0 12px var(--sage);
  animation: pulse 2.4s infinite;
}
.pill.warm { background: rgba(231, 160, 106, 0.16); color: var(--clay); border-color: rgba(200, 116, 60, 0.32); }
.pill.warm .dot { background: var(--copper); box-shadow: 0 0 12px var(--copper); }
.pill.light { background: rgba(163, 201, 168, 0.22); color: var(--sage-deep); border-color: rgba(163, 201, 168, 0.45); }
.pill.light .dot { background: var(--sage-light, #c8e0cc); }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.45; transform: scale(0.85); } }

.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grad-text-warm { background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grad-text-light { background: linear-gradient(135deg, #e0eede 0%, #a3c9a8 55%, #7faa88 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: 100px; cursor: pointer; border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-primary { background: var(--grad); color: #1a2b26; box-shadow: var(--shadow-green); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 26px 52px -18px rgba(127, 170, 136, 0.60); }
.btn-warm { background: var(--grad-warm); color: #fff; box-shadow: var(--shadow-copper); }
.btn-warm:hover { transform: translateY(-2px); box-shadow: 0 26px 56px -18px rgba(200, 116, 60, 0.6); }
.btn-light { background: #fff; color: var(--ink); box-shadow: var(--shadow-md); }
.btn-light:hover { transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: #e3efe5; border-color: rgba(255, 255, 255, 0.22); }
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.08); color: #fff; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--moss); border-color: rgba(92, 143, 114, 0.40); }
.btn-outline:hover { background: rgba(92, 143, 114, 0.10); transform: translateY(-1px); }
.btn-sm { padding: 10px 18px; font-size: 13.5px; }
.btn i { font-size: 18px; }
.arrow-link { display: inline-flex; align-items: center; gap: 8px; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14.5px; color: var(--moss); }
.arrow-link:hover { gap: 12px; color: var(--moss); }

/* ---------- NAV ---------- */
nav.top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  background: rgba(58, 74, 64, 0.4); border-bottom: 1px solid var(--line);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease);
}
nav.top.scrolled { background: rgba(58, 74, 64, 0.92); }
nav.top .row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px; max-width: 1200px; margin: 0 auto;
  transition: padding 0.4s var(--ease);
}
nav.top.scrolled .row { padding: 11px 28px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: 'Fraunces', serif; font-weight: 600; font-size: 22px; color: #fffbf5; }
.brand .logo {
  width: 38px; height: 38px; border-radius: 11px;
  overflow: hidden; display: grid; place-items: center; flex-shrink: 0;
}
.brand .logo svg { width: 22px; height: 22px; }
.brand .logo img.brand-logo-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand .em { color: #c8b380; font-weight: 500; }
.brand small { display: block; font-family: 'Inter', sans-serif; font-size: 9.5px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: #b3cebf; line-height: 1; margin-top: 3px; }
nav.top .links { display: flex; gap: 30px; align-items: center; }
nav.top .links a {
  color: #d7e6dc; font-size: 14.5px; font-weight: 500; transition: color 0.2s, transform 0.2s;
  position: relative;
}
nav.top .links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0;
  background: var(--sage); transition: width 0.3s var(--ease);
}
nav.top .links a:hover { color: #fff; }
nav.top .links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.burger span { width: 24px; height: 2px; background: #e3efe5; border-radius: 2px; transition: 0.32s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; flex-direction: column; gap: 20px;
  position: fixed; top: 70px; left: 0; right: 0;
  background: rgba(58, 74, 64, 0.98); backdrop-filter: blur(24px);
  padding: 30px 28px 38px; border-bottom: 1px solid var(--line); z-index: 79;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #e0ede4; font-family: 'Fraunces', serif; font-size: 22px; font-weight: 500; }
.mobile-menu .btn { justify-content: center; }

/* ---------- HERO ---------- */
header.hero {
  position: relative; padding: 180px 0 96px; color: #fafdfb;
  background: var(--grad-hero); overflow: hidden;
}
header.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 78% -8%, rgba(200, 224, 204, 0.30), transparent 60%),
    radial-gradient(900px 520px at 8% 24%, rgba(217, 168, 97, 0.18), transparent 65%),
    radial-gradient(700px 400px at 50% 110%, rgba(92, 143, 114, 0.30), transparent 60%);
}
header.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask: linear-gradient(180deg, #000, transparent 72%);
  -webkit-mask: linear-gradient(180deg, #000, transparent 72%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.hero h1 {
  font-size: clamp(38px, 5.4vw, 66px); color: #fff; margin: 26px 0 26px; font-weight: 500;
  font-variation-settings: "opsz" 130;
}
.hero h1 .em { font-style: italic; font-family: 'Fraunces', serif; }
.hero .lead { font-size: 19.5px; color: #d7e8df; max-width: 560px; margin-bottom: 40px; line-height: 1.6; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 38px; }
.hero-trust {
  display: flex; align-items: center; gap: 22px; color: #bcd5c4; font-size: 13.5px; flex-wrap: wrap;
}
.hero-trust .stars { color: var(--gold); font-size: 15px; letter-spacing: 3px; margin-bottom: 4px; }
.hero-trust strong { color: #fff; font-family: 'Fraunces', serif; font-weight: 600; font-size: 15.5px; }
.hero-portrait {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background-image: var(--grad-soft);
  overflow: hidden; border: 1px solid var(--glass-border);
  box-shadow: 0 48px 96px -32px rgba(0, 0, 0, 0.55);
}
.hero-portrait::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg);
  background: linear-gradient(180deg, transparent 55%, rgba(58, 74, 64, 0.75) 100%);
}
.hero-portrait img {
  width: 100%; height: 100%; object-fit: cover; object-position: 75% center;
}
.hero-badge {
  position: absolute; bottom: 28px; left: -28px; z-index: 3;
  background: rgba(58, 74, 64, 0.55); backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  padding: 18px 22px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px; max-width: 290px;
}
.hero-badge .ic {
  width: 44px; height: 44px; border-radius: 12px; background: var(--grad);
  display: grid; place-items: center; color: #1a2b26; font-size: 20px; flex-shrink: 0;
}
.hero-badge b { display: block; color: #fff; font-family: 'Fraunces', serif; font-size: 15px; margin-bottom: 1px; }
.hero-badge small { color: #c5dcd1; font-size: 12px; line-height: 1.4; }

/* floating leaf decoration */
.leaf {
  position: absolute; width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center; color: var(--sage); opacity: 0.55;
  filter: drop-shadow(0 6px 18px rgba(163, 201, 168, 0.35));
}
.leaf-1 { top: 90px; right: 6%; animation: float 7s var(--ease) infinite; }
.leaf-2 { bottom: 120px; right: -2%; animation: float 8s 1s var(--ease) infinite; color: var(--copper); opacity: 0.4; }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-14px) rotate(4deg); } }

/* ---------- SECTION SCAFFOLD ---------- */
section { padding: 112px 0; position: relative; }
section.tight { padding: 80px 0; }
section.dark {
  background: var(--bg); color: #eaf3ee;
  position: relative; overflow: hidden;
}
section.dark::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(900px 500px at 82% 0%, rgba(200, 224, 204, 0.12), transparent 60%);
}
section.tint { background: linear-gradient(180deg, var(--paper), var(--paper-2)); }
section.cream { background: var(--paper-2); }
.sec-head { max-width: 760px; margin: 0 auto 64px; text-align: center; position: relative; z-index: 2; }
.sec-head h2 {
  font-size: clamp(30px, 4vw, 52px); color: inherit; margin: 18px 0 18px; font-weight: 500;
  font-variation-settings: "opsz" 120;
}
.sec-head p { font-size: 18px; color: var(--muted); }
section.dark .sec-head p { color: #c5dcd1; }
.sec-head.left { text-align: left; margin-left: 0; }
.sec-head.left h2 { margin-top: 0; }

/* ---------- APPROCHE / QU'EST-CE-QUE ---------- */
.approche { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: center; }
.approche .visual {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-lg);
}
.approche .visual img { width: 100%; height: 100%; object-fit: cover; }
.approche .visual .stamp {
  position: absolute; bottom: -1px; left: -1px;
  background: var(--grad-warm); color: #fff; padding: 18px 26px; border-radius: 0 var(--radius) 0 0;
  font-family: 'Fraunces', serif; font-style: italic; font-size: 17px;
}
.approche h2 { font-size: clamp(28px, 3.4vw, 44px); margin: 18px 0 24px; font-weight: 500; }
.approche p { font-size: 17px; color: var(--ink-2); line-height: 1.75; margin-bottom: 18px; }
.approche .signature {
  margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line-dark);
  display: flex; align-items: center; gap: 18px;
}
.approche .signature .name { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 600; color: var(--ink); }
.approche .signature small { color: var(--muted); font-size: 13px; display: block; margin-top: 2px; }

/* ---------- CUPPING / VENTOUSES FEATURE ---------- */
.feature-bridge {
  background: linear-gradient(140deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border-radius: var(--radius-xl); padding: 72px; color: #fafdfb;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.feature-bridge::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 360px at 90% 10%, rgba(200, 224, 204, 0.18), transparent 60%);
}
.fb-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-bridge h3 { font-size: clamp(28px, 3vw, 38px); color: #fff; margin: 18px 0 22px; font-weight: 500; font-style: italic; }
.feature-bridge p { color: #c5d6cc; font-size: 17px; line-height: 1.75; margin-bottom: 18px; }
.feature-bridge ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.feature-bridge ul li { display: flex; align-items: flex-start; gap: 14px; color: #dcebe2; font-size: 15.5px; line-height: 1.5; }
.feature-bridge ul li .num {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0; background: var(--grad);
  display: grid; place-items: center; color: #1a2b26; font-family: 'Fraunces', serif; font-weight: 600; font-size: 14px;
}
.fb-grid .galleria { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fb-grid .galleria img { width: 100%; height: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }

/* ---------- PRESTATIONS / SERVICES GRID ---------- */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.service-card {
  position: relative; background: #fff; border: 1px solid var(--line-dark);
  border-radius: var(--radius); padding: 34px 32px 30px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  display: flex; flex-direction: column; overflow: hidden;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(163, 201, 168, 0.55); }
.service-card .ic {
  width: 56px; height: 56px; border-radius: 16px; background: var(--grad-soft);
  color: var(--moss); display: grid; place-items: center; font-size: 26px; margin-bottom: 24px;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.service-card:hover .ic { transform: rotate(-6deg) scale(1.08); background: var(--grad-soft-warm); color: var(--clay); }
.service-card h3 { font-size: 21px; margin-bottom: 12px; font-weight: 600; color: var(--ink); }
.service-card p { color: var(--muted); font-size: 15px; line-height: 1.65; flex: 1; margin-bottom: 22px; }
.service-card .more { font-size: 13.5px; font-weight: 600; color: var(--moss); display: inline-flex; align-items: center; gap: 8px; transition: gap 0.25s; }
.service-card:hover .more { gap: 12px; }
.service-card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.service-card:hover::after { transform: scaleX(1); }

/* ---------- PARCOURS / 4 ÉTAPES ---------- */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative;
}
.steps::before {
  content: ""; position: absolute; top: 58px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, var(--sage), var(--copper)); opacity: 0.35;
}
.step { text-align: center; position: relative; z-index: 2; }
.step .circle {
  width: 116px; height: 116px; border-radius: 50%; background: #fff;
  border: 1.5px solid var(--line-dark); margin: 0 auto 24px;
  display: grid; place-items: center; font-family: 'Fraunces', serif; font-size: 30px; font-weight: 600; color: var(--moss);
  box-shadow: 0 16px 36px -14px rgba(92, 143, 114, 0.28); position: relative;
  transition: transform 0.35s var(--ease), color 0.35s var(--ease);
}
.step .circle::before {
  content: ""; position: absolute; inset: -1.5px; border-radius: 50%;
  background: var(--grad); z-index: -1; opacity: 0; transition: opacity 0.4s var(--ease);
}
.step:hover .circle { transform: translateY(-6px); }
.step:hover .circle::before { opacity: 1; }
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 14.5px; max-width: 240px; margin: 0 auto; line-height: 1.6; }

/* ---------- LATIFA / ABOUT ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-portrait {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-lg); background: var(--grad-soft);
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 75% center; }
.about-grid .quote {
  font-family: 'Fraunces', serif; font-style: italic; font-size: clamp(20px, 2vw, 26px);
  color: var(--moss); line-height: 1.5; margin: 28px 0; padding-left: 24px; border-left: 3px solid var(--sage);
}
.about-grid .quote .src { display: block; font-style: normal; font-family: 'Inter', sans-serif; font-size: 13.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--copper); margin-top: 14px; }
.about-grid h2 { font-size: clamp(28px, 3.2vw, 42px); margin: 18px 0 24px; font-weight: 500; }
.about-grid p { font-size: 17px; color: var(--ink-2); line-height: 1.78; margin-bottom: 18px; }
.about-creds { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line-dark); }
.about-creds .cred b { display: block; font-family: 'Fraunces', serif; font-size: 28px; color: var(--moss); margin-bottom: 4px; }
.about-creds .cred small { color: var(--muted); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- TESTIMONIALS ---------- */
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote-card {
  background: #fff; border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 32px 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.quote-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.quote-card .stars { color: var(--gold); font-size: 16px; letter-spacing: 3px; margin-bottom: 18px; }
.quote-card .body { font-family: 'Fraunces', serif; font-style: italic; font-size: 16.5px; color: var(--ink-2); line-height: 1.65; flex: 1; margin-bottom: 26px; }
.quote-card .who { display: flex; align-items: center; gap: 14px; padding-top: 22px; border-top: 1px solid var(--line-dark); }
.quote-card .who .av { width: 46px; height: 46px; border-radius: 50%; background: var(--grad); color: #1a2b26; display: grid; place-items: center; font-family: 'Fraunces', serif; font-weight: 600; font-size: 18px; }
.quote-card .who .av.w { background: var(--grad-warm); color: #fff; }
.quote-card .who b { display: block; font-family: 'Fraunces', serif; font-size: 16px; color: var(--ink); font-weight: 600; }
.quote-card .who small { color: var(--muted); font-size: 13px; }

/* ---------- GUIDE OFFERT ---------- */
.guide {
  background: linear-gradient(140deg, #455a4d 0%, #4f6757 100%);
  border-radius: var(--radius-xl); padding: 80px 64px; color: #fafdfb;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.guide::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 380px at 12% 100%, rgba(231, 160, 106, 0.18), transparent 60%),
              radial-gradient(600px 340px at 88% 0%, rgba(200, 224, 204, 0.20), transparent 60%);
}
.guide-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.guide h2 { font-size: clamp(26px, 3vw, 38px); color: #fff; margin: 18px 0 20px; font-weight: 500; font-style: italic; }
.guide p { color: #d2e3da; font-size: 16.5px; line-height: 1.75; margin-bottom: 16px; }
.guide ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; margin: 24px 0 30px; }
.guide ul li { display: flex; align-items: center; gap: 12px; color: #e0ede4; font-size: 14.5px; }
.guide ul li::before { content: "\2713"; color: var(--sage-light, #c8e0cc); font-weight: 700; flex-shrink: 0; }
.guide .meta { color: #b3cebf; font-size: 13px; margin-top: 12px; }
.guide .pdf {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(160deg, #4f6757, #455a4d);
  box-shadow: 0 50px 100px -32px rgba(0, 0, 0, 0.7); display: flex; flex-direction: column;
  padding: 44px 38px; color: #fff; border: 1px solid rgba(255, 255, 255, 0.10);
  transform: rotate(2deg); transition: transform 0.5s var(--ease);
}
.guide .pdf:hover { transform: rotate(0deg) translateY(-6px); }
.guide .pdf .toplogo { display: flex; align-items: center; gap: 12px; font-family: 'Fraunces', serif; font-size: 18px; margin-bottom: 38px; }
.guide .pdf .toplogo .l { width: 36px; height: 36px; border-radius: 11px; background: var(--grad); display: grid; place-items: center; }
.guide .pdf .tp { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--copper-light); }
.guide .pdf .title { font-family: 'Fraunces', serif; font-size: clamp(30px, 2.6vw, 40px); font-weight: 500; line-height: 1.1; margin: 14px 0 22px; }
.guide .pdf .title .em { font-style: italic; }
.guide .pdf .pages { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 12px; color: #c5dcd1; }
.guide .pdf .pages .badge { background: var(--grad); color: #1a2b26; padding: 6px 14px; border-radius: 100px; font-weight: 600; font-size: 11px; letter-spacing: 0.06em; }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info h2 { font-size: clamp(28px, 3.2vw, 42px); margin: 14px 0 22px; font-weight: 500; }
.contact-info p { font-size: 17px; color: var(--ink-2); line-height: 1.7; margin-bottom: 28px; }
.contact-rows { display: flex; flex-direction: column; gap: 22px; }
.contact-row { display: flex; align-items: flex-start; gap: 18px; padding: 22px; background: #fff; border: 1px solid var(--line-dark); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.contact-row .ic { width: 48px; height: 48px; border-radius: 13px; background: var(--grad-soft); color: var(--moss); display: grid; place-items: center; font-size: 22px; flex-shrink: 0; }
.contact-row b { display: block; font-family: 'Fraunces', serif; font-size: 16px; color: var(--ink); margin-bottom: 3px; }
.contact-row small { color: var(--muted); font-size: 14.5px; line-height: 1.5; display: block; }
.contact-row a { color: var(--moss); font-weight: 500; }
.contact-row a:hover { text-decoration: underline; }
.contact-form {
  background: #fff; border: 1px solid var(--line-dark); border-radius: var(--radius-lg);
  padding: 44px 40px; box-shadow: var(--shadow-md);
}
.contact-form h3 { font-size: 26px; margin-bottom: 8px; }
.contact-form .sub { color: var(--muted); font-size: 15px; margin-bottom: 32px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.field label { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; color: var(--ink-2); text-transform: uppercase; }
.field input, .field textarea {
  font-size: 15.5px; padding: 14px 16px; border-radius: 12px; background: var(--paper-2);
  border: 1.5px solid transparent; color: var(--ink); transition: border-color 0.2s, background 0.2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--sage); background: #fff; }
.field textarea { min-height: 130px; resize: vertical; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: var(--grad-hero); color: #fafdfb; text-align: center;
  position: relative; overflow: hidden; padding: 120px 0;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 50% 110%, rgba(200, 224, 204, 0.30), transparent 60%),
              radial-gradient(500px 320px at 14% 18%, rgba(231, 160, 106, 0.16), transparent 60%);
}
.final-cta-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.final-cta h2 { font-size: clamp(36px, 5vw, 60px); color: #fff; margin: 20px 0 22px; font-weight: 500; font-style: italic; }
.final-cta p { font-size: 19px; color: #d7e8df; margin-bottom: 38px; }
.final-cta .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-cta .meta { margin-top: 26px; font-size: 13px; color: #b3cebf; }

/* ---------- FOOTER ---------- */
footer.site { background: #2c3a33; color: #c5dcd1; padding: 80px 0 30px; }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.foot-brand .brand { color: #fff; margin-bottom: 22px; }
.foot-brand p { color: #b3cebf; font-size: 14.5px; max-width: 320px; line-height: 1.7; margin-bottom: 24px; }
.foot-brand .socials { display: flex; gap: 12px; }
.foot-brand .socials a {
  width: 42px; height: 42px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.10);
  display: grid; place-items: center; color: #c5dcd1; font-size: 18px; transition: 0.2s;
}
.foot-brand .socials a:hover { background: rgba(163, 201, 168, 0.18); color: var(--sage); border-color: rgba(163, 201, 168, 0.50); transform: translateY(-2px); }
.foot-col h5 { font-family: 'Inter', sans-serif; color: #fff; font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 22px; }
.foot-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.foot-col a { font-size: 14.5px; color: #c5dcd1; transition: color 0.2s; }
.foot-col a:hover { color: var(--sage); }
.foot-bot { border-top: 1px solid rgba(255, 255, 255, 0.06); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; color: #9bb8a8; font-size: 13px; }
.foot-bot .badges { display: flex; gap: 12px; }
.foot-bot .badges span { padding: 6px 12px; border: 1px solid rgba(255, 255, 255, 0.10); border-radius: 8px; font-size: 11px; letter-spacing: 0.06em; }

/* ---------- SINGLE PAGE / PROSE ---------- */
.page-hero { position: relative; padding: 150px 0 64px; background: var(--grad-hero); color: #fafdfb; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 360px at 80% 0%, rgba(200, 224, 204, 0.22), transparent 60%);
}
.page-hero .inner { position: relative; z-index: 2; max-width: 820px; }
.breadcrumbs { font-size: 13px; color: #c5dcd1; margin-bottom: 18px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.breadcrumbs a { color: var(--sage); }
.breadcrumbs a:hover { color: #fff; }
.page-hero h1 { font-size: clamp(34px, 5vw, 58px); color: #fff; margin-bottom: 22px; font-weight: 500; }
.page-hero .lead { font-size: 19px; color: #d7e8df; max-width: 660px; line-height: 1.7; }
.page-hero .service-pic { margin-top: 44px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/9; }
.page-hero .service-pic img { width: 100%; height: 100%; object-fit: cover; }
.prose { padding: 88px 0 110px; }
.prose .entry { font-size: 17.5px; line-height: 1.85; color: var(--ink-2); max-width: 680px; }
.prose .entry > * + * { margin-top: 1.1em; }
.prose .entry h2 { font-size: clamp(26px, 2.6vw, 34px); color: var(--ink); margin-top: 1.6em; margin-bottom: 0.3em; font-weight: 500; }
.prose .entry h3 { font-size: 22px; color: var(--moss); margin-top: 1.4em; margin-bottom: 0.4em; font-weight: 600; }
.prose .entry ul, .prose .entry ol { margin-left: 0.4em; }
.prose .entry li { margin-bottom: 0.5em; }
.prose .entry a { color: var(--moss); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.prose .entry img { border-radius: var(--radius); margin: 1.8em 0; box-shadow: var(--shadow-md); }
.prose .entry strong { color: var(--ink); }
.prose .entry em { color: var(--moss); }
.prose .entry blockquote { border-left: 3px solid var(--sage); padding-left: 22px; font-family: 'Fraunces', serif; font-style: italic; font-size: 19px; color: var(--ink); margin: 1.8em 0; }
.prose .entry table { width: 100%; border-collapse: collapse; margin: 1.6em 0; }
.prose .entry th, .prose .entry td { padding: 12px 16px; border-bottom: 1px solid var(--line-dark); text-align: left; font-size: 15px; }
.prose .entry th { font-weight: 600; color: var(--ink); background: var(--paper-2); }
.prose .back { margin-top: 60px; padding-top: 38px; border-top: 1px solid var(--line-dark); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.prose .related h3 { font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--copper); margin-bottom: 20px; }
.prose .rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.prose .rel-card { padding: 22px 20px; background: #fff; border: 1px solid var(--line-dark); border-radius: var(--radius); transition: 0.3s; }
.prose .rel-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: rgba(163, 201, 168, 0.55); }
.prose .rel-card h4 { font-size: 16.5px; color: var(--ink); margin-bottom: 6px; }
.prose .rel-card .more { font-size: 12.5px; font-weight: 600; color: var(--moss); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line-dark); border-radius: 14px; overflow: hidden; transition: box-shadow 0.2s, border-color 0.2s; }
.faq-item.open { box-shadow: 0 18px 40px -18px rgba(92, 143, 114, 0.32); border-color: rgba(163, 201, 168, 0.55); }
.faq-q { padding: 24px 28px; font-family: 'Fraunces', serif; font-weight: 600; font-size: 17.5px; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 18px; cursor: pointer; }
.faq-q .pm { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--grad-soft); color: var(--moss); display: grid; place-items: center; font-size: 18px; font-weight: 700; transition: transform 0.3s var(--ease); }
.faq-item.open .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0 28px; }
.faq-item.open .faq-a { max-height: 420px; padding: 0 28px 26px; }
.faq-a p { color: var(--muted); font-size: 15.5px; line-height: 1.7; }

/* ---------- ARCHIVE ---------- */
.archive-head { padding: 150px 0 64px; background: var(--grad-hero); color: #fafdfb; position: relative; overflow: hidden; }
.archive-head::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 360px at 78% 0%, rgba(200, 224, 204, 0.22), transparent 60%); }
.archive-head .inner { position: relative; z-index: 2; }
.archive-head h1 { font-size: clamp(36px, 5vw, 56px); color: #fff; margin-bottom: 16px; font-weight: 500; }
.archive-head p { color: #d7e8df; font-size: 18px; }
.post-list { padding: 88px 0 110px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.post-card { background: #fff; border: 1px solid var(--line-dark); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: 0.3s var(--ease); display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post-card .thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--paper-2); }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.post-card:hover .thumb img { transform: scale(1.05); }
.post-card .body { padding: 30px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.post-card .meta { font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--copper); margin-bottom: 14px; }
.post-card h2 { font-size: 22px; margin-bottom: 12px; font-weight: 600; }
.post-card h2 a { color: var(--ink); }
.post-card h2 a:hover { color: var(--moss); }
.post-card .excerpt { color: var(--muted); font-size: 15px; line-height: 1.65; flex: 1; margin-bottom: 22px; }
.post-card .read { font-size: 14px; font-weight: 600; color: var(--moss); display: inline-flex; align-items: center; gap: 8px; }

/* ---------- 404 ---------- */
.notfound { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 120px 0; background: var(--paper-2); }
.notfound .code { font-family: 'Fraunces', serif; font-size: clamp(80px, 16vw, 200px); line-height: 1; color: var(--moss); font-weight: 500; }
.notfound h1 { font-size: 30px; margin: 14px 0 16px; }
.notfound p { color: var(--muted); margin-bottom: 32px; }

/* ---------- REVEAL ANIMATION ---------- */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.40s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1020px) {
  nav.top .links { display: none; }
  .burger { display: flex; }
  .hero-grid, .approche, .about-grid, .fb-grid, .guide-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-portrait { max-width: 420px; margin: 0 auto; }
  .approche .visual, .about-portrait { max-width: 460px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 48px 28px; }
  .steps::before { display: none; }
  .quotes-grid { grid-template-columns: 1fr; gap: 18px; max-width: 540px; margin: 0 auto; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .feature-bridge, .guide { padding: 56px 40px; }
  .row-2 { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  section { padding: 76px 0; }
  section.tight { padding: 56px 0; }
  .wrap, .wrap-prose, .wrap-wide { padding: 0 22px; }
  .services-grid, .post-list, .rel-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-grid { gap: 36px; }
  header.hero { padding: 140px 0 70px; }
  .feature-bridge, .guide { padding: 44px 26px; }
  .contact-form, .prose, .contact-info h2 { padding-left: 4px; padding-right: 4px; }
  .contact-form { padding: 36px 24px; }
  .guide .pdf { display: none; }
  .foot-top { grid-template-columns: 1fr; }
  .final-cta { padding: 88px 0; }
  .feature-bridge ul li, .guide ul li { font-size: 14.5px; }
}

/* ---------- GUIDE OPT-IN FORM ---------- */
.natura-guide-form { margin: 28px 0 18px; }
.guide-fields { display: flex; gap: 12px; align-items: stretch; flex-wrap: wrap; }
.guide-fields .field { flex: 1; min-width: 200px; display: flex; }
.guide-fields input {
  width: 100%; padding: 14px 18px; border-radius: 100px;
  background: rgba(255, 255, 255, 0.95); border: 1.5px solid transparent;
  font-size: 15px; color: var(--ink); transition: border-color 0.2s, background 0.2s; font-family: inherit;
}
.guide-fields input::placeholder { color: #80918a; }
.guide-fields input:focus { outline: none; border-color: var(--sage); background: #fff; }
.guide-submit { flex-shrink: 0; white-space: nowrap; }
.guide-submit.loading { opacity: 0.7; pointer-events: none; }
.guide-submit.loading::after {
  content: ""; display: inline-block; width: 16px; height: 16px; margin-left: 8px;
  border: 2px solid rgba(255, 255, 255, 0.5); border-top-color: #fff; border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.guide-consent {
  display: flex; align-items: flex-start; gap: 12px; margin-top: 18px;
  font-size: 13px; color: #d7e8df; line-height: 1.55; cursor: pointer;
}
.guide-consent input { margin-top: 3px; accent-color: var(--sage); width: 18px; height: 18px; flex-shrink: 0; }
.guide-consent a { color: var(--copper-light); text-decoration: underline; text-underline-offset: 2px; }
.guide-note {
  margin-top: 14px; font-size: 14px; line-height: 1.55; min-height: 1.2em; color: #d7e8df;
}
.guide-note.success { color: #c8e6d2; font-weight: 500; }
.guide-note.error { color: #ffb6a8; font-weight: 500; }
.guide-note .check { display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 620px) {
  .guide-fields { flex-direction: column; }
  .guide-submit { width: 100%; justify-content: center; }
}
