:root {
  --cream: #f4ecd9;
  --cream-deep: #ebe1ca;
  --paper: #faf5e8;
  --ink: #2b3329;
  --ink-soft: #4d564a;
  --sage-deep: #3e5747;
  --sage: #6b8470;
  --sage-light: #a8b9a8;
  --blue: #7ea3b8;
  --blue-deep: #4f7689;
  --ochre: #c89a44;
  --ochre-soft: #d9b66d;
  --rule: rgba(43,51,41,0.14);

  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, sans-serif;

  --max: 1180px;
  --pad-x: clamp(20px, 5vw, 80px);

  --bullet-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 3 C 7 8, 7 16, 12 21 C 17 16, 17 8, 12 3 Z' fill='black'/><line x1='12' y1='3' x2='12' y2='21' stroke='white' stroke-width='1'/></svg>");
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--sage-deep);
  letter-spacing: 0.005em;
  line-height: 1.15;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(40px, 5.4vw, 76px); font-weight: 400; }
h2 { font-size: clamp(30px, 3.8vw, 52px); font-weight: 400; }
h3 { font-size: clamp(22px, 2vw, 28px); }
h4 { font-size: 19px; font-family: var(--sans); font-weight: 600; color: var(--sage-deep); letter-spacing: 0.04em; text-transform: uppercase; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--ochre);
  font-weight: 500;
  margin-bottom: 18px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
section { padding: clamp(80px, 9vw, 140px) 0; position: relative; }
@media (max-width: 540px) {
  section { padding: 64px 0; }
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0; z-index: 50;
  background: rgba(244, 236, 217, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-size: 20px;
}
.brand .tree-mark { width: 28px; height: 28px; }
.brand-name { line-height: 1.1; }
.brand-name small { display: block; font-family: var(--sans); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); margin-top: 3px; }
.nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--ink-soft); }
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--sage-deep); }
.nav-cta {
  border: 1px solid var(--sage-deep);
  color: var(--sage-deep);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--sage-deep); color: var(--paper); }
@media (max-width: 880px) { .nav-links { display: none; } }
@media (max-width: 540px) {
  .nav-inner { padding: 12px 18px; gap: 12px; }
  .brand { font-size: 17px; gap: 9px; }
  .brand .tree-mark { width: 24px; height: 24px; }
  .nav-cta { padding: 8px 14px; font-size: 12px; }
}

.nav-cta .label-short { display: none; }
@media (max-width: 540px) {
  .nav-cta .label-long { display: none; }
  .nav-cta .label-short { display: inline; }
}
@media (max-width: 880px) {
  .nav-inner .nav-cta { display: none; }
}

/* ---------- NAV BURGER & DRAWER ---------- */
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  background: none; border: 0; padding: 0;
  cursor: pointer; position: relative;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--sage-deep);
  margin: 5px auto;
  transition: transform .25s, opacity .25s;
}
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-overlay { display: none; }

.nav-drawer {
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 70;
  padding: 96px 32px 48px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  overflow-y: auto;
}
body.menu-open .nav-drawer {
  opacity: 1;
  pointer-events: auto;
}
.nav-drawer-close {
  position: absolute; top: 18px; right: 22px;
  background: none; border: 0;
  font-size: 36px; line-height: 1;
  color: var(--sage-deep); cursor: pointer;
}
.nav-drawer-links {
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  width: 100%; max-width: 420px;
}
.nav-drawer-links a {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--sage-deep);
  padding: 14px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
.nav-drawer-links a:last-child { border-bottom: 0; }
.nav-drawer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
  padding: 16px 32px;
  background: var(--sage-deep);
  color: var(--paper);
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-align: center;
  transition: background .2s;
}
.nav-drawer-cta:hover { background: var(--ink); }

@media (max-width: 880px) {
  .nav-burger { display: block; }
}
body.menu-open { overflow: hidden; }

