/* ==========================================================================
   LocByAna — Feuille de style principale
   Direction : éditorial méditerranéen premium.
   Sable & ivoire, encre vert profond, accents terracotta et ocre.
   Signature visuelle : l'arche.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Couleurs */
  --sable:      #F4EFE7;
  --sable-2:    #EDE5D9;
  --ivoire:     #FBF8F3;
  --encre:      #1F2A25;
  --encre-soft: #2C3A33;
  --olive:      #3A4A3F;
  /* --terre porte le texte et les boutons : teinte validée AA (≥ 4.5:1)
     sur sable comme sous texte ivoire. --terre-vif reste réservé au
     décoratif (points, halos, dégradés), où le contraste ne s'applique pas. */
  --terre:      #9E5330;
  --terre-vif:  #B4643C;
  --terre-clair:#C97B52;
  --terre-fonce:#8E4B2B;
  --ocre:       #C9922A;
  --pierre:     #6E675C;
  --ligne:      rgba(31, 42, 37, .14);
  --ligne-forte:rgba(31, 42, 37, .26);

  /* Typographie */
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans:  "Karla", "Helvetica Neue", Arial, sans-serif;

  /* Rythme */
  --shell: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4.5rem, 10vw, 9rem);
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  /* Ombres */
  --sh-sm: 0 1px 2px rgba(31,42,37,.05), 0 4px 14px -6px rgba(31,42,37,.10);
  --sh-md: 0 2px 6px rgba(31,42,37,.06), 0 18px 40px -18px rgba(31,42,37,.22);
  --sh-lg: 0 30px 70px -30px rgba(31,42,37,.38);

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

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--sable);
  color: var(--encre);
  font-family: var(--sans);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.68;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.018em;
  margin: 0;
  font-variation-settings: "opsz" 96, "SOFT" 20;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .22em; }

img, svg { max-width: 100%; display: block; }

em {
  font-style: italic;
  font-variation-settings: "opsz" 120, "SOFT" 40;
  color: var(--terre);
}

::selection { background: var(--terre); color: var(--ivoire); }

.shell {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin-inline: auto;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 50%; top: -100px;
  transform: translateX(-50%);
  z-index: 999;
  background: var(--encre); color: var(--ivoire);
  padding: .8rem 1.4rem; border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-size: .9rem; text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--terre);
  outline-offset: 3px;
  border-radius: 2px;
}

.muted { color: var(--pierre); }
.nowrap { white-space: nowrap; }

/* Grain global : donne de la matière au fond sable */
.grain {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none; opacity: .5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

/* ---------- 3. Boutons ---------- */
.btn {
  --btn-bg: var(--encre);
  --btn-fg: var(--ivoire);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1.05rem 1.8rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid transparent; border-radius: 100px;
  font-family: var(--sans); font-size: .95rem; font-weight: 600;
  letter-spacing: .01em; text-decoration: none; cursor: pointer;
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), color .3s var(--ease);
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--terre);
  transform: translateY(101%);
  transition: transform .45s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn:hover::before { transform: translateY(0); }
.btn svg { transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary { --btn-bg: var(--terre); --btn-fg: var(--ivoire); }
.btn--primary::before { background: var(--encre); }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--encre);
  border-color: var(--ligne-forte);
}
.btn--ghost::before { background: var(--encre); }
.btn--ghost:hover { color: var(--ivoire); }

.btn--ghost-light {
  --btn-bg: transparent; --btn-fg: var(--ivoire);
  border-color: rgba(251,248,243,.5);
}
.btn--ghost-light::before { background: var(--ivoire); }
.btn--ghost-light:hover { color: var(--encre); }

.btn--sm { padding: .72rem 1.25rem; font-size: .875rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: .95rem;
  color: var(--terre); text-decoration: none;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
  transition: gap .3s var(--ease);
}
.link-arrow:hover { gap: .85rem; }

