/* ============================================================
   NESTON — style.css (version claire)
   Palette : Storm #162024 · Sun #EEFF5A (rappel discret)
             Cloud #EEF1EF · Sky #A8C0C2 · Sand #DDDCC9 · Ash #7F8081
   Typo : Archivo Black (titres) · Source Sans 3 (texte) · Poppins (logo)
   ============================================================ */

:root {
  --storm: #162024;
  --sun: #EEFF5A;
  --cloud: #EEF1EF;
  --sky: #A8C0C2;
  --sand: #DDDCC9;
  --ash: #7F8081;
  --white: #FFFFFF;
  --font-title: 'Archivo', sans-serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', sans-serif;
  --font-logo: 'Poppins', sans-serif;
  --maxw: 1180px;
  --pad: clamp(1.25rem, 4vw, 3rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--storm);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

.container { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* ---------- Filet jaune signature (discret) ---------- */
.topbar { height: 3px; background: var(--sun); }

/* ---------- Header ---------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(22,32,36,.97);
  backdrop-filter: blur(6px);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--maxw); margin: 0 auto;
  padding: 1rem var(--pad);
}
.logo {
  display: block;
  line-height: 0;
  text-decoration: none;
}
.logo img {
  height: 28px;
  width: auto;
  display: block;
}
.logo-footer img { height: 26px; }
@media (max-width: 620px) {
  .logo img { height: 24px; }
}

nav.links { display: flex; gap: 2rem; align-items: center; }
nav.links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cloud);
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s;
}
nav.links a:hover, nav.links a.active { border-bottom-color: var(--sun); }
nav.links a.cta {
  background: var(--white); color: var(--storm);
  padding: .6rem 1.3rem; border-bottom: none; border-radius: 2px;
  transition: background .2s;
}
nav.links a.cta:hover { background: var(--cloud); }


/* ---------- Sous-menu Secteurs ---------- */
.has-sub { position: relative; }
.sub-parent::after {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: .5rem;
  vertical-align: middle;
}
.submenu {
  list-style: none;
  position: absolute;
  top: calc(100% + .85rem);
  left: -1.1rem;
  min-width: 270px;
  background: var(--storm);
  border-top: 3px solid var(--sun);
  padding: .4rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s, transform .18s, visibility .18s;
  box-shadow: 0 14px 34px rgba(0,0,0,.25);
  z-index: 60;
}
.has-sub:hover .submenu,
.has-sub:focus-within .submenu {
  opacity: 1; visibility: visible; transform: none;
}
/* zone tampon pour éviter la fermeture au passage de la souris */
.has-sub::after {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0; height: 1rem;
}
.submenu li a {
  display: block;
  padding: .65rem 1.1rem;
  font-size: .78rem;
  letter-spacing: .1em;
  border-bottom: 0;
  white-space: nowrap;
  color: var(--cloud);
}
.submenu li a:hover { background: #1f2c31; color: var(--sun); border-bottom: 0; }

@media (max-width: 820px) {
  .has-sub { width: 100%; }
  .has-sub::after { display: none; }
  .sub-parent::after { display: none; }
  .submenu {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    min-width: 0;
    background: transparent;
    border-top: 0;
    box-shadow: none;
    padding: 0 0 .4rem;
  }
  .submenu li a {
    padding: .6rem var(--pad) .6rem calc(var(--pad) + 1.1rem);
    border-bottom: 1px solid #263338;
    white-space: normal;
    font-size: .74rem;
    color: var(--sky);
  }
}


/* ---------- Sélecteur de langue ---------- */
.lang-switch {
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .12em;
  padding: .4rem .6rem !important;
  border: 1px solid rgba(238,241,239,.35);
  border-radius: 2px;
  color: var(--cloud);
  margin-left: .4rem;
}
.lang-switch:hover { border-color: var(--sun); color: var(--sun); border-bottom-color: var(--sun) !important; }
@media (max-width: 820px) {
  .lang-switch {
    margin: .8rem var(--pad) 0;
    width: auto; text-align: center;
    border-bottom: 1px solid rgba(238,241,239,.35) !important;
  }
}

/* burger */
.burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 42px; height: 42px; position: relative;
}
.burger span {
  display: block; height: 2px; background: var(--white);
  margin: 6px 8px; transition: transform .25s, opacity .25s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 820px) {
  .burger { display: block; }
  nav.links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--storm); border-bottom: 1px solid #263338;
    flex-direction: column; gap: 0; padding: .5rem 0 1rem;
    display: none;
  }
  nav.links.open { display: flex; }
  nav.links a { padding: .8rem var(--pad); width: 100%; text-align: left; border-bottom: 1px solid #263338; }
  nav.links a.cta { margin: 1rem var(--pad) 0; width: auto; text-align: center; }
}

/* ---------- Hero clair ---------- */
.hero {
  position: relative;
  background: var(--cloud);
  color: var(--storm);
  overflow: hidden;
}
.hero .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: grayscale(1) brightness(.99) contrast(1.06);
}
.hero .bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.78) 42%, rgba(255,255,255,.18) 100%);
}
.hero .inner {
  position: relative;
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(5rem, 14vh, 9rem) var(--pad) clamp(4rem, 12vh, 8rem);
  min-height: calc(100vh - 78px);
  min-height: calc(100svh - 78px);
  display: flex; flex-direction: column; justify-content: center;
}
@media (max-width: 820px) {
  .hero .inner {
    min-height: calc(100vh - 74px);
    min-height: calc(100svh - 74px);
  }
}
.eyebrow {
  font-weight: 600; font-size: .78rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--sun);
  margin-right: .6rem;
  vertical-align: baseline;
}
h1, .h1 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: .01em;
  max-width: 18ch;
}
.hero p.lead {
  margin-top: 1.6rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 44ch;
  color: var(--storm);
}
.dot-sun {
  display: inline-block;
  width: .15em; height: .15em;
  border-radius: 50%;
  background: var(--sun);
  margin-left: .07em;
  color: transparent;
  overflow: hidden;
  vertical-align: baseline;
}