/* ---------- HERO ---------- */
.hero {
  padding-top: clamp(60px, 7vw, 110px);
  padding-bottom: clamp(60px, 7vw, 110px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
/* Tablet & below: stack, with tree above text and constrained */
@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero-text { order: 2; }
  .hero-art  { order: 1; max-width: 320px; margin: 0 auto; aspect-ratio: 1 / 1; }
  .hero-text .quote { margin-left: auto; margin-right: auto; max-width: 34ch; }
  .hero-roles { display: inline-block; text-align: left; }
  .hero-actions { justify-content: center; }
}
/* Phone: tighter still, full-width CTAs */
@media (max-width: 540px) {
  .hero { padding-top: 32px; padding-bottom: 56px; }
  .hero-art { max-width: 240px; }
  .hero-text h1 { font-size: 38px; }
  .hero-text .quote { font-size: 19px; margin-bottom: 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
.hero-text .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.35;
  color: var(--sage-deep);
  margin-bottom: 36px;
  max-width: 30ch;
}
.hero-text h1 {
  margin-bottom: 14px;
  white-space: nowrap;
}
.hero-text h1 .firstname { color: var(--ochre); font-style: italic; font-weight: 400; }
.hero-roles {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 16px;
  list-style: none;
  padding: 0;
}
.hero-roles li {
  position: relative;
  padding: 4px 0 4px 26px;
}
.hero-roles li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 10px;
  width: 14px;
  height: 14px;
  background-color: var(--ochre);
  -webkit-mask: var(--bullet-mask) no-repeat center / contain;
          mask: var(--bullet-mask) no-repeat center / contain;
}
.hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: transform .2s, background .2s, color .2s, border-color .2s;
}
.btn-primary { background: var(--sage-deep); color: var(--paper); }
.btn-primary:hover { background: var(--ink); }
.btn-ghost { border: 1px solid var(--rule); color: var(--ink); }
.btn-ghost:hover { border-color: var(--sage-deep); }
.btn-arrow { width: 14px; height: 14px; }

/* hero tree art */
.hero-art {
  position: relative;
  aspect-ratio: 1 / 0.95;
  display: flex; align-items: center; justify-content: center;
}
.hero-art .halo {
  position: absolute;
  inset: 4% 6% 8% 6%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, #f4e3a8 0%, #e2d489 20%, var(--sage-light) 55%, transparent 78%);
  opacity: 0.32;
  filter: blur(8px);
  pointer-events: none;
}
.hero-art .tree-photo {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  z-index: 2;
}

/* ---------- SECTION DIVIDER ---------- */
.leaf-rule {
  display: flex; align-items: center; gap: 16px;
  color: var(--ochre);
  margin: 0 auto 36px;
  justify-content: center;
}
.leaf-rule::before, .leaf-rule::after {
  content: ""; flex: 1; height: 1px; background: var(--rule); max-width: 80px;
}
.leaf-rule svg { width: 18px; height: 18px; }

.section-head { text-align: center; margin-bottom: 64px; }
.section-head .lede { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2vw, 26px); color: var(--ink-soft); max-width: 50ch; margin: 18px auto 0; line-height: 1.45; }

/* ---------- ACCOMPAGNEMENT ---------- */
.band-paper { background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }

.twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
}
@media (max-width: 880px) { .twocol { grid-template-columns: 1fr; gap: 56px; } }

.col h3 { color: var(--sage-deep); margin-bottom: 6px; }
.stem-list { list-style: none; padding: 0; margin: 0; }
.stem-list li {
  position: relative;
  padding: 14px 0 14px 32px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: 16px;
}
.stem-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 18px;
  width: 14px;
  height: 14px;
  background-color: var(--ochre);
  -webkit-mask: var(--bullet-mask) no-repeat center / contain;
          mask: var(--bullet-mask) no-repeat center / contain;
}
.stem-list li:last-child { border-bottom: 0; }

/* ---------- APPROCHES ---------- */
.approach-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: clamp(28px, 3vw, 44px);
  height: 100%;
}
.approach-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}
@media (max-width: 880px) { .approach-grid { grid-template-columns: 1fr; } }