/* ---------- 4. En-tête ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,239,231,.82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--ligne);
  box-shadow: 0 10px 30px -22px rgba(31,42,37,.5);
}
.site-header__inner {
  display: flex; align-items: center; gap: 2rem;
  min-height: 78px;
}

.logo {
  display: flex; align-items: center; gap: .7rem;
  text-decoration: none; color: var(--encre);
  margin-right: auto; flex-shrink: 0;
}
.logo__mark { width: 26px; color: var(--terre); flex-shrink: 0; }
.logo__mark svg { width: 100%; height: auto; }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__name {
  font-family: var(--serif); font-size: 1.32rem; letter-spacing: -.02em;
  font-variation-settings: "opsz" 40, "SOFT" 30;
}
.logo__baseline {
  font-size: .625rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--pierre); font-weight: 600;
}
.logo--light { color: var(--ivoire); }
.logo--light .logo__baseline { color: rgba(251,248,243,.6); }
.logo--light .logo__mark { color: var(--terre-clair); }

.nav { display: flex; gap: 2rem; }
.nav a {
  font-size: .92rem; font-weight: 500; text-decoration: none;
  color: var(--encre-soft); position: relative; padding: .3rem 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--terre);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav a.is-active { color: var(--terre); }

.site-header__actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.tel-link {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .9rem; font-weight: 600; text-decoration: none;
  color: var(--encre); white-space: nowrap;
}
.tel-link:hover { color: var(--terre); }

.burger {
  display: none; width: 42px; height: 42px;
  background: none; border: 1px solid var(--ligne-forte); border-radius: 50%;
  cursor: pointer; padding: 0;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.burger span {
  display: block; width: 16px; height: 1.5px; background: var(--encre);
  transition: transform .35s var(--ease), opacity .2s;
}
.burger[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child  { transform: translateY(-3.25px) rotate(-45deg); }

/* ---------- 5. Arche (signature visuelle) ---------- */
.arch { position: relative; }
.arch__media {
  position: relative; overflow: hidden;
  border-radius: 50vw 50vw 8px 8px;
  background-size: cover; background-position: center;
  aspect-ratio: 4 / 5.2;
  box-shadow: var(--sh-lg);
}
.arch__media svg { width: 100%; height: 100%; }
.arch__frame {
  position: absolute; inset: -14px -14px -14px -14px;
  border: 1px solid var(--ligne-forte);
  border-radius: 50vw 50vw 12px 12px;
  pointer-events: none;
}
.arch--hero .arch__media { aspect-ratio: 4 / 5.2; }
.arch--portrait .arch__media { aspect-ratio: 3 / 3.8; }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 80% at 78% 8%, rgba(201,146,42,.16), transparent 58%),
    radial-gradient(90% 70% at 12% 0%, rgba(180,100,60,.10), transparent 60%),
    linear-gradient(180deg, var(--ivoire), var(--sable) 62%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--ligne) 1px, transparent 1px),
    linear-gradient(90deg, var(--ligne) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 75%);
  opacity: .5;
}
.hero__inner {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 6vw, 5.5rem); align-items: center;
}
/* Sans cela, un enfant plus large que sa colonne élargit la grille entière. */
.hero__inner > * { min-width: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--pierre);
  margin: 0 0 1.6rem;
}
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--terre-vif);
  box-shadow: 0 0 0 0 rgba(180,100,60,.5);
  animation: pulse 2.6s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(180,100,60,.45); }
  70%  { box-shadow: 0 0 0 9px rgba(180,100,60,0); }
  100% { box-shadow: 0 0 0 0 rgba(180,100,60,0); }
}

.hero__title {
  font-size: clamp(2.7rem, 6.2vw, 5rem);
  line-height: 1.02;
  margin: 0 0 1.8rem;
  font-variation-settings: "opsz" 144, "SOFT" 10;
}
.hero__title em { display: inline-block; }

.hero__lead {
  font-size: clamp(1.05rem, 1rem + .4vw, 1.22rem);
  color: var(--encre-soft); max-width: 34em;
  margin-bottom: 2.4rem;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.4rem; }

.hero__proof {
  display: flex; flex-wrap: wrap; gap: 1.6rem;
  list-style: none; margin: 0; padding: 0;
  font-size: .875rem; color: var(--pierre);
}
.hero__proof li { display: flex; align-items: center; gap: .5rem; }
.hero__proof li::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--ocre); flex-shrink: 0;
}
.hero__proof strong { color: var(--encre); font-weight: 600; }

/* Le padding réserve la place du filet de l'arche (.arch__frame, inset -14px),
   qui déborderait sinon hors de la colonne. */
.hero__visual { position: relative; padding: 16px; }
.hero__badge {
  position: absolute; left: -6%; bottom: 8%;
  background: var(--ivoire);
  border: 1px solid var(--ligne);
  border-radius: var(--r-md);
  padding: 1rem 1.3rem;
  box-shadow: var(--sh-md);
  max-width: 200px;
}
.hero__badge-amount {
  display: block; font-family: var(--serif);
  font-size: 1.35rem; line-height: 1.1; color: var(--terre);
  font-variation-settings: "opsz" 60;
}
.hero__badge-label {
  display: block; font-size: .78rem; line-height: 1.4;
  color: var(--pierre); margin-top: .3rem;
}