.btn {
  display: inline-block;
  font-weight: 600; font-size: .85rem;
  letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none;
  padding: .95rem 2rem;
  border-radius: 2px;
  transition: transform .15s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn.storm { background: var(--storm); color: var(--white); }
.btn.storm:hover { background: #22333a; }
.btn.stormline { border: 2px solid var(--storm); color: var(--storm); }
.hero .btn { margin-top: 2.4rem; align-self: flex-start; }


/* ---------- Picto dans le bandeau contact ---------- */
.hero .inner.hero-with-picto {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}
.hero-picto {
  width: clamp(180px, 22vw, 300px);
  height: auto;
  mix-blend-mode: multiply;
}
@media (max-width: 820px) {
  .hero .inner.hero-with-picto { grid-template-columns: 1fr; }
  .hero-picto { display: none; }
}

/* ---------- Sections génériques ---------- */
section.block { padding: clamp(3.5rem, 9vw, 6.5rem) 0; }
section.block.cloud { background: var(--cloud); }
section.block.sand { background: var(--sand); }

h2, .h2 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  text-transform: uppercase;
  line-height: 1.18;
  margin-bottom: 1.4rem;
  max-width: 24ch;
}
h3, .h3 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  text-transform: uppercase;
  line-height: 1.25;
}
.section-label {
  font-weight: 600; font-size: .78rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ash);
  border-bottom: 1px solid var(--sand);
  display: inline-block;
  padding-bottom: .4rem;
  margin-bottom: 2rem;
}

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; } }

/* ---------- Manifesto ---------- */
.manifesto p {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.6vw, 1.7rem);
  line-height: 1.5;
  margin-bottom: 1.6rem;
  max-width: 40ch;
}
.manifesto p em {
  font-style: normal;
  display: inline-block;
  width: .15em; height: .15em;
  border-radius: 50%;
  background: var(--sun);
  margin-left: .07em;
  color: transparent;
  overflow: hidden;
  vertical-align: baseline;
}

/* ---------- Chiffres clés ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--sand); border: 1px solid var(--sand); }
.stats .stat { background: var(--white); padding: 2rem 1.1rem; }
.stats .num {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1;
  white-space: nowrap;
}
.stats .num .dot {
  display: inline-block;
  width: .15em; height: .15em;
  border-radius: 50%;
  background: var(--sun);
  margin-left: .07em;
  color: transparent;
  overflow: hidden;
  vertical-align: baseline;
}
.stats .lbl { margin-top: .6rem; font-size: .9rem; color: var(--ash); }
@media (max-width: 820px) { .stats { grid-template-columns: 1fr 1fr; } }

/* ---------- Cartes secteurs ---------- */
.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.5rem; }
@media (max-width: 980px) { .sector-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .sector-grid { grid-template-columns: 1fr; } }
.sector-card {
  background: var(--white);
  border: 1px solid var(--sand);
  padding: 1.8rem 1.6rem;
  text-decoration: none;
  display: flex; flex-direction: column; gap: .8rem;
  transition: transform .18s, box-shadow .18s;
}
.sector-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(22,32,36,.08); }
.sector-card .marker { width: 11px; height: 11px; border-radius: 50%; background: var(--sun); }
.sector-card p { font-size: .95rem; color: var(--ash); }
.sector-card .more { font-weight: 600; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin-top: auto; }