.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
@media (max-width: 880px) { .pillar-grid { grid-template-columns: 1fr; } }
.pillar {
  padding: 28px;
  background: var(--cream-deep);
  border-radius: 6px;
}
.pillar h4 { margin-bottom: 12px; }
.pillar ul { list-style: none; padding: 0; margin: 0; font-size: 15px; color: var(--ink-soft); }
.pillar li { padding: 6px 0; position: relative; padding-left: 22px; }
.pillar li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 12px;
  background-color: var(--ochre);
  -webkit-mask: var(--bullet-mask) no-repeat center / contain;
          mask: var(--bullet-mask) no-repeat center / contain;
}

.quote-block {
  margin-top: 80px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--sage-deep);
  line-height: 1.45;
  max-width: 50ch;
  margin-left: auto; margin-right: auto;
}
.quote-block .attr { display: block; margin-top: 18px; font-style: normal; font-family: var(--sans); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- SEANCES OUTILS ---------- */
.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 880px) { .tools-grid { grid-template-columns: 1fr; } }
.tool {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.tool .icn {
  width: 44px; height: 44px;
  color: var(--ochre);
  margin-bottom: 22px;
}
.tool h3 { font-size: 22px; }
.tool ul { list-style: none; padding: 0; margin: 18px 0 0; font-size: 15px; color: var(--ink-soft); }
.tool li { padding: 6px 0; border-bottom: 1px dashed var(--rule); }
.tool li:last-child { border-bottom: 0; }
.tool .tool-desc { font-size: 15px; color: var(--ink-soft); margin-top: 10px; }

/* ---------- MON CHEMIN ---------- */
.chemin {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 880px) { .chemin { grid-template-columns: 1fr; } }
.portrait {
  aspect-ratio: 4/5;
  background:
    repeating-linear-gradient(45deg, var(--cream-deep) 0 12px, var(--cream) 12px 24px);
  border-radius: 6px;
  border: 1px solid var(--rule);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.portrait picture,
.portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portrait img {
  filter: saturate(0.78) contrast(0.96) sepia(0.16) brightness(1.02);
  transition: filter .4s ease;
}
.portrait:hover img {
  filter: saturate(0.92) contrast(1) sepia(0.06) brightness(1.02);
}
.portrait .ph-label {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  color: var(--ink-soft);
  background: var(--cream);
  padding: 6px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.chemin .body p { font-size: 16.5px; line-height: 1.7; color: var(--ink-soft); }
.chemin .body p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 4.3em;
  float: left;
  line-height: 0.85;
  padding: 4px 10px 0 0;
  color: var(--ochre);
}
.signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--sage-deep);
  margin-top: 22px;
}
.formations {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--rule);
}
.formations h4 { color: var(--ochre); font-size: 12px; letter-spacing: 0.22em; margin-bottom: 14px; }
.formations ul { list-style: none; padding: 0; margin: 0; font-size: 14.5px; color: var(--ink-soft); }
.formations li { padding: 6px 0; border-bottom: 1px solid var(--rule); }
.formations li:last-child { border-bottom: 0; }

/* ---------- DEONTOLOGIE ---------- */
.deon { background: var(--sage-deep); color: rgba(244, 236, 217, 0.92); }
.deon h2 { color: var(--cream); }
.deon .eyebrow { color: var(--ochre-soft); }
.deon .section-head .lede { color: rgba(244, 236, 217, 0.78); }
.deon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 880px) { .deon-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .deon-grid { grid-template-columns: 1fr; } }
.deon-card {
  background: rgba(244, 236, 217, 0.05);
  border: 1px solid rgba(244, 236, 217, 0.12);
  padding: 28px;
  border-radius: 6px;
}
.deon-card h4 { color: var(--ochre-soft); margin-bottom: 14px; }
.deon-card p { font-size: 14.5px; line-height: 1.65; color: rgba(244, 236, 217, 0.78); }
.deon .commitment {
  margin-top: 80px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.45;
  max-width: 48ch;
  margin-left: auto; margin-right: auto;
  color: var(--cream);
}