/* ---------- 7. Bandeau défilant ---------- */
.ticker {
  background: var(--encre); color: var(--ivoire);
  padding: 1.1rem 0; overflow: hidden;
  border-block: 1px solid var(--encre);
  position: relative; z-index: 2;
}
.ticker__track { display: flex; width: max-content; animation: slide 42s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__list {
  display: flex; align-items: center; gap: 3.5rem;
  list-style: none; margin: 0; padding: 0 1.75rem;
}
.ticker__list li {
  display: flex; align-items: center; gap: 3.5rem;
  white-space: nowrap;
  font-family: var(--serif); font-size: 1.15rem;
  font-variation-settings: "opsz" 40, "SOFT" 40;
  color: rgba(251,248,243,.92);
}
.ticker__list li::after {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--terre-clair); flex-shrink: 0;
}
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- 8. Sections ---------- */
.section { padding: var(--section-y) 0; position: relative; }

.section__head { max-width: 44rem; margin-bottom: clamp(2.75rem, 5vw, 4.5rem); }
.section__head--center { margin-inline: auto; text-align: center; }

.section__kicker {
  display: flex; align-items: center; gap: .75rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--pierre);
  margin: 0 0 1.2rem;
}
.section__head--center .section__kicker { justify-content: center; }
.section__kicker span {
  font-family: var(--serif); font-size: .95rem; letter-spacing: 0;
  color: var(--terre); font-variation-settings: "opsz" 20;
}
.section__kicker::after {
  content: ""; height: 1px; width: 3rem; background: var(--ligne-forte);
}
.section__kicker--light { color: rgba(251,248,243,.62); }
.section__kicker--light span { color: var(--terre-clair); }
.section__kicker--light::after { background: rgba(251,248,243,.25); }

.section__title {
  font-size: clamp(2rem, 4vw, 3.35rem);
  margin: 0 0 1.4rem;
  font-variation-settings: "opsz" 120, "SOFT" 15;
}
.section__lead {
  font-size: clamp(1rem, .97rem + .25vw, 1.12rem);
  color: var(--encre-soft); max-width: 42em;
}

/* ---------- 9. Chiffres ---------- */
.stats { padding: clamp(3.5rem, 7vw, 6rem) 0; background: var(--ivoire); }
.stats__head {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: clamp(1.5rem, 5vw, 4rem); align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.stats__title {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-variation-settings: "opsz" 80, "SOFT" 25;
}
.stats__intro { color: var(--pierre); font-size: .98rem; margin: 0; }

.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  list-style: none; margin: 0; padding: 0;
  border-top: 1px solid var(--ligne);
}
.stat {
  padding: 2rem 1.75rem 0 0;
  border-right: 1px solid var(--ligne);
  padding-left: 1.75rem;
}
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: 0; }
.stat__num {
  display: block; font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.2rem); line-height: 1;
  color: var(--terre); letter-spacing: -.03em;
  font-variation-settings: "opsz" 144, "SOFT" 0;
  font-variant-numeric: lining-nums tabular-nums;
}
.stat__label {
  display: block; margin-top: .7rem;
  font-weight: 600; font-size: .98rem;
}
.stat__detail {
  display: block; margin-top: .3rem;
  font-size: .84rem; color: var(--pierre); line-height: 1.5;
}

/* ---------- 10. Concept ---------- */
.section--concept { background: var(--sable); }
.concept {
  display: grid; grid-template-columns: 1fr .82fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: start;
}

.concept__list { list-style: none; margin: 0; padding: 0; counter-reset: c; }
.concept__list li {
  counter-increment: c;
  padding: 1.6rem 0 1.6rem 4rem;
  border-bottom: 1px solid var(--ligne);
  position: relative;
}
.concept__list li:first-child { padding-top: 0; }
.concept__list li:last-child { border-bottom: 0; padding-bottom: 0; }
.concept__list li::before {
  content: counter(c, decimal-leading-zero);
  position: absolute; left: 0; top: 1.6rem;
  font-family: var(--serif); font-size: 1.1rem; color: var(--terre);
  font-variation-settings: "opsz" 20;
  width: 2.6rem; padding-top: .1rem;
  border-top: 1px solid var(--terre);
}
.concept__list li:first-child::before { top: 0; }
.concept__list h3 {
  font-size: 1.28rem; margin-bottom: .5rem;
  font-variation-settings: "opsz" 40, "SOFT" 25;
}
.concept__list p { color: var(--pierre); font-size: .96rem; margin: 0; }