/* ---------- Engagements / méthode ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.2rem; }
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; } }
.pillar { border-top: 1px solid var(--sand); background: var(--white); padding: 1.8rem 1.6rem 1.8rem; position: relative; }
.pillar::before { content: ''; position: absolute; top: -1px; left: 0; width: 46px; height: 3px; background: var(--sun); }
.pillar p { font-size: .96rem; color: var(--ash); margin-top: .7rem; }

.steps { counter-reset: step; display: grid; gap: 0; margin-top: 2rem; }
.step {
  display: grid; grid-template-columns: 64px 1fr; gap: 1.4rem;
  padding: 1.6rem 0; border-bottom: 1px solid var(--cloud);
  align-items: start;
}
.step:last-child { border-bottom: 0; }
.step .n {
  counter-increment: step;
  font-family: var(--font-title);
  font-weight: 700;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--white); color: var(--storm);
  border: 1px solid var(--sand);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
}
.step .n::before { content: counter(step, decimal-leading-zero); }
.step .n::after { content: ''; position: absolute; right: 4px; bottom: 4px; width: 8px; height: 8px; border-radius: 50%; background: var(--sun); }
.step p { color: var(--ash); font-size: .98rem; margin-top: .3rem; }

/* ---------- Secteurs (page dédiée) ---------- */
.sector {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.sector .photo { position: relative; min-height: 320px; }
.sector .photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.sector .content { padding: clamp(2.2rem, 5vw, 4rem); display: flex; flex-direction: column; justify-content: center; }
.sector:nth-child(even) .photo { order: 2; }
.sector:nth-child(odd) { background: var(--cloud); }
.sector .content .marker { width: 11px; height: 11px; border-radius: 50%; background: var(--sun); margin-bottom: 1.1rem; }
.sector .content p { margin-top: 1rem; max-width: 52ch; }
.sector ul { margin-top: 1.2rem; list-style: none; }
.sector ul li { padding-left: 1.3rem; position: relative; margin-bottom: .45rem; font-size: .96rem; color: var(--ash); }
.sector ul li::before { content: ''; position: absolute; left: 0; top: .52em; width: 7px; height: 7px; border-radius: 50%; background: var(--sun); }
@media (max-width: 820px) {
  .sector { grid-template-columns: 1fr; }
  .sector:nth-child(even) .photo { order: 0; }
}


/* ---------- Tableau comparatif ---------- */
.compare { margin-top: 2.2rem; border-top: 1px solid var(--sand); }
.compare-row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1.4fr;
  gap: 1.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--sand);
  align-items: start;
  font-size: .96rem;
}
.compare-row > div:first-child { font-weight: 700; }
.compare-row > div:nth-child(2) { position: relative; padding-left: 1.3rem; }
.compare-row > div:nth-child(2)::before {
  content: ''; position: absolute; left: 0; top: .5em;
  width: 8px; height: 8px; border-radius: 50%; background: var(--sun);
}
.compare-row > div:nth-child(3) { color: var(--ash); }
.compare-head {
  font-weight: 700; font-size: .78rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ash);
}
.compare-head > div:nth-child(2) { color: var(--storm); }
.compare-head > div:nth-child(2)::before { display: none; }
@media (max-width: 820px) {
  .compare-row { grid-template-columns: 1fr; gap: .4rem; padding: 1.1rem 0; }
  .compare-head { display: none; }
  .compare-row > div:nth-child(3)::before { content: 'Ailleurs : '; }
}

/* ---------- Liste de références ---------- */
.refs { list-style: none; }
.refs li {
  padding: 1.1rem 0 1.1rem 1.4rem;
  border-bottom: 1px solid var(--sand);
  position: relative;
  font-size: .96rem;
  color: var(--ash);
}
.refs li:last-child { border-bottom: 0; }
.refs li::before {
  content: ''; position: absolute; left: 0; top: 1.55em;
  width: 8px; height: 8px; border-radius: 50%; background: var(--sun);
}
.refs strong {
  display: block;
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .95rem;
  color: var(--storm);
  margin-bottom: .35rem;
}

/* ---------- Direction ---------- */
.direction {
  background: var(--white);
  border: 1px solid var(--sand);
  border-left: 4px solid var(--sun);
  padding: clamp(2.2rem, 5vw, 3.5rem);
}

.direction-head {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: .2rem;
}
.direction-head .avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  flex: none;
  background: var(--cloud);
}
.direction-head .role { margin-top: .25rem; }
@media (max-width: 620px) {
  .direction-head .avatar { width: 48px; height: 48px; }
}
.direction .role { font-weight: 600; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ash); margin-top: .4rem; }
.direction p { margin-top: 1rem; max-width: 58ch; }


