/* ==========================================================================
   YAARU — BASE
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  width: 100%;
  font-family: var(--y-font-body);
  font-size: var(--y-fs-body);
  line-height: var(--y-lh-body);
  color: var(--y-ink-900);
  background: var(--y-sand-50);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

h1, h2, h3, h4 { font-family: var(--y-font-display); color: var(--y-green-900); font-weight: 600; line-height: var(--y-lh-tight); }
h1 { font-size: var(--y-fs-h1); }
h2 { font-size: var(--y-fs-h2); }
h3 { font-size: var(--y-fs-h3); }
h4 { font-size: var(--y-fs-h4); }

.eyebrow {
  font-family: var(--y-font-mono);
  font-size: var(--y-fs-micro);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--y-gold-700);
  font-weight: 600;
}

:focus-visible {
  outline: 2px solid var(--y-green-600);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  max-width: var(--y-maxw-content);
  margin-inline: auto;
  padding-inline: var(--y-sp-5);
}
@media (min-width: 768px) { .container { padding-inline: var(--y-sp-8); } }

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

.icon { width: 20px; height: 20px; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-sm { width: 16px; height: 16px; }
.icon-lg { width: 28px; height: 28px; }

/* Séparateur "entrelacs" — signature graphique, à usage sobre et rare */
.y-divider {
  height: 14px;
  width: 100%;
  max-width: 220px;
  margin: var(--y-sp-8) auto;
  background-image: repeating-linear-gradient(135deg, var(--y-gold-500) 0 6px, transparent 6px 12px),
                     repeating-linear-gradient(45deg, var(--y-green-600) 0 6px, transparent 6px 12px);
  background-size: 50% 100%;
  background-repeat: no-repeat;
  background-position: left, right;
  opacity: 0.55;
  border-radius: var(--y-radius-pill);
}

@media print {
  .no-print { display: none !important; }
  body { background: #fff; }
  .container { max-width: 100%; padding: 0; }
}

/* ==========================================================================
   3Vision Group — universal development credit 3.3.46
   ========================================================================== */
.y3v-credit{
  position:relative;
  z-index:2;
  width:100%;
  padding:12px 16px;
  background:#071f1a;
  border-top:1px solid rgba(255,255,255,.08);
}
.y3v-credit-link{
  width:min(1180px,100%);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  color:#dbe7e3;
  text-decoration:none;
  font:600 .76rem/1.2 "Public Sans",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  transition:opacity .2s ease, transform .2s ease;
}
.y3v-credit-link:hover{opacity:.95;transform:translateY(-1px)}
.y3v-credit-label{
  color:#aebfba;
  letter-spacing:.01em;
  white-space:nowrap;
}
.y3v-credit-brand{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-width:0;
}
.y3v-credit-logo{
  width:46px;
  height:30px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}
.y3v-credit-logo svg{
  display:block;
  width:46px;
  height:auto;
}
.y3v-credit-wordmark{
  display:flex;
  flex-direction:column;
  min-width:0;
}
.y3v-credit-wordmark strong{
  color:#fff;
  font-size:.82rem;
  line-height:1.05;
  white-space:nowrap;
}
.y3v-credit-wordmark small{
  color:#9ab0aa;
  font-size:.66rem;
  line-height:1.15;
  white-space:nowrap;
}
@media(max-width:640px){
  .y3v-credit{padding:10px 12px}
  .y3v-credit-link{
    gap:8px;
    flex-wrap:wrap;
    row-gap:6px;
  }
  .y3v-credit-label{font-size:.7rem}
  .y3v-credit-logo{width:40px;height:26px}
  .y3v-credit-logo svg{width:40px}
  .y3v-credit-wordmark strong{font-size:.76rem}
  .y3v-credit-wordmark small{font-size:.62rem}
}