/* Schéma de flux */
.flow {
  background: var(--ivoire);
  border: 1px solid var(--ligne);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--sh-sm);
  position: sticky; top: 110px;
}
.flow__node {
  border: 1px solid var(--ligne);
  border-radius: var(--r-md);
  padding: 1.1rem 1.25rem;
  background: var(--sable);
}
.flow__node--us {
  background: var(--encre); color: var(--ivoire);
  border-color: var(--encre);
  box-shadow: var(--sh-md);
}
.flow__node--us p { color: rgba(251,248,243,.66); }
.flow__role {
  display: block; font-size: .66rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--pierre); margin-bottom: .3rem;
}
.flow__node--us .flow__role { color: var(--terre-clair); }
.flow__node strong {
  display: block; font-family: var(--serif); font-weight: 400;
  font-size: 1.3rem; letter-spacing: -.02em; line-height: 1.15;
  font-variation-settings: "opsz" 40, "SOFT" 25;
}
.flow__node p { font-size: .84rem; color: var(--pierre); margin: .4rem 0 0; line-height: 1.5; }

.flow__link {
  display: flex; flex-direction: column; align-items: center;
  gap: .35rem; padding: .85rem 0;
  text-align: center;
}
.flow__arrow {
  width: 1px; height: 22px;
  background: linear-gradient(var(--terre), rgba(180,100,60,.15));
  position: relative;
}
.flow__arrow::after {
  content: ""; position: absolute; bottom: -1px; left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent; border-top-color: rgba(180,100,60,.5);
}
.flow__label {
  font-size: .72rem; font-weight: 600; letter-spacing: .04em;
  color: var(--encre-soft); line-height: 1.4;
}
.flow__back {
  font-size: .7rem; color: var(--terre); font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
}
.flow__link--soft .flow__arrow { background: linear-gradient(var(--pierre), rgba(123,115,103,.15)); }
.flow__link--soft .flow__arrow::after { border-top-color: rgba(123,115,103,.5); }

/* ---------- 11. Comparatif ---------- */
.section--compare { background: var(--ivoire); }

/* Indication de défilement : visible uniquement quand le tableau dépasse */
.compare__hint {
  display: none;
  align-items: center; gap: .5rem;
  margin: 0 0 .9rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--terre);
}
.compare__hint svg { animation: nudge 1.8s var(--ease) infinite; }
@keyframes nudge {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(5px); }
}

.compare-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.compare {
  width: 100%; min-width: 720px;
  border-collapse: separate; border-spacing: 0;
  font-size: .93rem;
}
.compare th, .compare td {
  padding: 1.05rem 1.25rem; text-align: left;
  border-bottom: 1px solid var(--ligne);
  vertical-align: middle;
}
.compare thead th {
  font-family: var(--sans); font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--pierre);
  border-bottom: 1px solid var(--ligne-forte);
  padding-bottom: .9rem;
}
.compare tbody th {
  font-family: var(--sans); font-weight: 600; font-size: .93rem;
  color: var(--encre); width: 30%;
}
.compare td { color: var(--pierre); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }

.compare__us {
  background: rgba(180, 100, 60, .075);
  color: var(--encre) !important;
  font-weight: 600;
  position: relative;
}
.compare thead .compare__us {
  color: var(--ivoire) !important;
  background: var(--terre);
  border-radius: var(--r-md) var(--r-md) 0 0;
  border-bottom-color: var(--terre);
  font-size: .85rem; letter-spacing: .1em;
}
.compare tbody tr:last-child .compare__us { border-radius: 0 0 var(--r-md) var(--r-md); }

.mark {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; font-size: .88rem;
}
.mark::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
}
.mark--yes { color: var(--olive); }
.mark--yes::before { background: var(--olive); }
.mark--no::before  { background: #C0392B; }
.mark--mid::before { background: var(--ocre); }

.compare__note {
  margin-top: 1.25rem; font-size: .82rem; color: var(--pierre);
  max-width: 48em;
}

/* ---------- 12. Étapes ---------- */
.section--steps { background: var(--sable); }
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.step { position: relative; }
.step__arch {
  height: 172px;
  border-radius: 130px 130px 8px 8px;
  background: linear-gradient(170deg, var(--ivoire), var(--sable-2));
  border: 1px solid var(--ligne);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.1rem;
  margin-bottom: 1.4rem;
  position: relative; overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.step__arch::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 0;
  background: linear-gradient(170deg, var(--terre), var(--terre-fonce));
  transition: height .5s var(--ease);
}
.step:hover .step__arch { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; }
.step:hover .step__arch::before { height: 100%; }
.step__num {
  position: relative; z-index: 1;
  font-family: var(--serif); font-size: 2.6rem; line-height: 1;
  color: var(--terre); letter-spacing: -.03em;
  font-variation-settings: "opsz" 144, "SOFT" 0;
  transition: color .4s var(--ease);
}
.step:hover .step__num { color: var(--ivoire); }
.step__body h3 {
  font-size: 1.22rem; margin-bottom: .55rem;
  font-variation-settings: "opsz" 40, "SOFT" 25;
}
.step__body p { font-size: .93rem; color: var(--pierre); margin-bottom: .8rem; }
.step__meta {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--terre);
  border-top: 1px solid var(--ligne); padding-top: .55rem;
}