/* ---------- Encart d'orientation (candidatures) ---------- */
.notice {
  background: var(--sand);
  border-left: 4px solid var(--sun);
  padding: 1.1rem 1.3rem;
  margin-bottom: 2rem;
}
.notice strong {
  display: block;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.notice p { font-size: .94rem; margin: 0; }
.notice a { font-weight: 600; }

/* ---------- Formulaire ---------- */
form.contact { display: grid; gap: 1.1rem; }

.form-intro { margin-bottom: .4rem; }
.form-intro h3 { margin-bottom: .5rem; }
.form-intro p { color: var(--ash); font-size: .96rem; max-width: 48ch; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
label { font-weight: 600; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; display: block; margin-bottom: .4rem; }
input, select, textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .85rem 1rem;
  border: 1px solid var(--sand);
  border-radius: 2px;
  background: var(--white);
  color: var(--storm);
}
input:focus, select:focus, textarea:focus, .btn:focus-visible, a:focus-visible, .burger:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 1px;
}
textarea { min-height: 150px; resize: vertical; }
.hidden { display: none !important; }

.contact-aside { background: var(--cloud); color: var(--storm); border-left: 4px solid var(--sun); padding: clamp(2rem, 4vw, 3rem); }

.contact-aside .aside-picto {
  width: 120px; height: auto;
  margin: 0 auto 1.4rem;
  display: block;
  mix-blend-mode: multiply;
}
@media (max-width: 820px) {
  .contact-aside .aside-picto { width: 100px; }
}
.contact-aside h3 { margin-bottom: 1.2rem; }
.contact-aside p { color: var(--ash); margin-bottom: 1rem; }
.contact-aside strong { color: var(--storm); }


.contact-aside .aside-rh {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--sand);
}
.contact-aside .aside-rh strong {
  display: block;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.contact-aside .aside-rh p { margin-bottom: 0; }

/* ---------- CTA final ---------- */
.cta-final { text-align: left; }
.cta-final .h2 { max-width: 30ch; }
.cta-final p { color: var(--ash); max-width: 52ch; }

/* ---------- Footer clair ---------- */
footer.site {
  background: var(--storm); color: var(--sky);
  border-top: 3px solid var(--sun);
  padding: 3rem 0 2rem;
  font-size: .92rem;
}
footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
@media (max-width: 820px) { footer .cols { grid-template-columns: 1fr; } }
footer h4 { font-weight: 600; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--storm); margin-bottom: .9rem; }
footer a { color: var(--sky); text-decoration: none; }
footer a:hover { color: var(--sun); }
footer ul { list-style: none; }
footer li { margin-bottom: .45rem; }
footer .legal { margin-top: 2.5rem; padding-top: 1.4rem; border-top: 1px solid #263338; font-size: .82rem; color: var(--ash); display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; }


/* ---------- Barre d'action mobile ---------- */
.mobile-cta { display: none; }

@media (max-width: 820px) {
  .mobile-cta {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 70;
    gap: 1px;
    background: var(--storm);
    border-top: 3px solid var(--sun);
    padding: .55rem .8rem calc(.55rem + env(safe-area-inset-bottom, 0px));
    transform: translateY(120%);
    transition: transform .28s ease;
    box-shadow: 0 -8px 24px rgba(22,32,36,.18);
  }
  .mobile-cta.visible { transform: none; }

  .mobile-cta__main {
    flex: 1;
    display: flex; align-items: center; justify-content: center;
    background: var(--white);
    color: var(--storm);
    font-weight: 700; font-size: .82rem;
    letter-spacing: .12em; text-transform: uppercase;
    text-decoration: none;
    padding: .85rem 1rem;
    border-radius: 2px;
    min-height: 48px;
  }
  .mobile-cta__tel {
    display: flex; align-items: center; justify-content: center;
    width: 52px; min-height: 48px;
    border: 1px solid rgba(238,241,239,.4);
    border-radius: 2px;
    color: var(--cloud);
    text-decoration: none;
  }
  .mobile-cta__tel:active { background: #1f2c31; }

  /* laisser respirer le pied de page sous la barre */
  footer.site { padding-bottom: 6rem; }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-cta { transition: none; }
}

/* ---------- Rappel intermédiaire ---------- */
.cta-inline {
  background: var(--storm);
  color: var(--white);
  padding: clamp(1.8rem, 4vw, 2.6rem) 0;
}
.cta-inline .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.6rem; flex-wrap: wrap;
}
.cta-inline p {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  text-transform: uppercase;
  line-height: 1.25;
  max-width: 34ch;
  margin: 0;
}
.cta-inline .btn {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.65);
  flex: none;
}
.cta-inline .btn:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
@media (max-width: 620px) {
  .cta-inline .container { flex-direction: column; align-items: flex-start; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

footer.site p { color: var(--sky); }
footer .logo { color: var(--white); }