/* ---------- TARIFS ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; } }
.price {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 36px 28px;
  border-radius: 6px;
  text-align: center;
  position: relative;
}
.price.featured { background: var(--cream-deep); border-color: var(--ochre); }
.price .ribbon {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--ochre); color: var(--paper);
  padding: 4px 14px; border-radius: 999px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
}
.price .label { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 16px; }
.price .amount { font-family: var(--serif); font-size: 56px; color: var(--sage-deep); line-height: 1; }
.price .amount sup { font-size: 22px; vertical-align: super; margin-left: 6px; color: var(--ochre); }
.price .desc { font-size: 14.5px; color: var(--ink-soft); margin-top: 14px; }

.pricing-notes {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-left: auto; margin-right: auto;
  line-height: 1.6;
}
.pricing-notes p { margin-top: 6px; }

/* ---------- CONTACT ---------- */
.contact { background: var(--cream-deep); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info .info-block { margin-bottom: 28px; }
.contact-info .info-block h4 { color: var(--ochre); font-size: 11px; letter-spacing: 0.22em; margin-bottom: 8px; }
.contact-info .info-block p { font-size: 17px; color: var(--ink); }
.contact-info .info-block a:hover { color: var(--sage-deep); }
.contact-info .info-block .info-icon { width: 14px; height: 14px; vertical-align: -2px; margin-right: 6px; color: var(--ochre); }
.contact-info .info-block .info-note { font-size: 15px; color: var(--ink-soft); }

.form {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: clamp(28px, 3vw, 40px);
  border-radius: 6px;
}
.form label { display: block; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px; }
.form input, .form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  background: var(--paper);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 18px;
  transition: border-color .2s;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--sage-deep); }
.form textarea { resize: vertical; min-height: 130px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .form .row { grid-template-columns: 1fr; } }
.form button {
  width: 100%;
  padding: 14px 20px;
  background: var(--sage-deep);
  color: var(--paper);
  border: 0;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background .2s;
}
.form button:hover { background: var(--ink); }
.form .form-status { margin-top: 12px; font-size: 13px; color: var(--ochre); }
.form .form-status[hidden] { display: none; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--ink);
  color: rgba(244, 236, 217, 0.7);
  padding: 56px var(--pad-x) 36px;
  text-align: center;
  font-size: 13.5px;
}
footer .brand { color: var(--cream); justify-content: center; margin-bottom: 16px; }
footer .brand-name small { color: rgba(244, 236, 217, 0.6); }
footer a:hover { color: var(--cream); }
footer .fine { margin-top: 24px; font-size: 12px; color: rgba(244, 236, 217, 0.45); }

/* keyword line — phrase calligraphiée */
.keywords {
  padding: 36px var(--pad-x);
  background: color-mix(in oklch, var(--blue) 8%, var(--cream));
  border-bottom: 1px solid color-mix(in oklch, var(--blue) 25%, transparent);
  overflow: hidden;
}
.keywords-line {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.6;
  color: var(--sage-deep);
}
.keywords-line span {
  display: inline-block;
  white-space: nowrap;
}
/* separator attaches to the preceding word so it migrates with it on wrap
   — never orphaned at start of a new line */
.keywords-line span:not(:last-child)::after {
  content: "·";
  color: var(--ochre);
  font-style: normal;
  margin: 0 0.45em;
  white-space: pre;
}
@media (max-width: 540px) {
  .keywords { padding: 24px var(--pad-x); }
  .keywords-line { font-size: 16px; line-height: 1.7; }
}

/* ---------- LEGAL / PROSE (mentions légales, etc.) ---------- */
.legal {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}
.legal h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--sage-deep);
  margin: 48px 0 14px;
}
.legal h2:first-child { margin-top: 0; }
.legal h3 {
  font-size: 18px;
  color: var(--sage-deep);
  margin: 32px 0 10px;
}
.legal p { margin: 0 0 16px; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal ul { margin: 0 0 16px; padding-left: 1.25em; }
.legal li { margin-bottom: 8px; }
.legal a {
  color: var(--blue-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal a:hover { color: var(--sage-deep); }
@media (max-width: 540px) {
  .legal h2 { margin-top: 36px; }
}

/* fade-in on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: none; }