/* ---------- 13. Pourquoi nous ---------- */
.section--why { background: var(--ivoire); }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--ligne);
  border: 1px solid var(--ligne); border-radius: var(--r-lg);
  overflow: hidden;
}
.why {
  background: var(--ivoire);
  padding: clamp(1.5rem, 2.4vw, 2.1rem);
  transition: background .4s var(--ease);
}
.why:hover { background: var(--sable); }
.why__icon {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(180,100,60,.10); color: var(--terre);
  margin-bottom: 1.1rem;
  transition: background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease);
}
.why__icon svg { width: 20px; height: 20px; }
.why:hover .why__icon { background: var(--terre); color: var(--ivoire); transform: rotate(-6deg) scale(1.06); }
.why h3 {
  font-size: 1.12rem; margin-bottom: .55rem; line-height: 1.22;
  font-variation-settings: "opsz" 30, "SOFT" 25;
}
.why p { font-size: .9rem; color: var(--pierre); margin: 0; }

/* ---------- 14. Mot de la gérante ---------- */
.section--word { background: var(--sable); }
.word {
  display: grid; grid-template-columns: .58fr 1fr;
  gap: clamp(2.25rem, 6vw, 5rem); align-items: center;
}
.word__portrait { padding-left: 14px; }
.word__quote { margin: 0 0 1.75rem; }
.word__quote p {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.1vw, 1.72rem);
  line-height: 1.42; letter-spacing: -.015em;
  color: var(--encre);
  font-variation-settings: "opsz" 90, "SOFT" 35;
}
.word__sign { display: flex; flex-direction: column; margin-bottom: 1.6rem; }
.word__name {
  font-family: var(--serif); font-size: 1.35rem; color: var(--terre);
  font-variation-settings: "opsz" 40, "SOFT" 40;
  font-style: italic;
}
.word__role { font-size: .82rem; color: var(--pierre); letter-spacing: .04em; }

/* ---------- 15. Cadre & garanties ---------- */
.section--legal { background: var(--ivoire); }
.legal-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.legal {
  background: var(--sable);
  border: 1px solid var(--ligne);
  border-radius: var(--r-md);
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.legal:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.legal__num {
  font-family: var(--serif); font-size: .95rem; color: var(--terre);
  font-variation-settings: "opsz" 20;
  display: block; margin-bottom: .8rem;
  letter-spacing: .08em;
}
.legal h3 {
  font-size: 1.15rem; margin-bottom: .6rem; line-height: 1.24;
  font-variation-settings: "opsz" 30, "SOFT" 25;
}
.legal p { font-size: .92rem; color: var(--pierre); margin: 0; }

.legal__disclaimer {
  margin-top: 2.25rem;
  padding: 1.4rem 1.6rem;
  border-left: 3px solid var(--ocre);
  background: rgba(201,146,42,.07);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: .92rem; color: var(--encre-soft);
  max-width: 60em;
}

/* ---------- 16. Méthode ---------- */
.section--method {
  background: var(--encre); color: var(--ivoire);
  position: relative; overflow: hidden;
}
.section--method::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 15% 0%, rgba(180,100,60,.22), transparent 60%),
    radial-gradient(50% 45% at 88% 100%, rgba(201,146,42,.14), transparent 62%);
  pointer-events: none;
}
.section--method .shell { position: relative; }
.section--method .section__title { color: var(--ivoire); }
.section--method .section__title em { color: var(--terre-clair); }
.section--method .section__lead { color: rgba(251,248,243,.66); }

.method {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0 clamp(2rem, 5vw, 4rem);
}
.method__item {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(251,248,243,.13);
}
.method__check {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,123,82,.3); color: #EFB68C;
  margin-top: .15rem;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.method__check svg { width: 14px; height: 14px; }
.method__item:hover .method__check { background: var(--terre); color: var(--ivoire); }
.method__item h3 {
  font-size: 1.08rem; margin-bottom: .25rem; color: var(--ivoire);
  font-variation-settings: "opsz" 30, "SOFT" 25;
}
.method__item p { font-size: .89rem; color: rgba(251,248,243,.6); margin: 0; }

/* ---------- 17. Éligibilité ---------- */
.section--eligible { background: var(--sable); }
.eligible {
  display: grid; grid-template-columns: 1fr .9fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.eligible__text .section__lead { margin-bottom: 2rem; }
.eligible__list {
  list-style: none; margin: 0; padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--ivoire);
  border: 1px solid var(--ligne);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.eligible__list li {
  display: flex; gap: .9rem; align-items: flex-start;
  padding: .85rem 0;
  border-bottom: 1px solid var(--ligne);
  font-size: .96rem;
}
.eligible__list li:last-child { border-bottom: 0; padding-bottom: 0; }
.eligible__list li span {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(58,74,63,.12); color: var(--olive);
  display: flex; align-items: center; justify-content: center;
  margin-top: .1rem;
}
.eligible__list li span svg { width: 12px; height: 12px; }
.eligible__note {
  font-size: .86rem; color: var(--pierre); font-style: italic;
  padding-top: 1.1rem !important;
}

/* ---------- 18. FAQ ---------- */
.section--faq { background: var(--ivoire); }
.faq { border-top: 1px solid var(--ligne); max-width: 60rem; }
.faq__item { border-bottom: 1px solid var(--ligne); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 1.5rem 0; cursor: pointer;
  list-style: none;
  transition: color .3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--terre); }
.faq__q {
  font-family: var(--serif); font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  line-height: 1.28; letter-spacing: -.015em;
  font-variation-settings: "opsz" 40, "SOFT" 25;
}
.faq__icon {
  flex-shrink: 0; position: relative;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--ligne-forte);
  transition: background .35s var(--ease), border-color .35s var(--ease), transform .4s var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 12px; height: 1.5px; background: var(--encre);
  transform: translate(-50%, -50%);
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__icon { background: var(--terre); border-color: var(--terre); transform: rotate(180deg); }
.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after { background: var(--ivoire); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__a {
  padding: 0 4rem 1.75rem 0;
  color: var(--pierre); font-size: .97rem;
  max-width: 52em;
  animation: faq-in .45s var(--ease);
}
.faq__a p { margin-bottom: .9rem; }
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.faq__more { margin-top: 2rem; font-size: .95rem; color: var(--pierre); }
.faq__more a { color: var(--terre); font-weight: 600; }

/* ---------- 19. Contact ---------- */
.section--contact {
  background: var(--encre); color: var(--ivoire);
  position: relative; overflow: hidden;
}
.section--contact::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(55% 60% at 85% 12%, rgba(180,100,60,.26), transparent 62%),
    radial-gradient(45% 40% at 5% 92%, rgba(201,146,42,.13), transparent 60%);
  pointer-events: none;
}
.contact {
  position: relative;
  display: grid; grid-template-columns: 1fr 1.02fr;
  gap: clamp(2.25rem, 5vw, 4.5rem); align-items: start;
}
.section--contact .section__title { color: var(--ivoire); }
.section--contact .section__title em { color: var(--terre-clair); }
.section--contact .section__lead { color: rgba(251,248,243,.68); }

.contact__points {
  list-style: none; margin: 2rem 0 2.25rem; padding: 0;
  display: grid; gap: .75rem;
}
.contact__points li {
  font-size: .93rem; color: rgba(251,248,243,.66);
  padding-left: 1.4rem; position: relative;
}
.contact__points li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--terre-clair);
}
.contact__points strong { color: var(--ivoire); font-weight: 600; }

.contact__card {
  border: 1px solid rgba(251,248,243,.16);
  border-radius: var(--r-md);
  padding: 1.5rem;
  background: rgba(251,248,243,.04);
}
.contact__name {
  font-family: var(--serif); font-size: 1.3rem; margin: 0;
  font-variation-settings: "opsz" 40, "SOFT" 30;
}
.contact__role { font-size: .8rem; color: rgba(251,248,243,.55); margin: .15rem 0 1rem; }
.contact__line {
  display: flex; align-items: center; gap: .6rem;
  text-decoration: none; font-weight: 600; font-size: .97rem;
  padding: .45rem 0; color: var(--ivoire);
  transition: color .3s var(--ease);
}
.contact__line:hover { color: var(--terre-clair); }
.contact__line svg { color: var(--terre-clair); flex-shrink: 0; }
.contact__siren {
  margin: 1rem 0 0; padding-top: .9rem;
  border-top: 1px solid rgba(251,248,243,.14);
  font-size: .76rem; color: rgba(251,248,243,.6); letter-spacing: .04em;
}

/* ---------- 20. Formulaire ---------- */
.form {
  background: var(--ivoire); color: var(--encre);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3.2vw, 2.5rem);
  box-shadow: var(--sh-lg);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; display: flex; flex-direction: column; }
.field label {
  font-size: .8rem; font-weight: 600; letter-spacing: .03em;
  margin-bottom: .4rem; color: var(--encre-soft);
}
.field label span[aria-hidden] { color: var(--terre); }
.field__opt { font-weight: 400; color: var(--pierre); }

.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: .96rem; color: var(--encre);
  background: var(--sable);
  border: 1px solid transparent;
  border-bottom: 1px solid var(--ligne);
  border-radius: var(--r-sm);
  padding: .82rem .95rem;
  width: 100%;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: rgba(123,115,103,.72); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: var(--ivoire);
  border-color: var(--terre);
  box-shadow: 0 0 0 3px rgba(180,100,60,.13);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%237B7367' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .95rem center;
  padding-right: 2.4rem;
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"], .field select[aria-invalid="true"] {
  border-color: #C0392B; background: rgba(192,57,43,.05);
}
.field__error { font-size: .78rem; color: #C0392B; margin-top: .35rem; font-weight: 600; }

.field--check {
  flex-direction: row; align-items: flex-start; gap: .7rem;
  margin: 1.25rem 0 1.5rem;
}
/* 24px minimum : cible tactile confortable (WCAG 2.5.8) */
.field--check input {
  width: 24px; height: 24px; flex-shrink: 0; margin-top: .05rem;
  accent-color: var(--terre); padding: 0; background: none;
  border: 1px solid var(--ligne-forte); border-radius: 4px;
  cursor: pointer;
}
.field--check label { cursor: pointer; }
.field--check label {
  font-size: .8rem; font-weight: 400; color: var(--pierre);
  line-height: 1.55; margin: 0;
}
.field--check a { color: var(--terre); }

.form__legal {
  margin: 1rem 0 0; font-size: .76rem; color: var(--pierre); text-align: center;
}
.form__legal span { color: var(--terre); }

.form__status { margin-top: 1rem; font-size: .9rem; }
.form__status:empty { margin-top: 0; }
.form__status .ok, .form__status .ko {
  display: block; padding: 1rem 1.15rem; border-radius: var(--r-sm);
  font-weight: 500; line-height: 1.5;
}
.form__status .ok { background: rgba(58,74,63,.10); color: var(--olive); border-left: 3px solid var(--olive); }
.form__status .ko { background: rgba(192,57,43,.08); color: #A5342A; border-left: 3px solid #C0392B; }

.hp {
  position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden;
}

.btn.is-loading { pointer-events: none; opacity: .75; }
.btn.is-loading .btn__label::after {
  content: ""; display: inline-block;
  width: 12px; height: 12px; margin-left: .55rem;
  border: 2px solid currentColor; border-top-color: transparent;
  border-radius: 50%; vertical-align: -1px;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- 21. Pied de page ---------- */
.site-footer {
  background: var(--encre); color: rgba(251,248,243,.78);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  border-top: 1px solid rgba(251,248,243,.1);
}
.site-footer__top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  padding-bottom: 2.75rem;
  border-bottom: 1px solid rgba(251,248,243,.13);
}
.site-footer__pitch {
  margin-top: 1.1rem; font-size: .9rem;
  color: rgba(251,248,243,.55); max-width: 30ch;
}
.site-footer__col h3 {
  font-family: var(--sans); font-size: .7rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--terre-clair); margin-bottom: 1rem;
}
.site-footer__col ul { list-style: none; margin: 0 0 1.25rem; padding: 0; display: grid; gap: .55rem; }
.site-footer__col li { font-size: .9rem; line-height: 1.45; }
.site-footer__col a { text-decoration: none; color: rgba(251,248,243,.78); transition: color .3s var(--ease); }
.site-footer__col a:hover { color: var(--terre-clair); }
.site-footer .muted { color: rgba(251,248,243,.6); }

.site-footer__bottom {
  display: flex; flex-wrap: wrap; gap: .5rem 2rem;
  justify-content: space-between; align-items: center;
  padding-top: 1.5rem;
  font-size: .8rem; color: rgba(251,248,243,.6);
}
.site-footer__bottom p { margin: 0; }

/* ---------- 22. Pages de contenu (légales) ---------- */
.page-header {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  background: linear-gradient(180deg, var(--ivoire), var(--sable));
  border-bottom: 1px solid var(--ligne);
}
.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-variation-settings: "opsz" 120, "SOFT" 15;
}
.page-header p { margin-top: 1rem; color: var(--pierre); max-width: 44em; }

.prose { padding: clamp(2.5rem, 5vw, 4rem) 0; max-width: 46rem; }
.prose h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  margin: 2.75rem 0 .9rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--ligne);
  font-variation-settings: "opsz" 60, "SOFT" 25;
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h3 { font-size: 1.1rem; margin: 1.75rem 0 .5rem; }
.prose p, .prose li { color: var(--encre-soft); font-size: .98rem; }
.prose ul { padding-left: 1.2rem; margin: 0 0 1.1em; }
.prose li { margin-bottom: .4rem; }
.prose a { color: var(--terre); font-weight: 500; }
.prose dl { margin: 0 0 1.1em; }
.prose dt { font-weight: 600; margin-top: .9rem; }
.prose dd { margin: .2rem 0 0; color: var(--pierre); }

/* ---------- 23. Animations d'apparition ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.reveal--visual { transform: translateY(30px) scale(.985); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- 24. Responsive ---------- */
/* La navigation complète (logo + 5 liens + téléphone + bouton) cesse de tenir
   en dessous de 1080px : elle bascule en menu déroulant avant les grilles. */
@media (max-width: 1080px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
  .legal-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__top { grid-template-columns: 1fr 1fr; }

  .nav {
    position: fixed; inset: 78px 0 auto 0;
    flex-direction: column; gap: 0;
    background: var(--ivoire);
    border-bottom: 1px solid var(--ligne);
    box-shadow: var(--sh-md);
    padding: .5rem var(--gutter) 1.5rem;
    transform: translateY(-130%);
    transition: transform .45s var(--ease);
    max-height: calc(100dvh - 78px); overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 1rem 0; border-bottom: 1px solid var(--ligne); font-size: 1.05rem; }
  .nav a::after { display: none; }
  .burger { display: flex; }
  /* Le téléphone reste le principal appel à l'action sur mobile : on le garde. */
  .site-header__actions .btn--primary { display: none; }
}

@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: min(380px, 100%); margin-inline: auto; order: -1; }
  .hero__badge { left: auto; right: -4%; bottom: 6%; }
  .hero__title { font-size: clamp(2.5rem, 9vw, 3.6rem); }

  .stats__head { grid-template-columns: 1fr; align-items: start; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 1.5rem 1.25rem 1.5rem 1.25rem; border-bottom: 1px solid var(--ligne); }
  .stat:nth-child(odd)  { padding-left: 0; }
  .stat:nth-child(even) { border-right: 0; }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }

  .concept { grid-template-columns: 1fr; }
  .flow { position: static; }
  .word { grid-template-columns: 1fr; }
  .word__portrait { max-width: min(300px, 100%); padding: 0 14px; }
  .eligible { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .method { grid-template-columns: 1fr; }
  .faq__a { padding-right: 0; }
  .compare__hint { display: flex; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 84px; }
  .site-header__inner { min-height: 68px; }
  .nav { inset-block-start: 68px; }
  .logo__baseline { display: none; }
  /* Sur très petit écran, le numéro devient un bouton d'appel compact */
  .tel-link span { display: none; }
  .tel-link {
    width: 42px; height: 42px; justify-content: center;
    border: 1px solid var(--ligne-forte); border-radius: 50%;
    color: var(--terre);
  }
  .site-header__actions { gap: .6rem; }
  .why-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .legal-grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .site-footer__top { grid-template-columns: 1fr; }
  /* Visuel réduit pour que le titre reste visible sans défiler */
  .hero__visual { max-width: min(290px, 74%); }
  .hero__badge { position: static; margin: 1.25rem auto 0; max-width: none; text-align: center; }
  .ticker__list li { font-size: 1rem; gap: 2.25rem; }
  .ticker__list { gap: 2.25rem; }
  .word__quote p { font-size: 1.18rem; }
}

/* ---------- 25. Préférences utilisateur ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .ticker__track { animation: none; }
}

@media print {
  .site-header, .ticker, .grain, .site-footer, .form { display: none; }
  body { background: #fff; color: #000; }
  .section { padding: 1.5rem 0; break-inside: avoid; }
}
